From 748ceae0534db590129841f9f22152f9dd9c2de2 Mon Sep 17 00:00:00 2001 From: Vlad Pronsky Date: Sat, 10 Feb 2024 17:29:11 +0200 Subject: [PATCH] update mocks; add tests for liked_tweets method; update readme --- .github/FUNDING.yml | 2 - .github/workflows/test.yml | 1 + Makefile | 26 +- _get_gql_ops.py | 18 +- pyproject.toml | 2 +- readme.md | 64 +- ...avoriters_raw.json => raw_favoriters.json} | 2049 +- ...{followers_raw.json => raw_followers.json} | 5916 +- ...{following_raw.json => raw_following.json} | 3916 +- tests/mocked-data/raw_likes.json | 13195 ++ ...meline_raw.json => raw_list_timeline.json} | 111879 +++++++-------- ...etweeters_raw.json => raw_retweeters.json} | 1170 +- tests/mocked-data/raw_search.json | 3070 + ...etails_raw.json => raw_tweet_details.json} | 1401 +- ...ser_by_id_raw.json => raw_user_by_id.json} | 12 +- ..._login_raw.json => raw_user_by_login.json} | 12 +- ...r_tweets_raw.json => raw_user_tweets.json} | 1075 +- ....json => raw_user_tweets_and_replies.json} | 1215 +- tests/mocked-data/search_raw.json | 2042 - tests/test_parser.py | 82 +- twscrape/api.py | 33 +- twscrape/cli.py | 2 +- 22 files changed, 78925 insertions(+), 68257 deletions(-) delete mode 100644 .github/FUNDING.yml rename tests/mocked-data/{favoriters_raw.json => raw_favoriters.json} (69%) rename tests/mocked-data/{followers_raw.json => raw_followers.json} (76%) rename tests/mocked-data/{following_raw.json => raw_following.json} (78%) create mode 100644 tests/mocked-data/raw_likes.json rename tests/mocked-data/{list_timeline_raw.json => raw_list_timeline.json} (60%) rename tests/mocked-data/{retweeters_raw.json => raw_retweeters.json} (76%) create mode 100644 tests/mocked-data/raw_search.json rename tests/mocked-data/{tweet_details_raw.json => raw_tweet_details.json} (70%) rename tests/mocked-data/{user_by_id_raw.json => raw_user_by_id.json} (93%) rename tests/mocked-data/{user_by_login_raw.json => raw_user_by_login.json} (94%) rename tests/mocked-data/{user_tweets_raw.json => raw_user_tweets.json} (84%) rename tests/mocked-data/{user_tweets_and_replies_raw.json => raw_user_tweets_and_replies.json} (88%) delete mode 100644 tests/mocked-data/search_raw.json diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index b9178c7..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,2 +0,0 @@ -github: vladkens -custom: buymeacoffee.com/vladkens diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7c070ab..5ab24ef 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,6 +2,7 @@ name: test on: push: + pull_request: env: PIP_ROOT_USER_ACTION: ignore diff --git a/Makefile b/Makefile index 808b92a..42a1ab0 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ all: @echo "hi" -install: +deps: @pip install -e .[dev] build: @@ -56,14 +56,16 @@ test-sq-matrix: @make test-sq y=2023 v=3440000 update-mocks: - twscrape user_by_id --raw 2244994945 | jq > ./tests/mocked-data/user_by_id_raw.json - twscrape user_by_login --raw xdevelopers | jq > ./tests/mocked-data/user_by_login_raw.json - twscrape followers --raw --limit 10 2244994945 | jq > ./tests/mocked-data/followers_raw.json - twscrape following --raw --limit 10 2244994945 | jq > ./tests/mocked-data/following_raw.json - twscrape tweet_details --raw 1649191520250245121 | jq > ./tests/mocked-data/tweet_details_raw.json - twscrape retweeters --raw --limit 10 1649191520250245121 | jq > ./tests/mocked-data/retweeters_raw.json - twscrape favoriters --raw --limit 10 1649191520250245121 | jq > ./tests/mocked-data/favoriters_raw.json - twscrape user_tweets --raw --limit 10 2244994945 | jq > ./tests/mocked-data/user_tweets_raw.json - twscrape user_tweets_and_replies --raw --limit 10 2244994945 | jq > ./tests/mocked-data/user_tweets_and_replies_raw.json - twscrape search --raw --limit 10 "elon musk lang:en" | jq > ./tests/mocked-data/search_raw.json - twscrape list_timeline --raw --limit 10 1494877848087187461 | jq > ./tests/mocked-data/list_timeline_raw.json + @rm -rf ./tests/mocked-data/raw_*.json + twscrape user_by_id --raw 2244994945 | jq > ./tests/mocked-data/raw_user_by_id.json + twscrape user_by_login --raw xdevelopers | jq > ./tests/mocked-data/raw_user_by_login.json + twscrape followers --raw --limit 10 2244994945 | jq > ./tests/mocked-data/raw_followers.json + twscrape following --raw --limit 10 2244994945 | jq > ./tests/mocked-data/raw_following.json + twscrape tweet_details --raw 1649191520250245121 | jq > ./tests/mocked-data/raw_tweet_details.json + twscrape retweeters --raw --limit 10 1649191520250245121 | jq > ./tests/mocked-data/raw_retweeters.json + twscrape favoriters --raw --limit 10 1649191520250245121 | jq > ./tests/mocked-data/raw_favoriters.json + twscrape user_tweets --raw --limit 10 2244994945 | jq > ./tests/mocked-data/raw_user_tweets.json + twscrape user_tweets_and_replies --raw --limit 10 2244994945 | jq > ./tests/mocked-data/raw_user_tweets_and_replies.json + twscrape search --raw --limit 10 "elon musk lang:en" | jq > ./tests/mocked-data/raw_search.json + twscrape list_timeline --raw --limit 10 1494877848087187461 | jq > ./tests/mocked-data/raw_list_timeline.json + twscrape likes --raw --limit 10 2244994945 | jq > ./tests/mocked-data/raw_likes.json diff --git a/_get_gql_ops.py b/_get_gql_ops.py index 5dad55f..3987acf 100644 --- a/_get_gql_ops.py +++ b/_get_gql_ops.py @@ -7,21 +7,9 @@ from fake_useragent import UserAgent client = httpx.Client(headers={"user-agent": UserAgent().chrome}) -ops = """ -SearchTimeline -UserByRestId -UserByScreenName -TweetDetail -Followers -Following -Retweeters -Favoriters -UserTweets -UserTweetsAndReplies -ListLatestTweetsTimeline -""" - -ops = [op.strip() for op in ops.split("\n") if op.strip()] +with open("./twscrape/api.py") as fp: + ops = [x.strip() for x in fp.read().split("\n")] + ops = [x.split("=")[0].removeprefix("OP_").strip() for x in ops if x.startswith("OP_")] def script_url(k: str, v: str): diff --git a/pyproject.toml b/pyproject.toml index befc8d8..a334f8e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ dependencies = [ [project.optional-dependencies] dev = [ - "pyright>=1.1.344", + "pyright>=1.1.350", "pytest-asyncio>=0.23.3", "pytest-cov>=4.1.0", "pytest-httpx>=0.28.0", diff --git a/readme.md b/readme.md index c128d65..83c4673 100644 --- a/readme.md +++ b/readme.md @@ -89,6 +89,7 @@ async def main(): await gather(api.following(user_id, limit=20)) # list[User] await gather(api.user_tweets(user_id, limit=20)) # list[Tweet] await gather(api.user_tweets_and_replies(user_id, limit=20)) # list[Tweet] + await gather(api.liked_tweets(user_id, limit=20)) # list[Tweet] # list info list_id = 123456789 @@ -139,36 +140,60 @@ twscrape twscrape search --help ``` -### Add accounts & login - -First add accounts from file: +### Add accounts +To add accounts use `add_accounts` command. Command syntax is: ```sh -# twscrape add_accounts -# line_format should have "username", "password", "email", "email_password" tokens -# note: tokens delimeter should be same as an file -twscrape add_accounts ./accounts.txt username:password:email:email_password +twscrape add_accounts ``` -Then call login: +Where: +`` is format of line if accounts file splited by delimeter. Possible tokens: +- `username` – required +- `password` – required +- `email` – required +- `email_password` – to receive email code (you can use `--manual` mode to get code) +- `cookies` – can be any parsable format (string, json, base64 string, etc) +- `_` – skip column from parse + +Tokens should be splited by delimeter, usually "`:`" used. + +Example: + +I have account files named `order-12345.txt` with format: +```text +username:password:email:email password:user_agent:cookies +``` + +Command to add accounts will be (user_agent column skiped with `_`): +```sh +twscrape add_accounts ./order-12345.txt username:password:email:email_password:_:cookies +``` + +### Login accounts + +_Note: If you added accounts with cookies, login not required._ + +Run: ```sh twscrape login_accounts ``` -Accounts and their sessions will be saved, so they can be reused for future requests +`twscrape` will start login flow for each new account. If X will ask to verify email and you provided `email_password` in `add_account`, then `twscrape` will try to receive verification map by IMAP protocol. After success login account cookies will be saved to db file for future use. -Note: Possible to use `_` in `line_format` to skip some value +#### Manual email verefication -### Add accounts with cookies +In case your email provider not support IMAP protocol (ProtonMail, Tutanota, etc) or IMAP is disabled in settings, you can enter email verification code manually. To do this run login command with `--manual` flag. -Use `cookies` param in `line_format`, e.g.: +Example: ```sh -twscrape add_accounts ./accounts.txt username:password:email:email_password:cookies +twscrape login_accounts --manual +twscrape relogin user1 user2 --manual +twscrape relogin_failed --manual ``` -In this case login not required. ### Get list of accounts and their statuses @@ -196,16 +221,6 @@ Or retry login for all failed logins: twscrape relogin_failed ``` -### Enter email verification code manually - -twscrape may not be able to access some emails (if imap is disabled or does not exist at all - eg in protonmail), in such cases you can use `--manual` flag, which allows to enter the verification code manually. - -```sh -twscrape login_accounts --manual -twscrape relogin user1 user2 --manual -twscrape relogin_failed --manual -``` - ### Use different accounts file Useful if using a different set of accounts for different actions @@ -227,6 +242,7 @@ twscrape followers USER_ID --limit=20 twscrape following USER_ID --limit=20 twscrape user_tweets USER_ID --limit=20 twscrape user_tweets_and_replies USER_ID --limit=20 +twscrape liked_tweets USER_ID --limit=20 ``` The default output is in the console (stdout), one document per line. So it can be redirected to the file. diff --git a/tests/mocked-data/favoriters_raw.json b/tests/mocked-data/raw_favoriters.json similarity index 69% rename from tests/mocked-data/favoriters_raw.json rename to tests/mocked-data/raw_favoriters.json index e068855..2d4de3d 100644 --- a/tests/mocked-data/favoriters_raw.json +++ b/tests/mocked-data/raw_favoriters.json @@ -6,6 +6,985 @@ { "type": "TimelineAddEntries", "entries": [ + { + "entryId": "user-1751971548188008448", + "sortIndex": "1790238934286991360", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzUxOTcxNTQ4MTg4MDA4NDQ4", + "rest_id": "1751971548188008448", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Jan 29 14:12:38 +0000 2024", + "default_profile": true, + "default_profile_image": true, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 32, + "followers_count": 1, + "friends_count": 9, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "VALERIE ANN SMITH", + "normal_followers_count": 1, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", + "profile_interstitial_type": "", + "screen_name": "VALERIEANN55862", + "statuses_count": 1, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-1455605356089024514", + "sortIndex": "1790009676514049491", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDU1NjA1MzU2MDg5MDI0NTE0", + "rest_id": "1455605356089024514", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Nov 02 18:39:39 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Technical Consultant Salesforce , Copado & Slack | FullStack | 8x #Copado | 5x #Salesforce | Community Speaker & Group Leader Slack,Salesforce,Tableau | Mentor", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linktr.ee/thetarungupta", + "expanded_url": "https://linktr.ee/thetarungupta", + "url": "https://t.co/H5vY4SfIeh", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 6002, + "followers_count": 897, + "friends_count": 2634, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2, + "location": "India", + "media_count": 380, + "name": "Tarun Gupta #ngIndia", + "normal_followers_count": 897, + "pinned_tweet_ids_str": [ + "1754277413373292641" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1455605356089024514/1703176971", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1736141291011158016/d5syLOws_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "TarunDevops", + "statuses_count": 2322, + "translator_type": "none", + "url": "https://t.co/H5vY4SfIeh", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1559238043113902080", + "professional_type": "Creator", + "category": [ + { + "id": 713, + "name": "Science & Technology", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-1750876558745907200", + "sortIndex": "1789887534128006698", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzUwODc2NTU4NzQ1OTA3MjAw", + "rest_id": "1750876558745907200", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Fri Jan 26 13:41:51 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "@X\n@TV\n@ElonMusk \n@XBusiness \n@XData \n@XCareers \n@Sports \n@Marketing\n@XCreators \n@Safety\n@XDevelopers \n@Movies \n@Music \n@News \n@Live", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 697, + "followers_count": 28, + "friends_count": 17, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "amanshivamanupam", + "normal_followers_count": 28, + "pinned_tweet_ids_str": [ + "1755481487674101951" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1750876558745907200/1707370789", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1750876707949850624/8mImnF3l_normal.png", + "profile_interstitial_type": "", + "screen_name": "X_User_ASA", + "statuses_count": 698, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-1700173765", + "sortIndex": "1789533442970433104", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzAwMTczNzY1", + "rest_id": "1700173765", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Aug 25 20:53:21 +0000 2013", + "default_profile": true, + "default_profile_image": false, + "description": "If you believe it will work, you'll see opportunities. If you believe it won't, you will see obstacles.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 108, + "followers_count": 18, + "friends_count": 183, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "Emma", + "normal_followers_count": 18, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1700173765/1701213556", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1749810459803578368/d-M8l9mu_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "bahr_0011emma", + "statuses_count": 5, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-1669413488987451392", + "sortIndex": "1788947152401728123", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjY5NDEzNDg4OTg3NDUxMzky", + "rest_id": "1669413488987451392", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Jun 15 18:37:21 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "\"#thalassophile #scubainstructor #sailing #f1 #flyer #traveller #legoartistwannabe", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 152, + "followers_count": 4, + "friends_count": 34, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "St Asaph", + "media_count": 0, + "name": "Desuo Bjubair", + "normal_followers_count": 4, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1669413488987451392/1690706254", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1685570264711446529/C8l5wHKR_normal.png", + "profile_interstitial_type": "", + "screen_name": "ACaldwell3605", + "statuses_count": 2, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-901151671132094464", + "sortIndex": "1788793443368487321", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo5MDExNTE2NzExMzIwOTQ0NjQ=", + "rest_id": "901151671132094464", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Fri Aug 25 18:37:55 +0000 2017", + "default_profile": true, + "default_profile_image": false, + "description": "لااله الا انت سبحانك اني كنت من الظالمين🕊", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 140, + "followers_count": 2, + "friends_count": 104, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "Netivot", + "media_count": 0, + "name": "لاما شاهين", + "normal_followers_count": 2, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/901151671132094464/1689525873", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1680619345142226950/tf2-z3ct_normal.png", + "profile_interstitial_type": "", + "screen_name": "kumarsushil094", + "statuses_count": 2, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-1685971701450801153", + "sortIndex": "1788410761636529459", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjg1OTcxNzAxNDUwODAxMTUz", + "rest_id": "1685971701450801153", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Jul 31 11:12:44 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 8, + "followers_count": 1, + "friends_count": 50, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "noah❤️ Memecoin", + "normal_followers_count": 1, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1685971701450801153/1691474752", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1687361700268261377/ndiq0ZEn_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "noah5660981656", + "statuses_count": 9, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-901892598259953668", + "sortIndex": "1788117033584253783", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo5MDE4OTI1OTgyNTk5NTM2Njg=", + "rest_id": "901892598259953668", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sun Aug 27 19:42:06 +0000 2017", + "default_profile": true, + "default_profile_image": false, + "description": "Supernatural, Paranormal, Cyber Security #Researcher, Gamer, #Freelancer & learner.\n\n#Nfts #ContentMaking\n\n~\n\nReal right wing and not Zionist slave.\n\nGod First.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 6392, + "followers_count": 737, + "friends_count": 4980, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 8, + "location": "Other Universe.", + "media_count": 74, + "name": "98𝕰𝖑𝖎𝖙𝖊𝕸𝕲𝖍𝖔𝖘𝖙~59~𝕺𝖛𝖊𝖗𝕷𝖔𝖗𝖉54", + "normal_followers_count": 737, + "pinned_tweet_ids_str": [ + "1746638470255157399" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/901892598259953668/1645313084", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1495177537554550787/zcSSAA3D_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ARMGI9854WXZ59M", + "statuses_count": 7332, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-749462723553927168", + "sortIndex": "1788018863802957493", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo3NDk0NjI3MjM1NTM5MjcxNjg=", + "rest_id": "749462723553927168", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Jul 03 04:40:12 +0000 2016", + "default_profile": true, + "default_profile_image": false, + "description": "Claiming the rights of the enlightenment", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 91, + "followers_count": 28, + "friends_count": 29, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "Newry", + "media_count": 40, + "name": "Fave Brudzinski", + "normal_followers_count": 28, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/749462723553927168/1689520752", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1680597910264885249/po-nJRvB_normal.png", + "profile_interstitial_type": "", + "screen_name": "RizkyR12016", + "statuses_count": 51, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-771346763877711872", + "sortIndex": "1788012631087812851", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo3NzEzNDY3NjM4Nzc3MTE4NzI=", + "rest_id": "771346763877711872", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Sep 01 13:59:34 +0000 2016", + "default_profile": true, + "default_profile_image": false, + "description": "#عاشق_فنانات_بلدي", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 117, + "followers_count": 24, + "friends_count": 51, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "An-Nabk", + "media_count": 0, + "name": "معطي التركستاني", + "normal_followers_count": 24, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/771346763877711872/1687976037", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1674118843319427072/a062hLcl_normal.png", + "profile_interstitial_type": "", + "screen_name": "DrkNtwistyMisti", + "statuses_count": 90, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-1675135370495770626", + "sortIndex": "1787827972668295403", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjc1MTM1MzcwNDk1NzcwNjI2", + "rest_id": "1675135370495770626", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Jul 01 13:33:23 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 96, + "followers_count": 3, + "friends_count": 20, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "Bracha Goldschmid", + "normal_followers_count": 3, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1675135743172247552/fNiDOJ79_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "bracha21885", + "statuses_count": 4, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-1675403871332495366", + "sortIndex": "1787790568126865057", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjc1NDAzODcxMzMyNDk1MzY2", + "rest_id": "1675403871332495366", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Jul 02 07:19:53 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "I do my homework; change the channel; read between the lines; make up my own mind.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 124, + "followers_count": 6, + "friends_count": 29, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "Chester", + "media_count": 3, + "name": "Ellie Aveston-pallett", + "normal_followers_count": 6, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1675403871332495366/1690715033", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1685607092428906496/U9wlZl6n_normal.png", + "profile_interstitial_type": "", + "screen_name": "EhtelK82530", + "statuses_count": 10, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-1943629340", + "sortIndex": "1787612445911541164", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxOTQzNjI5MzQw", + "rest_id": "1943629340", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Oct 07 09:57:08 +0000 2013", + "default_profile": false, + "default_profile_image": false, + "description": "Dean Infotech is a leading enterprise IT consulting company that specializes Salesforce, Web and App Development Servcies.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "deaninfotech.com", + "expanded_url": "http://www.deaninfotech.com/", + "url": "https://t.co/JXW9fYLGzK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 1334, + "followers_count": 1518, + "friends_count": 2079, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 126, + "location": "Faridadad", + "media_count": 1181, + "name": "Dean Infotech", + "normal_followers_count": 1518, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1943629340/1705326903", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1746835148673298432/caY4MwgB_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "DeanInfotech", + "statuses_count": 2822, + "translator_type": "none", + "url": "https://t.co/JXW9fYLGzK", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1514506648663957509", + "professional_type": "Business", + "category": [ + { + "id": 958, + "name": "Entrepreneur", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-1676656119903559697", + "sortIndex": "1787576212315356242", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": {}, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-81217433", + "sortIndex": "1787250025210138652", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4MTIxNzQzMw==", + "rest_id": "81217433", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Fri Oct 09 22:23:20 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Bibliotecário-Documentarista", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "twitter.com/psvas5", + "expanded_url": "https://twitter.com/psvas5", + "url": "https://t.co/JDYYzUaorM", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 98727, + "followers_count": 17859, + "friends_count": 19631, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2, + "location": "Aracaju Sergipe Brasil", + "media_count": 365, + "name": "Pedro Vasconcelos🎶", + "normal_followers_count": 17859, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/81217433/1672402393", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1684590879594491905/0DyAIFwY_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "psvas5", + "statuses_count": 40314, + "translator_type": "none", + "url": "https://t.co/JDYYzUaorM", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1511129381376245769", + "professional_type": "Business", + "category": [ + { + "id": 713, + "name": "Science & Technology", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-1739413157376884736", + "sortIndex": "1787086605930663468", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzM5NDEzMTU3Mzc2ODg0NzM2", + "rest_id": "1739413157376884736", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Dec 25 22:30:16 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "Financial and Crypto Advisor!", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 620, + "followers_count": 36, + "friends_count": 16, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 1, + "location": "Denver, CO", + "media_count": 0, + "name": "Ruth J. Brown", + "normal_followers_count": 36, + "pinned_tweet_ids_str": [ + "1745024940439441441" + ], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1739585099295789056/hl96H5yK_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ruthbrown754321", + "statuses_count": 1893, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, { "entryId": "user-2534108054", "sortIndex": "1785992517204145634", @@ -21,7 +1000,7 @@ "id": "VXNlcjoyNTM0MTA4MDU0", "rest_id": "2534108054", "affiliates_highlighted_label": {}, - "has_graduated_access": false, + "has_graduated_access": true, "is_blue_verified": false, "profile_image_shape": "Circle", "legacy": { @@ -30,29 +1009,30 @@ "created_at": "Fri May 30 04:15:49 +0000 2014", "default_profile": true, "default_profile_image": false, - "description": "", + "description": "I never wanted luxury, I just wanted to be understood and trusted.", "entities": { "description": { "urls": [] } }, "fast_followers_count": 0, - "favourites_count": 63, - "followers_count": 41, - "friends_count": 46, + "favourites_count": 270, + "followers_count": 130, + "friends_count": 573, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, - "location": "USA", - "media_count": 0, - "name": "Lia Herawati", - "normal_followers_count": 41, + "location": "New Jersey.USA", + "media_count": 1, + "name": "Elena", + "normal_followers_count": 130, "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1737568100705570816/ZCRNKUQF_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2534108054/1704819706", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1748388392092725250/t2hltup7_normal.jpg", "profile_interstitial_type": "", "screen_name": "liaherawati705", - "statuses_count": 43, + "statuses_count": 224, "translator_type": "none", "verified": false, "want_retweets": false, @@ -79,7 +1059,7 @@ "id": "VXNlcjoyODQzNzU2ODgw", "rest_id": "2843756880", "affiliates_highlighted_label": {}, - "has_graduated_access": false, + "has_graduated_access": true, "is_blue_verified": false, "profile_image_shape": "Circle", "legacy": { @@ -95,95 +1075,23 @@ } }, "fast_followers_count": 0, - "favourites_count": 178, - "followers_count": 59, - "friends_count": 61, + "favourites_count": 476, + "followers_count": 90, + "friends_count": 341, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "๊USA", - "media_count": 0, + "media_count": 1, "name": "rajibelena", - "normal_followers_count": 59, + "normal_followers_count": 90, "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1737570804228108288/LacIQmA9_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2843756880/1705349988", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1754322894971375616/SeZHYdt0_normal.jpg", "profile_interstitial_type": "", "screen_name": "rajib6373", - "statuses_count": 50, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1718846052747657216", - "sortIndex": "1785906677618717919", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": {}, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1717643590594068480", - "sortIndex": "1785272785095341343", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzE3NjQzNTkwNTk0MDY4NDgw", - "rest_id": "1717643590594068480", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Thu Oct 26 20:45:21 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "blockchain x \nTechnical analyst'\nNegotiator.....\nAlpha hunter \ncommunity manager \n✍✍✍\n \n️", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 7, - "followers_count": 2, - "friends_count": 6, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 0, - "name": "Costante De Luca", - "normal_followers_count": 2, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1717643590594068480/1698353125", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1717643610227666944/lLVgYNFL_normal.png", - "profile_interstitial_type": "", - "screen_name": "DeCostante16577", - "statuses_count": 0, + "statuses_count": 223, "translator_type": "none", "verified": false, "want_retweets": false, @@ -239,23 +1147,23 @@ } }, "fast_followers_count": 0, - "favourites_count": 4251, - "followers_count": 183, - "friends_count": 305, + "favourites_count": 9816, + "followers_count": 265, + "friends_count": 326, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", - "media_count": 31, + "media_count": 36, "name": "【公式】FemcareLife(フェムケアライフ)", - "normal_followers_count": 183, + "normal_followers_count": 265, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1566952810528526336/1662425912", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1566952984378220545/QXT5gqyV_normal.jpg", "profile_interstitial_type": "", "screen_name": "femcarelife", - "statuses_count": 96, + "statuses_count": 101, "translator_type": "none", "url": "https://t.co/gP4sqRq5Fj", "verified": false, @@ -291,7 +1199,7 @@ "can_media_tag": true, "created_at": "Mon Jun 26 04:43:56 +0000 2023", "default_profile": true, - "default_profile_image": true, + "default_profile_image": false, "description": "👍", "entities": { "description": { @@ -299,19 +1207,20 @@ } }, "fast_followers_count": 0, - "favourites_count": 99, - "followers_count": 8, - "friends_count": 80, + "favourites_count": 1198, + "followers_count": 19, + "friends_count": 116, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 0, "name": "Mohammad Abdul Rahman Siddiqui", - "normal_followers_count": 8, + "normal_followers_count": 19, "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1673190237949034498/1703748245", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1740002004167200768/HINlUfpD_normal.jpg", "profile_interstitial_type": "", "screen_name": "saltyynut_786", "statuses_count": 0, @@ -327,942 +1236,22 @@ } }, { - "entryId": "user-1698255639015727104", - "sortIndex": "1784793115389188247", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjk4MjU1NjM5MDE1NzI3MTA0", - "rest_id": "1698255639015727104", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sun Sep 03 08:44:46 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "frog (formerly) online", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 19, - "followers_count": 9, - "friends_count": 60, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 0, - "name": "Allison Simmons", - "normal_followers_count": 9, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1698255639015727104/1702111228", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1733406221191778304/kOqTZUS9_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "hugesenpaiv", - "statuses_count": 21, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1712380698982543360", - "sortIndex": "1784769916203491252", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzEyMzgwNjk4OTgyNTQzMzYw", - "rest_id": "1712380698982543360", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Thu Oct 12 08:14:23 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "Devloping the world.jey sree ram", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 1336, - "followers_count": 84, - "friends_count": 582, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 12, - "name": "deepak kumar", - "normal_followers_count": 84, - "pinned_tweet_ids_str": [ - "1712957054028005406" - ], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1733686592621903872/2ne3L5lX_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "deepakk64777565", - "statuses_count": 404, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1730914904113111190", - "professional_type": "Business", - "category": [ - { - "id": 53, - "name": "Automotive", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1698190145453785089", - "sortIndex": "1784556243302667753", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjk4MTkwMTQ1NDUzNzg1MDg5", - "rest_id": "1698190145453785089", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sun Sep 03 04:24:38 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "Lil Pudgy #1058, Atama #251", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 45, - "followers_count": 173, - "friends_count": 87, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 0, - "name": "Love Poglin🧡", - "normal_followers_count": 173, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1698190145453785089/1697830592", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1715451645759197184/yELXrbDF_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "mangch1nance", - "statuses_count": 57, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-844178930965786624", - "sortIndex": "1784310009090368729", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo4NDQxNzg5MzA5NjU3ODY2MjQ=", - "rest_id": "844178930965786624", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Mar 21 13:28:36 +0000 2017", - "default_profile": true, - "default_profile_image": true, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 11400, - "followers_count": 71, - "friends_count": 418, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 2, - "location": "", - "media_count": 0, - "name": "xxhh_1011", - "normal_followers_count": 71, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", - "profile_interstitial_type": "", - "screen_name": "xxhh_1011", - "statuses_count": 0, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1426516892697513989", - "sortIndex": "1784160546153380362", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDI2NTE2ODkyNjk3NTEzOTg5", - "rest_id": "1426516892697513989", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Aug 14 12:13:08 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "#フォロバ100 #相互フォロー #ホロライブ 高校生。ホロライブ。ホロリス。雪民。女子学生。精神的な病気のため、しばらく低浮上です。休養中。どうか今後もホロライブと推しのことをよろしくお願いします\n@yukihanalamy @hololivetv\n@natsuiromatsuri @support @youtube", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 139135, - "followers_count": 18237, - "friends_count": 18721, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 52, - "location": "DMは見ません。精神的な病気のため休養中・低浮上です。", - "media_count": 8, - "name": "Yuu11y_TKY【雪民】学生ホロリス(病気体調不良により低浮上です)", - "normal_followers_count": 18237, - "pinned_tweet_ids_str": [ - "1546763884853604352" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1426516892697513989/1631788952", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1491211624484843521/JXuHYpNO_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "yuu11y_TKY", - "statuses_count": 34441, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1562768873384210432", - "professional_type": "Creator", - "category": [ - { - "id": 15, - "name": "Entertainment & Recreation", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-22604944", - "sortIndex": "1784129962265207959", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyMjYwNDk0NA==", - "rest_id": "22604944", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Mar 03 09:23:51 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Creator | Cinema~Games~Art | Marketing | Design | Generative AI", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 2508, - "followers_count": 770, - "friends_count": 690, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 11, - "location": "City of Angeles, Metaverse", - "media_count": 542, - "name": "Creative AIgency", - "normal_followers_count": 770, - "pinned_tweet_ids_str": [ - "1737235903645647172" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/22604944/1699475985", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1731979844286816256/pB6JJh27_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "CreativeAIgency", - "statuses_count": 2295, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1729550586016915481", - "professional_type": "Business", - "category": [ - { - "id": 477, - "name": "Professional Services", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1701125778534998016", - "sortIndex": "1783966747821892071", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzAxMTI1Nzc4NTM0OTk4MDE2", - "rest_id": "1701125778534998016", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Sep 11 06:49:38 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "TONY BOSS \n#btc #bnb #coin #crypto $eos $spy $wwf $doge $ltc $xrp #binace #eth #link", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 114, - "followers_count": 334, - "friends_count": 42, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 5, - "location": "", - "media_count": 3, - "name": "Lasermild Jayarajan", - "normal_followers_count": 334, - "pinned_tweet_ids_str": [ - "1722129513897918753" - ], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1701959195354951680/Y891qEca_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "LasermildJ41974", - "statuses_count": 229, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1253773499384168453", - "sortIndex": "1783964043789050282", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMjUzNzczNDk5Mzg0MTY4NDUz", - "rest_id": "1253773499384168453", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Fri Apr 24 19:51:20 +0000 2020", - "default_profile": true, - "default_profile_image": false, - "description": "bug :)", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 137269, - "followers_count": 1639, - "friends_count": 4701, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 4, - "location": "Michigan, USA", - "media_count": 95, - "name": "Cormac", - "normal_followers_count": 1639, - "pinned_tweet_ids_str": [ - "1695854687130386773" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1253773499384168453/1657681356", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1587994930202435584/ZbtgeI1J_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "cormaclovesyou", - "statuses_count": 1721, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1672968834834223109", - "sortIndex": "1783866408865842262", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjcyOTY4ODM0ODM0MjIzMTA5", - "rest_id": "1672968834834223109", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sun Jun 25 14:05:14 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "New here, follow up", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 30725, - "followers_count": 50, - "friends_count": 49, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 1, - "location": "Dambai, Ghana", - "media_count": 104, - "name": "Anyi_God", - "normal_followers_count": 50, - "pinned_tweet_ids_str": [ - "1726222101005402191" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1672968834834223109/1687702367", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1673346890245521412/KduC-98T_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "AnyiGod83", - "statuses_count": 1607, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1673616688808448004", - "professional_type": "Business", - "category": [ - { - "id": 15, - "name": "Entertainment & Recreation", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-4129502781", - "sortIndex": "1783821232527285521", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo0MTI5NTAyNzgx", - "rest_id": "4129502781", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Fri Nov 06 21:36:07 +0000 2015", - "default_profile": true, - "default_profile_image": false, - "description": "Yeah, so bet that @makenzie_brown00 is a bit spicy. Or beefy. As well as Callie Raymond and Skylar Eckert and @sierra.morris and Mariah Bullock and Jenna Grubb", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thespicyone.wixsite.com", - "expanded_url": "http://thespicyone.wixsite.com", - "url": "https://t.co/pZhMOA600j", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 53328, - "followers_count": 782, - "friends_count": 2684, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5, - "location": "Clio, MI", - "media_count": 140, - "name": "Slightly Older Beef", - "normal_followers_count": 782, - "pinned_tweet_ids_str": [ - "846409093405396993" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4129502781/1691018875", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1720523261455269888/J6es9p8f_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "eddiedog9881", - "statuses_count": 30880, - "translator_type": "none", - "url": "https://t.co/pZhMOA600j", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1551380358834204672", - "sortIndex": "1783777470079819310", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTUxMzgwMzU4ODM0MjA0Njcy", - "rest_id": "1551380358834204672", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Mon Jul 25 01:34:58 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "🪙 RUBI_TƯƠNG LAI TÀI SẢN MÃ HÓA\n⛏️CODE : DUCANHSITC", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "rubi.click/join/DUCANHSITC", - "expanded_url": "https://rubi.click/join/DUCANHSITC", - "url": "https://t.co/5RbpwYaqnI", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 14490, - "followers_count": 3056, - "friends_count": 2871, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 5, - "location": "Ninh Thuận, Vietnam", - "media_count": 1134, - "name": "Lê Anh_Rubi", - "normal_followers_count": 3056, - "pinned_tweet_ids_str": [ - "1722875962613010477" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1551380358834204672/1698638144", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1720471138965622784/gH2_dn7l_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Rubi_FanClub", - "statuses_count": 9999, - "translator_type": "none", - "url": "https://t.co/5RbpwYaqnI", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1720604258620342623", - "professional_type": "Creator", - "category": [ - { - "id": 713, - "name": "Science & Technology", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1445772007442763777", - "sortIndex": "1783470995282795785", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDQ1NzcyMDA3NDQyNzYzNzc3", - "rest_id": "1445772007442763777", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Wed Oct 06 15:25:05 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 24897, - "followers_count": 180, - "friends_count": 221, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 1, - "location": "", - "media_count": 0, - "name": "Hiroshi Ushijima", - "normal_followers_count": 180, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1445772007442763777/1694017226", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1699457359008161792/YorWVWgM_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "HiroshiUshijim1", - "statuses_count": 4, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1716774848687685632", - "sortIndex": "1783180810961160014", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzE2Nzc0ODQ4Njg3Njg1NjMy", - "rest_id": "1716774848687685632", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Oct 24 11:13:33 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 7, - "followers_count": 0, - "friends_count": 6, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 0, - "name": "brtghtrg", - "normal_followers_count": 0, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1716775306768646144/f3TNl5Z0_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "brtghtrg17555", - "statuses_count": 0, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1561758685176532992", - "sortIndex": "1782719536997309676", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTYxNzU4Njg1MTc2NTMyOTky", - "rest_id": "1561758685176532992", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Aug 22 16:54:29 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 96, - "followers_count": 23, - "friends_count": 46, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 2, - "name": "SamanvitaDziuk", - "normal_followers_count": 23, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1561758765120045061/7ngtjzRS_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "DziukSamanvita", - "statuses_count": 36, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "cursor-top-1785992517204145635", - "sortIndex": "1785992517204145635", + "entryId": "cursor-top-1790238934286991361", + "sortIndex": "1790238934286991361", "content": { "entryType": "TimelineTimelineCursor", "__typename": "TimelineTimelineCursor", - "value": "HCbE16v36q6PyTEAAA==", + "value": "HCaAgIDU67Sa2DEAAA==", "cursorType": "Top" } }, { - "entryId": "cursor-bottom-1782719536997309675", - "sortIndex": "1782719536997309675", + "entryId": "cursor-bottom-1784818715978799285", + "sortIndex": "1784818715978799285", "content": { "entryType": "TimelineTimelineCursor", "__typename": "TimelineTimelineCursor", - "value": "HBbY8/yNqP6+vTEAAA==", + "value": "HBbs4pSmzsr5xDEAAA==", "cursorType": "Bottom", "stopOnEmptyResponse": true } diff --git a/tests/mocked-data/followers_raw.json b/tests/mocked-data/raw_followers.json similarity index 76% rename from tests/mocked-data/followers_raw.json rename to tests/mocked-data/raw_followers.json index 4dc43df..bef1f7a 100644 --- a/tests/mocked-data/followers_raw.json +++ b/tests/mocked-data/raw_followers.json @@ -22,7 +22,7 @@ "entries": [ { "entryId": "user-236209129", - "sortIndex": "1739819621776621568", + "sortIndex": "1756309168358162432", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -51,16 +51,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 16318, - "followers_count": 129728, - "friends_count": 4011, + "favourites_count": 16287, + "followers_count": 129235, + "friends_count": 4003, "has_custom_timelines": true, "is_translator": false, - "listed_count": 971, + "listed_count": 977, "location": "", "media_count": 1213, "name": "Leslie Berland", - "normal_followers_count": 129728, + "normal_followers_count": 129235, "pinned_tweet_ids_str": [ "1615377744275070980" ], @@ -69,7 +69,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1106274854683074560/x7rrvxaD_normal.jpg", "profile_interstitial_type": "", "screen_name": "leslieberland", - "statuses_count": 11732, + "statuses_count": 11730, "translator_type": "regular", "verified": false, "want_retweets": false, @@ -87,7 +87,7 @@ }, { "entryId": "user-338048283", - "sortIndex": "1739819621776621567", + "sortIndex": "1756309168358162431", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -129,16 +129,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 11961, - "followers_count": 16134, - "friends_count": 3506, + "favourites_count": 11947, + "followers_count": 16124, + "friends_count": 3500, "has_custom_timelines": true, "is_translator": false, - "listed_count": 144, + "listed_count": 146, "location": "9th & Market Street", "media_count": 6619, "name": "bonappetweet", - "normal_followers_count": 16134, + "normal_followers_count": 16124, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/338048283/1568240671", @@ -164,7 +164,7 @@ }, { "entryId": "user-156417821", - "sortIndex": "1739819621776621566", + "sortIndex": "1756309168358162430", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -206,16 +206,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 12017, - "followers_count": 13729, - "friends_count": 1193, + "favourites_count": 11841, + "followers_count": 13871, + "friends_count": 1192, "has_custom_timelines": true, "is_translator": false, - "listed_count": 93, + "listed_count": 94, "location": "East Bay, CA", "media_count": 173, "name": "Mike Cvet", - "normal_followers_count": 13729, + "normal_followers_count": 13871, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/156417821/1465617789", @@ -241,7 +241,7 @@ }, { "entryId": "user-15772978", - "sortIndex": "1739819621776621565", + "sortIndex": "1756309168358162429", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -270,23 +270,23 @@ } }, "fast_followers_count": 0, - "favourites_count": 24682, - "followers_count": 5543, - "friends_count": 2935, + "favourites_count": 24628, + "followers_count": 5652, + "friends_count": 2933, "has_custom_timelines": true, "is_translator": false, "listed_count": 157, "location": "Brooklyn, NY", - "media_count": 657, + "media_count": 658, "name": "Jessica Garson", - "normal_followers_count": 5543, + "normal_followers_count": 5652, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15772978/1520354408", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1407858685536256008/0Nv7ea1i_normal.jpg", "profile_interstitial_type": "", "screen_name": "jessicagarson", - "statuses_count": 7998, + "statuses_count": 8003, "translator_type": "none", "verified": false, "want_retweets": false, @@ -304,7 +304,7 @@ }, { "entryId": "user-6844292", - "sortIndex": "1739819621776621564", + "sortIndex": "1756309168358162428", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -347,15 +347,15 @@ }, "fast_followers_count": 0, "favourites_count": 267, - "followers_count": 1325198, + "followers_count": 1323718, "friends_count": 12, "has_custom_timelines": true, "is_translator": false, - "listed_count": 4700, + "listed_count": 4716, "location": "San Francisco", "media_count": 63, "name": "Engineering", - "normal_followers_count": 1325198, + "normal_followers_count": 1323718, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6844292/1690213191", @@ -381,7 +381,7 @@ }, { "entryId": "user-108209516", - "sortIndex": "1739819621776621563", + "sortIndex": "1756309168358162427", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -433,16 +433,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 16940, - "followers_count": 16899, + "favourites_count": 17560, + "followers_count": 17007, "friends_count": 1958, "has_custom_timelines": true, "is_translator": false, - "listed_count": 487, + "listed_count": 485, "location": "Austin", - "media_count": 1048, + "media_count": 1088, "name": "Amir Shevat", - "normal_followers_count": 16899, + "normal_followers_count": 17007, "pinned_tweet_ids_str": [ "1603552334231097351" ], @@ -451,7 +451,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1389082761965629442/JhdikLmt_normal.jpg", "profile_interstitial_type": "", "screen_name": "ashevat", - "statuses_count": 8196, + "statuses_count": 8553, "translator_type": "none", "url": "https://t.co/zWtpooqVXO", "verified": false, @@ -481,7 +481,7 @@ }, { "entryId": "user-360174510", - "sortIndex": "1739819621776621562", + "sortIndex": "1756309168358162426", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -529,16 +529,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 23743, - "followers_count": 4359, - "friends_count": 709, + "favourites_count": 24006, + "followers_count": 4470, + "friends_count": 717, "has_custom_timelines": true, "is_translator": false, "listed_count": 54, "location": "", - "media_count": 371, + "media_count": 393, "name": "Gerard Taylor", - "normal_followers_count": 4359, + "normal_followers_count": 4470, "pinned_tweet_ids_str": [ "1392274092951228417" ], @@ -546,7 +546,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1426913345815425028/fHXLDLP__normal.jpg", "profile_interstitial_type": "", "screen_name": "TheGerardTaylor", - "statuses_count": 8323, + "statuses_count": 8589, "translator_type": "none", "verified": false, "want_retweets": false, @@ -569,7 +569,7 @@ }, { "entryId": "user-27649157", - "sortIndex": "1739819621776621561", + "sortIndex": "1756309168358162425", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -604,32 +604,32 @@ "created_at": "Mon Mar 30 14:46:20 +0000 2009", "default_profile": false, "default_profile_image": false, - "description": "Lucky dad of 2. Lesser-half of @rls2882. VP Brand Creativity @X. Buy the ticket, take the ride. He/him.", + "description": "Lucky dad of 2. Lesser-half of @rls2882. VP Brand Creativity @X. Buy the ticket, take the ride.", "entities": { "description": { "urls": [] } }, "fast_followers_count": 0, - "favourites_count": 17733, - "followers_count": 18126, - "friends_count": 2831, + "favourites_count": 17745, + "followers_count": 19660, + "friends_count": 2835, "has_custom_timelines": true, "is_translator": false, - "listed_count": 141, + "listed_count": 142, "location": "NJ / NYC", - "media_count": 1926, + "media_count": 1932, "name": "Alex Josephson", - "normal_followers_count": 18126, + "normal_followers_count": 19660, "pinned_tweet_ids_str": [ - "1673477113482031104" + "1719473141712343258" ], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/27649157/1701374504", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1659764175571238912/dTebjojo_normal.jpg", "profile_interstitial_type": "", "screen_name": "ajos", - "statuses_count": 8149, + "statuses_count": 8173, "translator_type": "regular", "verified": false, "want_retweets": false, @@ -647,7 +647,7 @@ }, { "entryId": "user-176425492", - "sortIndex": "1739819621776621560", + "sortIndex": "1756309168358162424", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -689,25 +689,25 @@ } }, "fast_followers_count": 0, - "favourites_count": 30435, - "followers_count": 10569, - "friends_count": 5504, + "favourites_count": 30321, + "followers_count": 10576, + "friends_count": 5495, "has_custom_timelines": true, "is_translator": false, "listed_count": 71, "location": "nyc", - "media_count": 2172, + "media_count": 2175, "name": "Hamza", - "normal_followers_count": 10569, + "normal_followers_count": 10576, "pinned_tweet_ids_str": [ "1167249725751361537" ], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/176425492/1672989172", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1686532433779335168/Z7dhnUMr_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1745092473339129856/9I0wGN3i_normal.jpg", "profile_interstitial_type": "", "screen_name": "oihamza", - "statuses_count": 7034, + "statuses_count": 7039, "translator_type": "none", "url": "https://t.co/9Jd48LIalh", "verified": false, @@ -724,104 +724,9 @@ } } }, - { - "entryId": "user-857699969263964161", - "sortIndex": "1739819621776621559", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo4NTc2OTk5NjkyNjM5NjQxNjE=", - "rest_id": "857699969263964161", - "affiliates_highlighted_label": { - "label": { - "url": { - "url": "https://twitter.com/X", - "urlType": "DeepLink" - }, - "badge": { - "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" - }, - "description": "X", - "userLabelType": "BusinessLabel", - "userLabelDisplayType": "Badge" - } - }, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Thu Apr 27 20:56:22 +0000 2017", - "default_profile": true, - "default_profile_image": false, - "description": "Partner Engineering @XDevelopers @API Opinions my own. RTs != endorsements etc", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "developer.x.com", - "expanded_url": "https://developer.x.com", - "url": "https://t.co/Rh0kWC75HG", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 42, - "followers_count": 4528, - "friends_count": 1518, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 67, - "location": "San Francisco, CA", - "media_count": 125, - "name": "Suhem Parack", - "normal_followers_count": 4528, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/857699969263964161/1648699725", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1559172819514142720/LhoWOIYU_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "suhemparack", - "statuses_count": 1835, - "translator_type": "none", - "url": "https://t.co/Rh0kWC75HG", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1471588288142057479", - "professional_type": "Creator", - "category": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, { "entryId": "user-6506012", - "sortIndex": "1739819621776621558", + "sortIndex": "1756309168358162423", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -835,7 +740,7 @@ "rest_id": "6506012", "affiliates_highlighted_label": {}, "has_graduated_access": true, - "is_blue_verified": false, + "is_blue_verified": true, "profile_image_shape": "Circle", "legacy": { "can_dm": false, @@ -843,20 +748,10 @@ "created_at": "Fri Jun 01 17:35:22 +0000 2007", "default_profile": false, "default_profile_image": false, - "description": "Director of Engineering @ Spotify • Angel Investor • prev: Twitter, NYTimes, ESPN • 🌤️app: https://t.co/aiZZEvbnNF", + "description": "Senior Director of Engineering | Angel Investor // Prev: Director of Engineering at Spotify, @Twitter, @NYTimes, @ESPN", "entities": { "description": { - "urls": [ - { - "display_url": "courtney.tech", - "expanded_url": "http://courtney.tech", - "url": "https://t.co/aiZZEvbnNF", - "indices": [ - 92, - 115 - ] - } - ] + "urls": [] }, "url": { "urls": [ @@ -873,16 +768,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 8222, - "followers_count": 4185, - "friends_count": 2255, + "favourites_count": 8310, + "followers_count": 4224, + "friends_count": 2269, "has_custom_timelines": true, "is_translator": false, "listed_count": 177, - "location": "Planet Melmac", - "media_count": 1472, + "location": "Los Angeles, CA", + "media_count": 1488, "name": "Courtney Ivey", - "normal_followers_count": 4185, + "normal_followers_count": 4224, "pinned_tweet_ids_str": [ "1593490176868683777" ], @@ -891,7 +786,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1601593236794970117/0iV4s9wT_normal.jpg", "profile_interstitial_type": "", "screen_name": "couturefreak", - "statuses_count": 41851, + "statuses_count": 41917, "translator_type": "none", "url": "https://t.co/noVOrVRTI3", "verified": false, @@ -921,7 +816,7 @@ }, { "entryId": "user-37290907", - "sortIndex": "1739819621776621557", + "sortIndex": "1756309168358162422", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -963,23 +858,23 @@ } }, "fast_followers_count": 0, - "favourites_count": 28428, - "followers_count": 66094, - "friends_count": 3101, + "favourites_count": 28243, + "followers_count": 65822, + "friends_count": 3104, "has_custom_timelines": true, "is_translator": false, - "listed_count": 273, + "listed_count": 272, "location": "San Francisco, CA", "media_count": 672, "name": "bruce.falck() 🦗", - "normal_followers_count": 66094, + "normal_followers_count": 65822, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/37290907/1652579133", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1531718606983114753/j1FxA0Vy_normal.jpg", "profile_interstitial_type": "", "screen_name": "boo", - "statuses_count": 7770, + "statuses_count": 7776, "translator_type": "regular", "url": "https://t.co/Jbn9aQjRGU", "verified": false, @@ -998,7 +893,7 @@ }, { "entryId": "user-28628425", - "sortIndex": "1739819621776621556", + "sortIndex": "1756309168358162421", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1027,16 +922,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 11997, - "followers_count": 1543, - "friends_count": 1023, + "favourites_count": 11959, + "followers_count": 1555, + "friends_count": 1022, "has_custom_timelines": true, "is_translator": false, "listed_count": 36, "location": "New York, NY", "media_count": 140, "name": "Sonya Penn", - "normal_followers_count": 1543, + "normal_followers_count": 1555, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/28628425/1396157856", @@ -1061,7 +956,7 @@ }, { "entryId": "user-49188317", - "sortIndex": "1739819621776621555", + "sortIndex": "1756309168358162420", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1103,16 +998,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 24366, - "followers_count": 4343, - "friends_count": 1824, + "favourites_count": 24085, + "followers_count": 4451, + "friends_count": 1818, "has_custom_timelines": true, "is_translator": false, - "listed_count": 47, + "listed_count": 49, "location": "127.0.0.1", "media_count": 2805, "name": "Seth Wilson", - "normal_followers_count": 4343, + "normal_followers_count": 4451, "pinned_tweet_ids_str": [ "1609361179205599233" ], @@ -1121,7 +1016,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1367523060551585797/r_YDF1jd_normal.jpg", "profile_interstitial_type": "", "screen_name": "srw", - "statuses_count": 11049, + "statuses_count": 11050, "translator_type": "regular", "url": "https://t.co/EOb50G8WRf", "verified": false, @@ -1140,7 +1035,7 @@ }, { "entryId": "user-56057876", - "sortIndex": "1739819621776621554", + "sortIndex": "1756309168358162419", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1182,23 +1077,23 @@ } }, "fast_followers_count": 0, - "favourites_count": 51160, - "followers_count": 2391, - "friends_count": 1526, + "favourites_count": 51006, + "followers_count": 2468, + "friends_count": 1523, "has_custom_timelines": true, "is_translator": false, - "listed_count": 121, + "listed_count": 122, "location": "🇨🇭", - "media_count": 1799, + "media_count": 1802, "name": "Victor", - "normal_followers_count": 2391, + "normal_followers_count": 2468, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/56057876/1550239018", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1108698010777776129/Wv4U-9eQ_normal.jpg", "profile_interstitial_type": "", "screen_name": "vjo", - "statuses_count": 15891, + "statuses_count": 15889, "translator_type": "regular", "url": "https://t.co/kselUQWS5i", "verified": false, @@ -1228,7 +1123,7 @@ }, { "entryId": "user-1434172202404880388", - "sortIndex": "1739819621776621553", + "sortIndex": "1756309168358162418", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1257,16 +1152,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2888, - "followers_count": 718, - "friends_count": 4967, + "favourites_count": 2632, + "followers_count": 711, + "friends_count": 4996, "has_custom_timelines": true, "is_translator": false, - "listed_count": 26, + "listed_count": 25, "location": "", - "media_count": 107, + "media_count": 110, "name": "glitch", - "normal_followers_count": 718, + "normal_followers_count": 711, "pinned_tweet_ids_str": [ "1661596986594975744" ], @@ -1275,7 +1170,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1721825888109817856/3aHbZk58_normal.jpg", "profile_interstitial_type": "", "screen_name": "glitch010110", - "statuses_count": 6948, + "statuses_count": 6947, "translator_type": "none", "verified": false, "want_retweets": false, @@ -1293,7 +1188,7 @@ }, { "entryId": "user-17200003", - "sortIndex": "1739819621776621552", + "sortIndex": "1756309168358162417", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1345,16 +1240,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 8651, - "followers_count": 1739, - "friends_count": 750, + "favourites_count": 8637, + "followers_count": 2184, + "friends_count": 748, "has_custom_timelines": true, "is_translator": false, - "listed_count": 47, + "listed_count": 49, "location": "MN ⇨ all over ⇨ CO", "media_count": 753, "name": "snowman in most places", - "normal_followers_count": 1739, + "normal_followers_count": 2184, "pinned_tweet_ids_str": [ "1649636455403393026" ], @@ -1363,7 +1258,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/697445972402540546/2CYK3PWX_normal.jpg", "profile_interstitial_type": "", "screen_name": "snowman", - "statuses_count": 4474, + "statuses_count": 4480, "translator_type": "regular", "url": "https://t.co/I1GjLuBxM2", "verified": false, @@ -1387,7 +1282,7 @@ }, { "entryId": "user-951689171139141632", - "sortIndex": "1739819621776621551", + "sortIndex": "1756309168358162416", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1429,16 +1324,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 13758, - "followers_count": 6547, + "favourites_count": 13810, + "followers_count": 6645, "friends_count": 458, "has_custom_timelines": true, "is_translator": false, "listed_count": 6, "location": "", - "media_count": 491, + "media_count": 500, "name": "Jashpreet Malhotra", - "normal_followers_count": 6547, + "normal_followers_count": 6645, "pinned_tweet_ids_str": [ "1427595092387254272" ], @@ -1446,7 +1341,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1581216546545770496/qMCJORtO_normal.jpg", "profile_interstitial_type": "", "screen_name": "jashpreett", - "statuses_count": 3374, + "statuses_count": 3419, "translator_type": "none", "url": "https://t.co/QvJnf2ZWRD", "verified": false, @@ -1465,7 +1360,7 @@ }, { "entryId": "user-181944946", - "sortIndex": "1739819621776621550", + "sortIndex": "1756309168358162415", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1494,16 +1389,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 1268, - "followers_count": 1232, + "favourites_count": 1252, + "followers_count": 1265, "friends_count": 507, "has_custom_timelines": true, "is_translator": false, - "listed_count": 0, + "listed_count": 18, "location": "Fremont, CA", "media_count": 170, "name": "James Gao", - "normal_followers_count": 1232, + "normal_followers_count": 1265, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/181944946/1426093438", @@ -1539,7 +1434,7 @@ }, { "entryId": "user-67501283", - "sortIndex": "1739819621776621549", + "sortIndex": "1756309168358162414", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1568,16 +1463,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 5770, - "followers_count": 1740, - "friends_count": 1206, + "favourites_count": 5764, + "followers_count": 1788, + "friends_count": 1205, "has_custom_timelines": true, "is_translator": false, "listed_count": 83, "location": "Boulder CO", "media_count": 228, "name": "Cassie Stewart", - "normal_followers_count": 1740, + "normal_followers_count": 1788, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/67501283/1443802566", @@ -1601,8 +1496,8 @@ } }, { - "entryId": "user-1720260217504419840", - "sortIndex": "1739819621776621548", + "entryId": "user-14801939", + "sortIndex": "1756309168358162413", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1612,783 +1507,46 @@ "user_results": { "result": { "__typename": "User", - "id": "VXNlcjoxNzIwMjYwMjE3NTA0NDE5ODQw", - "rest_id": "1720260217504419840", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Fri Nov 03 02:03:02 +0000 2023", - "default_profile": true, - "default_profile_image": true, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 52, - "followers_count": 8, - "friends_count": 65, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 0, - "name": "qweddcdsvd", - "normal_followers_count": 8, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", - "profile_interstitial_type": "", - "screen_name": "qweddcdsvd31463", - "statuses_count": 88, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1614996953443762178", - "sortIndex": "1739819621776621547", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjE0OTk2OTUzNDQzNzYyMTc4", - "rest_id": "1614996953443762178", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Jan 16 14:47:24 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 5495, - "followers_count": 118, - "friends_count": 273, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 283, - "name": "Stefanie Colonius", - "normal_followers_count": 118, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1614997754174132226/up4FzCzT_normal.png", - "profile_interstitial_type": "", - "screen_name": "SMColonius", - "statuses_count": 1632, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1684063164491767808", - "sortIndex": "1739819621776621546", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjg0MDYzMTY0NDkxNzY3ODA4", - "rest_id": "1684063164491767808", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "protected": true, - "can_dm": false, - "can_media_tag": false, - "created_at": "Wed Jul 26 04:48:57 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 0, - "followers_count": 0, - "friends_count": 15, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 0, - "name": "hh h", - "normal_followers_count": 0, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1684063230774366208/MimImp4I_normal.png", - "profile_interstitial_type": "", - "screen_name": "AsiarayOne", - "statuses_count": 0, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1514752693629300739", - "sortIndex": "1739819621776621545", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTE0NzUyNjkzNjI5MzAwNzM5", - "rest_id": "1514752693629300739", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Thu Apr 14 23:49:29 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 18033, - "followers_count": 1328, - "friends_count": 2141, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 5227, - "name": "xxjewel2", - "normal_followers_count": 1328, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1514752693629300739/1694137454", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1554640948600225792/cn21i8_V_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "xxjewel2", - "statuses_count": 7022, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1739801991260377088", - "sortIndex": "1739819621776621544", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzM5ODAxOTkxMjYwMzc3MDg4", - "rest_id": "1739801991260377088", - "affiliates_highlighted_label": {}, - "has_graduated_access": false, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Wed Dec 27 00:15:00 +0000 2023", - "default_profile": true, - "default_profile_image": true, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 0, - "followers_count": 0, - "friends_count": 1, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 0, - "name": "Hk", - "normal_followers_count": 0, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", - "profile_interstitial_type": "", - "screen_name": "Hk71003", - "statuses_count": 0, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-281680751", - "sortIndex": "1739819621776621543", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyODE2ODA3NTE=", - "rest_id": "281680751", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Wed Apr 13 19:14:40 +0000 2011", - "default_profile": false, - "default_profile_image": false, - "description": "We help our clients outperform their competitors, build increasingly valuable businesses, and enjoy more fulfilling work by masterful use of Web technology.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "evenhouseconsulting.com", - "expanded_url": "http://evenhouseconsulting.com", - "url": "https://t.co/JwG9T7H0Vr", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 6, - "followers_count": 64, - "friends_count": 452, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 1, - "location": "Westmont, IL USA", - "media_count": 0, - "name": "Evenhouse Consulting", - "normal_followers_count": 64, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/281680751/1399172574", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1087881254324846597/ySH7pE2Q_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "evenhouse", - "statuses_count": 15, - "translator_type": "none", - "url": "https://t.co/JwG9T7H0Vr", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1739790678123515904", - "sortIndex": "1739819621776621542", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzM5NzkwNjc4MTIzNTE1OTA0", - "rest_id": "1739790678123515904", - "affiliates_highlighted_label": {}, - "has_graduated_access": false, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Dec 26 23:30:39 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 0, - "followers_count": 0, - "friends_count": 1, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 0, - "name": "Avocado 123", - "normal_followers_count": 0, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1739790859128672256/Yaxl0-yA_normal.png", - "profile_interstitial_type": "", - "screen_name": "Avocado1237311", - "statuses_count": 0, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1652222192984227841", - "sortIndex": "1739819621776621541", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjUyMjIyMTkyOTg0MjI3ODQx", - "rest_id": "1652222192984227841", - "affiliates_highlighted_label": {}, - "has_graduated_access": false, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "protected": true, - "can_dm": true, - "can_media_tag": true, - "created_at": "Sat Apr 29 08:05:05 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "Я хорошая", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 119, - "followers_count": 23, - "friends_count": 149, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 2, - "name": "Aleksandra", - "normal_followers_count": 23, - "pinned_tweet_ids_str": [], - "possibly_sensitive": true, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1652222458257178625/ZXh6kbSP_normal.png", - "profile_interstitial_type": "", - "screen_name": "AKlimentjeva123", - "statuses_count": 11, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1656246109705052160", - "professional_type": "Creator", - "category": [ - { - "id": 132, - "name": "Commercial & Industrial", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1647031137536016385", - "sortIndex": "1739819621776621540", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjQ3MDMxMTM3NTM2MDE2Mzg1", - "rest_id": "1647031137536016385", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sat Apr 15 00:17:02 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 7078, - "followers_count": 89, - "friends_count": 1875, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 1, - "location": "", - "media_count": 1052, - "name": "Mohamed Fawzy", - "normal_followers_count": 89, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1714971725505466369/sWcQY2MF_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Mohamed18819426", - "statuses_count": 1603, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1594165458311127041", - "sortIndex": "1739819621776621539", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTk0MTY1NDU4MzExMTI3MDQx", - "rest_id": "1594165458311127041", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Sun Nov 20 03:07:30 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 4966, - "followers_count": 93, - "friends_count": 1239, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "California", - "media_count": 269, - "name": "RAZ", - "normal_followers_count": 93, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1617663538390241281/6EezuniW_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "RAZ80858151", - "statuses_count": 4416, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-3259820676", - "sortIndex": "1739819621776621538", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjozMjU5ODIwNjc2", - "rest_id": "3259820676", - "affiliates_highlighted_label": {}, - "has_graduated_access": false, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Jun 29 12:08:59 +0000 2015", - "default_profile": true, - "default_profile_image": false, - "description": "Single", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 1, - "followers_count": 0, - "friends_count": 84, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "USA", - "media_count": 1, - "name": "Seraphina", - "normal_followers_count": 0, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3259820676/1703529638", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1739355474963865600/CniWCHmq_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "GibSasikan", - "statuses_count": 4, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-38725577", - "sortIndex": "1739819621776621537", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjozODcyNTU3Nw==", - "rest_id": "38725577", + "id": "VXNlcjoxNDgwMTkzOQ==", + "rest_id": "14801939", "affiliates_highlighted_label": {}, "has_graduated_access": true, "is_blue_verified": true, "profile_image_shape": "Circle", "legacy": { - "can_dm": false, + "can_dm": true, "can_media_tag": true, - "created_at": "Fri May 08 19:22:07 +0000 2009", + "created_at": "Fri May 16 18:04:30 +0000 2008", "default_profile": false, "default_profile_image": false, - "description": "As an advocate for the protection of consumer’s data, I’m not a fan of social media. My participation is limited until they prove themselves trustworthy.", + "description": "Dad & husband ❤️. Revenue partnerships @snap. Ex @Twitter, @vidmob, co-founder @ SHIFT. Is this year the @nyknicks bring a title home?", "entities": { "description": { "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "WayneWarrington.com", - "expanded_url": "http://www.WayneWarrington.com", - "url": "https://t.co/0lmCNNn3Hq", - "indices": [ - 0, - 23 - ] - } - ] } }, "fast_followers_count": 0, - "favourites_count": 576, - "followers_count": 83, - "friends_count": 309, - "has_custom_timelines": false, + "favourites_count": 9989, + "followers_count": 1923, + "friends_count": 862, + "has_custom_timelines": true, "is_translator": false, - "listed_count": 0, - "location": "Planet Earth", - "media_count": 25, - "name": "Wayne Warrington Consumer Advocate", - "normal_followers_count": 83, + "listed_count": 93, + "location": "New York, USA", + "media_count": 308, + "name": "Greg Lieber", + "normal_followers_count": 1923, "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/38725577/1672250734", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1106242263372296193/tvjNrJgr_normal.png", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14801939/1685536222", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1618070789932064774/lj3nLnsB_normal.jpg", "profile_interstitial_type": "", - "screen_name": "waynewarrington", - "statuses_count": 418, + "screen_name": "greglieber", + "statuses_count": 3322, "translator_type": "none", - "url": "https://t.co/0lmCNNn3Hq", "verified": false, "want_retweets": false, "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1604531827888177152", - "professional_type": "Creator", - "category": [ - { - "id": 477, - "name": "Professional Services", - "icon_name": "IconBriefcaseStroke" - } - ] } } }, @@ -2401,8 +1559,8 @@ } }, { - "entryId": "user-1739782615849218048", - "sortIndex": "1739819621776621536", + "entryId": "user-597376383", + "sortIndex": "1756309168358162412", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -2412,8 +1570,8 @@ "user_results": { "result": { "__typename": "User", - "id": "VXNlcjoxNzM5NzgyNjE1ODQ5MjE4MDQ4", - "rest_id": "1739782615849218048", + "id": "VXNlcjo1OTczNzYzODM=", + "rest_id": "597376383", "affiliates_highlighted_label": {}, "has_graduated_access": false, "is_blue_verified": false, @@ -2421,9 +1579,9 @@ "legacy": { "can_dm": false, "can_media_tag": true, - "created_at": "Tue Dec 26 22:57:58 +0000 2023", + "created_at": "Sat Jun 02 10:37:07 +0000 2012", "default_profile": true, - "default_profile_image": false, + "default_profile_image": true, "description": "", "entities": { "description": { @@ -2431,288 +1589,22 @@ } }, "fast_followers_count": 0, - "favourites_count": 0, - "followers_count": 0, - "friends_count": 17, + "favourites_count": 9, + "followers_count": 3, + "friends_count": 23, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", - "media_count": 0, - "name": "Nixon O’connor", - "normal_followers_count": 0, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1739782645100244992/oVMVRmSn_normal.png", - "profile_interstitial_type": "", - "screen_name": "NixonOconn76796", - "statuses_count": 0, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1714070232497635328", - "sortIndex": "1739819621776621535", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzE0MDcwMjMyNDk3NjM1MzI4", - "rest_id": "1714070232497635328", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Tue Oct 17 00:11:14 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "Phycist by Gene, Philosopher in the making; Blender of duo subject (PHYSICS+PHILOSOPHY}, I too globally known as a creator of the subject PHIOPHY --Gyanesh kr", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ssciencegyan.blogspot.com", - "expanded_url": "http://www.ssciencegyan.blogspot.com", - "url": "https://t.co/0FIzgF3q0N", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 23, - "followers_count": 10, - "friends_count": 122, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "Birpur Bihar ", - "media_count": 55, - "name": "Gyanesh Kumar", - "normal_followers_count": 10, - "pinned_tweet_ids_str": [ - "1718267501090648536" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1714070232497635328/1699375251", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1734788856984301568/L10CHBey_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "GyaneshKum83663", - "statuses_count": 127, - "translator_type": "none", - "url": "https://t.co/0FIzgF3q0N", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1325865771315171328", - "sortIndex": "1739819621776621534", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMzI1ODY1NzcxMzE1MTcxMzI4", - "rest_id": "1325865771315171328", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Nov 09 18:20:20 +0000 2020", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 8200, - "followers_count": 222, - "friends_count": 4051, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1, - "location": "", "media_count": 2, - "name": "Kerolos Gergis", - "normal_followers_count": 222, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1325865771315171328/1700677267", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1727338080816758784/kcdGiE8r_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "GergisKerolos1", - "statuses_count": 201, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1443109647657938946", - "sortIndex": "1739819621776621533", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDQzMTA5NjQ3NjU3OTM4OTQ2", - "rest_id": "1443109647657938946", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Wed Sep 29 07:05:43 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Marinaio e appassionato di geopolitica", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 20, - "followers_count": 1, - "friends_count": 90, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 0, - "name": "Francesco Fabbri Rebecchi", - "normal_followers_count": 1, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1443348633299169286/xEHEI_j4_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "FrancoFabbriR", - "statuses_count": 2, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1079259032911777792", - "sortIndex": "1739819621776621532", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDc5MjU5MDMyOTExNzc3Nzky", - "rest_id": "1079259032911777792", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sun Dec 30 06:12:59 +0000 2018", - "default_profile": true, - "default_profile_image": true, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 7, - "followers_count": 1, - "friends_count": 370, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 1, - "name": "Arif Bilgin", - "normal_followers_count": 1, + "name": "ayiettah wycklife", + "normal_followers_count": 3, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "profile_interstitial_type": "", - "screen_name": "ArifBil49148472", - "statuses_count": 17, + "screen_name": "barbochy", + "statuses_count": 16, "translator_type": "none", "verified": false, "want_retweets": false, @@ -2729,8 +1621,8 @@ } }, { - "entryId": "user-1303411094", - "sortIndex": "1739819621776621531", + "entryId": "user-1748258336318087168", + "sortIndex": "1756309168358162411", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -2740,8 +1632,8 @@ "user_results": { "result": { "__typename": "User", - "id": "VXNlcjoxMzAzNDExMDk0", - "rest_id": "1303411094", + "id": "VXNlcjoxNzQ4MjU4MzM2MzE4MDg3MTY4", + "rest_id": "1748258336318087168", "affiliates_highlighted_label": {}, "has_graduated_access": true, "is_blue_verified": false, @@ -2750,74 +1642,7 @@ "protected": true, "can_dm": false, "can_media_tag": false, - "created_at": "Tue Mar 26 10:29:19 +0000 2013", - "default_profile": true, - "default_profile_image": false, - "description": "MGR", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 359, - "followers_count": 51, - "friends_count": 157, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 1, - "name": "G raja", - "normal_followers_count": 51, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1733857406453452800/FX21b6bh_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "A8MGRCBE", - "statuses_count": 80, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1488457817300561920", - "professional_type": "Creator", - "category": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1739743133733388288", - "sortIndex": "1739819621776621530", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzM5NzQzMTMzNzMzMzg4Mjg4", - "rest_id": "1739743133733388288", - "affiliates_highlighted_label": {}, - "has_graduated_access": false, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Dec 26 20:21:26 +0000 2023", + "created_at": "Fri Jan 19 08:17:35 +0000 2024", "default_profile": true, "default_profile_image": false, "description": "", @@ -2827,234 +1652,21 @@ } }, "fast_followers_count": 0, - "favourites_count": 0, - "followers_count": 1, - "friends_count": 15, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 0, - "name": "Sihab rana", - "normal_followers_count": 1, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1739743245436067840/CfMBEFci_normal.png", - "profile_interstitial_type": "", - "screen_name": "SihabRana18374", - "statuses_count": 0, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1697090742668152832", - "sortIndex": "1739819621776621529", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjk3MDkwNzQyNjY4MTUyODMy", - "rest_id": "1697090742668152832", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Thu Aug 31 03:35:44 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "🚀 kLara Software - Innovating for Tomorrow. Crafting user-centric software solutions to empower your business. 🌟 #kLaraSoftware", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "klarasoftware.com", - "expanded_url": "http://klarasoftware.com", - "url": "https://t.co/g47WSTMSw6", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 6, - "followers_count": 1101, - "friends_count": 21, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "İstanbul, Türkiye", - "media_count": 5, - "name": "kLara Software", - "normal_followers_count": 1101, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1697090742668152832/1703617591", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1739724384879685633/asOheKCf_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "kLaraSoftware", - "statuses_count": 12, - "translator_type": "none", - "url": "https://t.co/g47WSTMSw6", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1739721322953933159", - "professional_type": "Business", - "category": [ - { - "id": 715, - "name": "Software Company", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-3150280279", - "sortIndex": "1739819621776621528", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjozMTUwMjgwMjc5", - "rest_id": "3150280279", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "protected": true, - "can_dm": true, - "can_media_tag": false, - "created_at": "Sat Apr 11 19:06:11 +0000 2015", - "default_profile": true, - "default_profile_image": true, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 2447, - "followers_count": 178, - "friends_count": 4198, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 0, - "location": "Florida, USA", - "media_count": 0, - "name": "gerald schreur", - "normal_followers_count": 178, - "pinned_tweet_ids_str": [], - "possibly_sensitive": true, - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", - "profile_interstitial_type": "", - "screen_name": "gerryplusnine", - "statuses_count": 544, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1739734171721895936", - "sortIndex": "1739819621776621527", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzM5NzM0MTcxNzIxODk1OTM2", - "rest_id": "1739734171721895936", - "affiliates_highlighted_label": {}, - "has_graduated_access": false, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Dec 26 19:45:43 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "Children of Israel", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 0, + "favourites_count": 80, "followers_count": 0, - "friends_count": 13, + "friends_count": 25, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 0, - "name": "Zionist Africa", + "name": "武豊ファン", "normal_followers_count": 0, "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1739735529082507264/3d3c068b_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1748258391255126016/C36bUd2y_normal.jpg", "profile_interstitial_type": "", - "screen_name": "zionistAfrica", + "screen_name": "rUtLqstM1P27799", "statuses_count": 1, "translator_type": "none", "verified": false, @@ -3072,8 +1684,8 @@ } }, { - "entryId": "user-2828721038", - "sortIndex": "1739819621776621526", + "entryId": "user-1298608891488436227", + "sortIndex": "1756309168358162410", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -3083,1066 +1695,19 @@ "user_results": { "result": { "__typename": "User", - "id": "VXNlcjoyODI4NzIxMDM4", - "rest_id": "2828721038", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Sep 23 21:01:39 +0000 2014", - "default_profile": true, - "default_profile_image": false, - "description": "Software Developer", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 257, - "followers_count": 148, - "friends_count": 336, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 0, - "name": "Angel Turks", - "normal_followers_count": 148, - "pinned_tweet_ids_str": [ - "1600933986951647233" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2828721038/1692161870", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1691675551784718337/DOV81Hgf_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "AngelTurks17", - "statuses_count": 56, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-899709470661459968", - "sortIndex": "1739819621776621525", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo4OTk3MDk0NzA2NjE0NTk5Njg=", - "rest_id": "899709470661459968", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Aug 21 19:07:08 +0000 2017", - "default_profile": true, - "default_profile_image": false, - "description": "A Leader In Customized Cell Therapy & Research with a Focus On Alternative Methods Of Healing For Individuals Who Face Chronic Disorders.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bioxcellerator.com", - "expanded_url": "http://www.bioxcellerator.com", - "url": "https://t.co/VeQyIHNiIR", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 1324, - "followers_count": 2407, - "friends_count": 707, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5, - "location": "", - "media_count": 1351, - "name": "bioXcellerator", - "normal_followers_count": 2407, - "pinned_tweet_ids_str": [ - "1377365451592716294" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/899709470661459968/1674854531", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1619083363582615565/KPIEIWbt_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "bioXcellerator", - "statuses_count": 2552, - "translator_type": "none", - "url": "https://t.co/VeQyIHNiIR", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1592589206550740992", - "professional_type": "Business", - "category": [ - { - "id": 584, - "name": "Medical & Health", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1669990731635650560", - "sortIndex": "1739819621776621524", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjY5OTkwNzMxNjM1NjUwNTYw", - "rest_id": "1669990731635650560", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sat Jun 17 08:50:12 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "Defi Researcher | Community Manager | Degen | Ambassador @maringoapp", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 419, - "followers_count": 119, - "friends_count": 162, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 8, - "name": "BABABLUES💙", - "normal_followers_count": 119, - "pinned_tweet_ids_str": [ - "1697472822564598036" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1669990731635650560/1703559770", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1739479799234510848/fLUuOPMU_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Baba_Bluess", - "statuses_count": 313, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1699989128635396227", - "professional_type": "Creator", - "category": [ - { - "id": 1094, - "name": "Blockchain", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1739719810181652481", - "sortIndex": "1739819621776621523", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzM5NzE5ODEwMTgxNjUyNDgx", - "rest_id": "1739719810181652481", - "affiliates_highlighted_label": {}, - "has_graduated_access": false, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Dec 26 18:48:25 +0000 2023", - "default_profile": true, - "default_profile_image": true, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 3, - "followers_count": 0, - "friends_count": 4, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 0, - "name": "Hejwjejwjwjwjwjjw", - "normal_followers_count": 0, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", - "profile_interstitial_type": "", - "screen_name": "Hejwjejwjw63375", - "statuses_count": 0, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-348645806", - "sortIndex": "1739819621776621522", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjozNDg2NDU4MDY=", - "rest_id": "348645806", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Thu Aug 04 19:29:18 +0000 2011", - "default_profile": true, - "default_profile_image": false, - "description": "I am broadcast on blogtalkradio been do for almost 11 year", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 135, - "followers_count": 703, - "friends_count": 459, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 0, - "location": "Pittsburgh ", - "media_count": 0, - "name": "Andrew robs", - "normal_followers_count": 703, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1625559695481049106/0KDGxbFb_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "AndrewKwiatkows", - "statuses_count": 297, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1702924988695671245", - "professional_type": "Creator", - "category": [ - { - "id": 933, - "name": "Media Personality", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1654142673039572992", - "sortIndex": "1739819621776621521", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjU0MTQyNjczMDM5NTcyOTky", - "rest_id": "1654142673039572992", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Thu May 04 15:15:32 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "iSMP;\n24 años.\nChile.\nES/EN\nIngeniero en Telecomunicaciones, conectividad y redes.\nWeb Developer.\nhttps://t.co/MSLBKTLEHv", - "entities": { - "description": { - "urls": [ - { - "display_url": "linkedin.com/in/javiercarte…", - "expanded_url": "https://www.linkedin.com/in/javiercartesg/", - "url": "https://t.co/MSLBKTLEHv", - "indices": [ - 98, - 121 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 296, - "followers_count": 16, - "friends_count": 163, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "Chile", - "media_count": 9, - "name": "Javier Cartes dev", - "normal_followers_count": 16, - "pinned_tweet_ids_str": [ - "1661809664001015826" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1654142673039572992/1703304247", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1738410122810986498/4Vmiv5pe_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "_iSMP14", - "statuses_count": 179, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1661113509025816577", - "professional_type": "Creator", - "category": [ - { - "id": 1009, - "name": "Community", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1727181772994289664", - "sortIndex": "1739819621776621520", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzI3MTgxNzcyOTk0Mjg5NjY0", - "rest_id": "1727181772994289664", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "protected": true, - "can_dm": false, - "can_media_tag": false, - "created_at": "Wed Nov 22 04:27:11 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 0, - "followers_count": 0, - "friends_count": 9, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 0, - "name": "花果山吗喽", - "normal_followers_count": 0, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1727186633894838272/tUZ0_I49_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "lzyun118951", - "statuses_count": 0, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1006769773307465728", - "sortIndex": "1739819621776621519", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDA2NzY5NzczMzA3NDY1NzI4", - "rest_id": "1006769773307465728", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Wed Jun 13 05:26:33 +0000 2018", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 3203, - "followers_count": 122, - "friends_count": 995, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 7, - "location": "", - "media_count": 5, - "name": "Sanket Chakraborty", - "normal_followers_count": 122, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1382481642799955968/rmS8GvkE_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Sanky82001", - "statuses_count": 2494, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1351241822870364163", - "sortIndex": "1739819621776621518", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMzUxMjQxODIyODcwMzY0MTYz", - "rest_id": "1351241822870364163", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Mon Jan 18 18:55:42 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Steven McCabe; Farmer, hurling/football/NFL/Racing: Owner of a FIELD… MY FIELD https://t.co/rzvatlkJgU", - "entities": { - "description": { - "urls": [ - { - "display_url": "facebook.com/groups/2896388…", - "expanded_url": "https://www.facebook.com/groups/289638870730195/?ref=share_group_link", - "url": "https://t.co/rzvatlkJgU", - "indices": [ - 79, - 102 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/groups/2896388…", - "expanded_url": "https://www.facebook.com/groups/289638870730195/?ref=share_group_link", - "url": "https://t.co/rzvatlkJgU", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 4733, - "followers_count": 4631, - "friends_count": 2592, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 2, - "location": "Ireland", - "media_count": 1503, - "name": "THE BULL MCCABE", - "normal_followers_count": 4631, - "pinned_tweet_ids_str": [ - "1729461767015698730" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1351241822870364163/1698587364", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590065610691694592/Zr8rbG1X_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "TheBull_McCabe", - "statuses_count": 8582, - "translator_type": "none", - "url": "https://t.co/rzvatlkJgU", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1590394085675778048", - "professional_type": "Creator", - "category": [ - { - "id": 933, - "name": "Media Personality", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-968025461409267712", - "sortIndex": "1739819621776621517", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo5NjgwMjU0NjE0MDkyNjc3MTI=", - "rest_id": "968025461409267712", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Mon Feb 26 07:30:29 +0000 2018", - "default_profile": false, - "default_profile_image": false, - "description": "https://t.co/0Gq9Uq0moj", - "entities": { - "description": { - "urls": [ - { - "display_url": "link3.to/vominhloc_94", - "expanded_url": "https://link3.to/vominhloc_94", - "url": "https://t.co/0Gq9Uq0moj", - "indices": [ - 0, - 23 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "facebook.com/Voxminhloocj", - "expanded_url": "https://www.facebook.com/Voxminhloocj", - "url": "https://t.co/EIKzOXbr0x", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 31, - "followers_count": 5, - "friends_count": 75, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "Quảng Ngãi, Việt Nam", - "media_count": 6, - "name": "Vo Minh Loc", - "normal_followers_count": 5, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/968025461409267712/1528522137", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1005320552142131200/p2PQ_zex_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "V_M_Loc", - "statuses_count": 47, - "translator_type": "none", - "url": "https://t.co/EIKzOXbr0x", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1738555981100195949", - "professional_type": "Creator", - "category": [ - { - "id": 697, - "name": "Real Estate", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1739703126569955328", - "sortIndex": "1739819621776621516", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzM5NzAzMTI2NTY5OTU1MzI4", - "rest_id": "1739703126569955328", - "affiliates_highlighted_label": {}, - "has_graduated_access": false, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Dec 26 17:42:15 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "Managing a family-owned dairy farm producing top quality $MILK. Learn to farm to earn ♻️", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "solanafarming.com", - "expanded_url": "http://solanafarming.com", - "url": "https://t.co/FCPKJ2NeOo", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 0, - "followers_count": 0, - "friends_count": 1, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "Yield Farming", - "media_count": 1, - "name": "Dairy Farmer | YIELD MAXXING", - "normal_followers_count": 0, - "pinned_tweet_ids_str": [ - "1739768346311012377" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1739703126569955328/1703639374", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1739736375295971328/zRwFdMdn_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "DairyFarmerSOL", - "statuses_count": 1, - "translator_type": "none", - "url": "https://t.co/FCPKJ2NeOo", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1739766504399249659", - "professional_type": "Creator", - "category": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1725528792221863936", - "sortIndex": "1739819621776621515", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzI1NTI4NzkyMjIxODYzOTM2", - "rest_id": "1725528792221863936", - "affiliates_highlighted_label": {}, - "has_graduated_access": false, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Fri Nov 17 14:58:47 +0000 2023", - "default_profile": true, - "default_profile_image": true, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 24, - "followers_count": 1, - "friends_count": 18, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 0, - "name": "Alanna Todd", - "normal_followers_count": 1, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", - "profile_interstitial_type": "", - "screen_name": "ToddAlanna94748", - "statuses_count": 0, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-93719988", - "sortIndex": "1739819621776621514", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo5MzcxOTk4OA==", - "rest_id": "93719988", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Nov 30 22:03:26 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 1, - "followers_count": 727, - "friends_count": 36, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "Patillas,Puerto Rico", - "media_count": 0, - "name": "katherine", - "normal_followers_count": 727, - "pinned_tweet_ids_str": [ - "1735176641733665003" - ], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/553822075/hioiopyhjl_normal.JPG", - "profile_interstitial_type": "", - "screen_name": "katherineaixa", - "statuses_count": 12, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-997442287343988737", - "sortIndex": "1739819621776621513", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo5OTc0NDIyODczNDM5ODg3Mzc=", - "rest_id": "997442287343988737", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Fri May 18 11:42:27 +0000 2018", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 451, - "followers_count": 13, - "friends_count": 165, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 0, - "location": "Kathmandu ", - "media_count": 1, - "name": "Naresh Shrestha", - "normal_followers_count": 13, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1523464891046465538/P9woS4cK_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "NareshShrestha0", - "statuses_count": 4, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1513028644939075585", - "sortIndex": "1739819621776621512", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTEzMDI4NjQ0OTM5MDc1NTg1", - "rest_id": "1513028644939075585", + "id": "VXNlcjoxMjk4NjA4ODkxNDg4NDM2MjI3", + "rest_id": "1298608891488436227", "affiliates_highlighted_label": {}, "has_graduated_access": true, "is_blue_verified": true, "profile_image_shape": "Circle", "legacy": { "can_dm": true, - "can_media_tag": false, - "created_at": "Sun Apr 10 05:40:24 +0000 2022", + "can_media_tag": true, + "created_at": "Wed Aug 26 13:11:34 +0000 2020", "default_profile": true, "default_profile_image": false, - "description": "God's Physician-husband-father🇺🇸USA is God's country, freedom of speech! God bless Mr Musk&X. Member of X’s Community Notes!", + "description": "【収入源の増やし方教える人】40歳会社管理職|妻と5匹の保護猫が家族|人の目気にする弱虫サラリーマン→自信が持てる自分になりたい→副業開始2年でWEBコンサル、Twitter運用、物販で月6桁の収入源を構築|#eduGate 講師|どんなにいい商品スキルを持っていても思考の土台がなければ稼げない|学びたい人はフォロー", "entities": { "description": { "urls": [] @@ -4150,9 +1715,9 @@ "url": { "urls": [ { - "display_url": "kashmd.com", - "expanded_url": "http://kashmd.com", - "url": "https://t.co/rPPKcFwuCK", + "display_url": "bit.ly/37dDboM", + "expanded_url": "https://bit.ly/37dDboM", + "url": "https://t.co/LZBuMjV4um", "indices": [ 0, 23 @@ -4162,97 +1727,41 @@ } }, "fast_followers_count": 0, - "favourites_count": 7214, - "followers_count": 39600, - "friends_count": 632, + "favourites_count": 160586, + "followers_count": 2793, + "friends_count": 902, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2, - "location": "Irvine, CA", - "media_count": 61, - "name": "Khashayar Kash Sarabi MD ABAARM RPVI", - "normal_followers_count": 39600, + "listed_count": 0, + "location": "無料副業相談受付中→", + "media_count": 225, + "name": "つっちゃん|副業プランナー", + "normal_followers_count": 2793, "pinned_tweet_ids_str": [ - "1692309532264022441" + "1660390179142774784" ], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1513028644939075585/1677817960", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1723154068313612288/s5mPdukm_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1298608891488436227/1672498879", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1609203001373196290/LfjT7vBt_normal.jpg", "profile_interstitial_type": "", - "screen_name": "drsarabimd", - "statuses_count": 5745, + "screen_name": "tucchan0824", + "statuses_count": 64473, "translator_type": "none", - "url": "https://t.co/rPPKcFwuCK", + "url": "https://t.co/LZBuMjV4um", "verified": false, "want_retweets": false, "withheld_in_countries": [] }, "professional": { - "rest_id": "1651055331450167296", + "rest_id": "1469833208187736064", "professional_type": "Creator", - "category": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1717803066060410880", - "sortIndex": "1739819621776621511", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzE3ODAzMDY2MDYwNDEwODgw", - "rest_id": "1717803066060410880", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Fri Oct 27 07:19:22 +0000 2023", - "default_profile": true, - "default_profile_image": true, - "description": "", - "entities": { - "description": { - "urls": [] + "category": [ + { + "id": 934, + "name": "Social Media Influencer", + "icon_name": "IconBriefcaseStroke" } - }, - "fast_followers_count": 0, - "favourites_count": 63, - "followers_count": 17, - "friends_count": 93, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 0, - "name": "mvjidvqwpqbh", - "normal_followers_count": 17, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", - "profile_interstitial_type": "", - "screen_name": "mvjidvqwpq84737", - "statuses_count": 127, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] + ] } } }, @@ -4265,8 +1774,8 @@ } }, { - "entryId": "user-1324730476980957184", - "sortIndex": "1739819621776621510", + "entryId": "user-1736348125340557312", + "sortIndex": "1756309168358162409", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4276,106 +1785,42 @@ "user_results": { "result": { "__typename": "User", - "id": "VXNlcjoxMzI0NzMwNDc2OTgwOTU3MTg0", - "rest_id": "1324730476980957184", + "id": "VXNlcjoxNzM2MzQ4MTI1MzQwNTU3MzEy", + "rest_id": "1736348125340557312", "affiliates_highlighted_label": {}, - "has_graduated_access": true, + "has_graduated_access": false, "is_blue_verified": false, "profile_image_shape": "Circle", "legacy": { "can_dm": false, "can_media_tag": true, - "created_at": "Fri Nov 06 15:09:03 +0000 2020", + "created_at": "Sun Dec 17 11:30:31 +0000 2023", "default_profile": true, "default_profile_image": false, - "description": "Eastern European with too much spare time talking about random things.\nI hate the Antichrist!\n☦️🇧🇬🇯🇵🇷🇺", + "description": "#NFTMeetsCrypto Get the best deals on flipping #NFTs from the Tuczn Twilight NFT collection - now available in the cryptocurrency market! #CryptoCoins #medicai", "entities": { "description": { "urls": [] } }, "fast_followers_count": 0, - "favourites_count": 19048, - "followers_count": 79, - "friends_count": 594, - "has_custom_timelines": true, + "favourites_count": 35, + "followers_count": 20, + "friends_count": 31, + "has_custom_timelines": false, "is_translator": false, "listed_count": 1, - "location": "", - "media_count": 418, - "name": "Sophia Bot", - "normal_followers_count": 79, - "pinned_tweet_ids_str": [ - "1586511655667699715" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1324730476980957184/1643737556", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1332156096237203456/MLR3djU3_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Hisu011", - "statuses_count": 4071, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowersSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1739677372897464320", - "sortIndex": "1739819621776621509", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzM5Njc3MzcyODk3NDY0MzIw", - "rest_id": "1739677372897464320", - "affiliates_highlighted_label": {}, - "has_graduated_access": false, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Dec 26 16:00:06 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "Patriot!! 🇺🇸💙🤍❤️", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 12, - "followers_count": 5, - "friends_count": 67, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "Virginia", + "location": "Paraguay", "media_count": 0, - "name": "💜🐜 𝔴𝒾ⓔᒪ𝓀𝒶 Mย𝓢𝕜 🎈🌷", - "normal_followers_count": 5, + "name": "Arlina Jonatan", + "normal_followers_count": 20, "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1739679525305270272/yWMg9gXD_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1736348125340557312/1707569503", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1737624519211192320/19mOSXP9_normal.png", "profile_interstitial_type": "", - "screen_name": "WieKaLiMs", - "statuses_count": 2, + "screen_name": "ArlinaJ74720", + "statuses_count": 8, "translator_type": "none", "verified": false, "want_retweets": false, @@ -4392,8 +1837,8 @@ } }, { - "entryId": "user-424107526", - "sortIndex": "1739819621776621508", + "entryId": "user-1337090162870902785", + "sortIndex": "1756309168358162408", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4403,19 +1848,19 @@ "user_results": { "result": { "__typename": "User", - "id": "VXNlcjo0MjQxMDc1MjY=", - "rest_id": "424107526", + "id": "VXNlcjoxMzM3MDkwMTYyODcwOTAyNzg1", + "rest_id": "1337090162870902785", "affiliates_highlighted_label": {}, "has_graduated_access": true, "is_blue_verified": false, "profile_image_shape": "Circle", "legacy": { - "can_dm": true, + "can_dm": false, "can_media_tag": true, - "created_at": "Tue Nov 29 10:05:14 +0000 2011", - "default_profile": false, + "created_at": "Thu Dec 10 17:42:17 +0000 2020", + "default_profile": true, "default_profile_image": false, - "description": "عذرا تويتر فتغريدنا تغريد بشر لم يجد حرية الطير بعد", + "description": "I couldn't beat tech, so I joined it ... \n👨🏽‍💻 Software engineer in the making.", "entities": { "description": { "urls": [] @@ -4423,9 +1868,9 @@ "url": { "urls": [ { - "display_url": "ehosain.com", - "expanded_url": "https://ehosain.com", - "url": "https://t.co/V5JKSSotud", + "display_url": "hmzelidrissi.me", + "expanded_url": "http://hmzelidrissi.me", + "url": "https://t.co/aNNgJnMU01", "indices": [ 0, 23 @@ -4435,32 +1880,28 @@ } }, "fast_followers_count": 0, - "favourites_count": 2251, - "followers_count": 809, - "friends_count": 1481, - "has_custom_timelines": true, + "favourites_count": 22562, + "followers_count": 111, + "friends_count": 489, + "has_custom_timelines": false, "is_translator": false, - "listed_count": 3, - "location": "", - "media_count": 99, - "name": "حسين م.السلمي", - "normal_followers_count": 809, + "listed_count": 1, + "location": "127.0.0.1", + "media_count": 3, + "name": "Hamza 🦉", + "normal_followers_count": 111, "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1723020928160813056/uz5CHKGC_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1337090162870902785/1692151896", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1480127891962802181/-bUW8ADY_normal.jpg", "profile_interstitial_type": "", - "screen_name": "Hosain_Asslmy", - "statuses_count": 2874, + "screen_name": "HMZElidrissi", + "statuses_count": 64, "translator_type": "none", - "url": "https://t.co/V5JKSSotud", + "url": "https://t.co/aNNgJnMU01", "verified": false, "want_retweets": false, "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1467487570825297923", - "professional_type": "Creator", - "category": [] } } }, @@ -4473,8 +1914,8 @@ } }, { - "entryId": "user-1738277904306327552", - "sortIndex": "1739819621776621507", + "entryId": "user-1756297889477738496", + "sortIndex": "1756309168358162407", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4484,8 +1925,8 @@ "user_results": { "result": { "__typename": "User", - "id": "VXNlcjoxNzM4Mjc3OTA0MzA2MzI3NTUy", - "rest_id": "1738277904306327552", + "id": "VXNlcjoxNzU2Mjk3ODg5NDc3NzM4NDk2", + "rest_id": "1756297889477738496", "affiliates_highlighted_label": {}, "has_graduated_access": false, "is_blue_verified": false, @@ -4493,10 +1934,10 @@ "legacy": { "can_dm": false, "can_media_tag": true, - "created_at": "Fri Dec 22 19:19:07 +0000 2023", + "created_at": "Sat Feb 10 12:44:07 +0000 2024", "default_profile": true, "default_profile_image": false, - "description": "", + "description": "Rise up as high as you can!", "entities": { "description": { "urls": [] @@ -4505,26 +1946,36 @@ "fast_followers_count": 0, "favourites_count": 0, "followers_count": 0, - "friends_count": 27, + "friends_count": 2, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", - "media_count": 8, - "name": "myguido romani prado", + "media_count": 0, + "name": "Rising Way", "normal_followers_count": 0, - "pinned_tweet_ids_str": [ - "1739798599733501966" - ], + "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1738278008467734529/zEluDFNm_normal.png", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1756297889477738496/1707569321", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1756299139606892544/mcUmv-Ii_normal.jpg", "profile_interstitial_type": "", - "screen_name": "ifdrthen0010", - "statuses_count": 128, + "screen_name": "RisingWayMobile", + "statuses_count": 0, "translator_type": "none", "verified": false, "want_retweets": false, "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1756298904662917430", + "professional_type": "Creator", + "category": [ + { + "id": 1037, + "name": "Game Developer", + "icon_name": "IconBriefcaseStroke" + } + ] } } }, @@ -4537,8 +1988,8 @@ } }, { - "entryId": "user-353592402", - "sortIndex": "1739819621776621506", + "entryId": "user-1601069358335279105", + "sortIndex": "1756309168358162406", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4548,16 +1999,16 @@ "user_results": { "result": { "__typename": "User", - "id": "VXNlcjozNTM1OTI0MDI=", - "rest_id": "353592402", + "id": "VXNlcjoxNjAxMDY5MzU4MzM1Mjc5MTA1", + "rest_id": "1601069358335279105", "affiliates_highlighted_label": {}, "has_graduated_access": true, - "is_blue_verified": true, + "is_blue_verified": false, "profile_image_shape": "Circle", "legacy": { "can_dm": false, "can_media_tag": true, - "created_at": "Fri Aug 12 09:48:22 +0000 2011", + "created_at": "Fri Dec 09 04:21:14 +0000 2022", "default_profile": true, "default_profile_image": false, "description": "", @@ -4568,21 +2019,21 @@ }, "fast_followers_count": 0, "favourites_count": 2, - "followers_count": 722, - "friends_count": 10, + "followers_count": 0, + "friends_count": 20, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 0, - "name": "drake h.", - "normal_followers_count": 722, + "name": "camila campos santibañez", + "normal_followers_count": 0, "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1492487544/image_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1601069436991115265/XXEPE-t2_normal.jpg", "profile_interstitial_type": "", - "screen_name": "zendayafan25577", - "statuses_count": 7, + "screen_name": "camilacampossa", + "statuses_count": 0, "translator_type": "none", "verified": false, "want_retweets": false, @@ -4599,8 +2050,8 @@ } }, { - "entryId": "user-1727020130859651072", - "sortIndex": "1739819621776621505", + "entryId": "user-1749717435119493120", + "sortIndex": "1756309168358162405", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4610,29 +2061,418 @@ "user_results": { "result": { "__typename": "User", - "id": "VXNlcjoxNzI3MDIwMTMwODU5NjUxMDcy", - "rest_id": "1727020130859651072", + "id": "VXNlcjoxNzQ5NzE3NDM1MTE5NDkzMTIw", + "rest_id": "1749717435119493120", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Jan 23 08:55:37 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 3, + "followers_count": 2, + "friends_count": 8, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "Degenkusama", + "normal_followers_count": 2, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1756296414823686144/BgQsdORF_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "Akira0001110", + "statuses_count": 0, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1632256734160101379", + "sortIndex": "1756309168358162404", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjMyMjU2NzM0MTYwMTAxMzc5", + "rest_id": "1632256734160101379", "affiliates_highlighted_label": {}, "has_graduated_access": true, "is_blue_verified": false, "profile_image_shape": "Circle", "legacy": { "can_dm": false, - "can_media_tag": false, - "created_at": "Tue Nov 21 17:44:33 +0000 2023", + "can_media_tag": true, + "created_at": "Sun Mar 05 05:48:53 +0000 2023", "default_profile": true, "default_profile_image": false, - "description": "I’m a creator", + "description": "お店で使わなくなった呼び込み君を譲って下さい。壊れていても構いません。お気軽にDM下さい。 YouTuberやっています。「みやわた君 呼び込み君」と検索してください。チャンネル登録、高評価よろしく!", "entities": { "description": { "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 45, + "followers_count": 78, + "friends_count": 184, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 46, + "name": "みやわた君", + "normal_followers_count": 78, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1632256734160101379/1693053339", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1684917018573807616/BgSEUPcP_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "miyawata227", + "statuses_count": 332, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1325629206663884801", + "sortIndex": "1756309168358162403", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMzI1NjI5MjA2NjYzODg0ODAx", + "rest_id": "1325629206663884801", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Nov 09 02:40:17 +0000 2020", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 15, + "followers_count": 20, + "friends_count": 93, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 2, + "location": "", + "media_count": 0, + "name": "yuu", + "normal_followers_count": 20, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1325629206663884801/1627537086", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1420619620885569537/tYh2FgoY_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "yutaka06751819", + "statuses_count": 2, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-296688793", + "sortIndex": "1756309168358162402", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyOTY2ODg3OTM=", + "rest_id": "296688793", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed May 11 07:15:03 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "Love my family, music, design and marketing(@Doz_Designs), AI Tools(@TryThisTech), coffee, braais... Always marching on and excited about the future.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 405, + "followers_count": 468, + "friends_count": 1814, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 83, + "location": "South Africa, Pretoria", + "media_count": 66, + "name": "Dorian", + "normal_followers_count": 468, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/296688793/1451114651", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1043007668967727104/4qsfPLbj_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "Dorian_Eltze", + "statuses_count": 1213, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1729940414742904832", + "sortIndex": "1756309168358162401", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzI5OTQwNDE0NzQyOTA0ODMy", + "rest_id": "1729940414742904832", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "protected": true, + "can_dm": false, + "can_media_tag": false, + "created_at": "Wed Nov 29 19:08:37 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 3, + "followers_count": 246, + "friends_count": 9, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "KATYA", + "normal_followers_count": 246, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1729940414742904832/1704800183", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1744684535483117569/zOskb1xM_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "CatherinaI55930", + "statuses_count": 8, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1721636510531833856", + "sortIndex": "1756309168358162400", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzIxNjM2NTEwNTMxODMzODU2", + "rest_id": "1721636510531833856", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "protected": true, + "can_dm": false, + "can_media_tag": false, + "created_at": "Mon Nov 06 21:11:57 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 3, + "followers_count": 127, + "friends_count": 11, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "TUĞÇE", + "normal_followers_count": 127, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1721636510531833856/1705475825", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1747518384088956928/z0qT2JZd_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "SherleneCh26241", + "statuses_count": 9, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1735829669319004160", + "sortIndex": "1756309168358162399", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzM1ODI5NjY5MzE5MDA0MTYw", + "rest_id": "1735829669319004160", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Dec 16 01:10:20 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "MyBio is Ireland's premium supplier of research products, technology, and expertise. We're at the forefront of innovation https://t.co/SKau6XrgZy", + "entities": { + "description": { + "urls": [ + { + "display_url": "gmx.com", + "expanded_url": "https://gmx.com", + "url": "https://t.co/SKau6XrgZy", + "indices": [ + 122, + 145 + ] + } + ] }, "url": { "urls": [ { - "display_url": "youtube.com/@KeganRedford?…", - "expanded_url": "https://youtube.com/@KeganRedford?si=TbSCYchk3mzvGtwd", - "url": "https://t.co/EqVCaCaY75", + "display_url": "gmx.com", + "expanded_url": "https://gmx.com", + "url": "https://t.co/SKau6XrgZy", "indices": [ 0, 23 @@ -4642,36 +2482,36 @@ } }, "fast_followers_count": 0, - "favourites_count": 340, - "followers_count": 56, - "friends_count": 274, + "favourites_count": 8, + "followers_count": 2127, + "friends_count": 71, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, - "location": "Texas, USA", - "media_count": 5, - "name": "Kegan Redford", - "normal_followers_count": 56, + "location": "United State", + "media_count": 0, + "name": "Huong Phillips", + "normal_followers_count": 2127, "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1727020130859651072/1703354775", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1739412270436769792/UhZADiLJ_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1735829669319004160/1704603522", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1743859473641312257/TzO6S5Nu_normal.jpg", "profile_interstitial_type": "", - "screen_name": "KeganRedford", - "statuses_count": 57, + "screen_name": "HuongPhill_eth", + "statuses_count": 29, "translator_type": "none", - "url": "https://t.co/EqVCaCaY75", + "url": "https://t.co/SKau6XrgZy", "verified": false, "want_retweets": false, "withheld_in_countries": [] }, "professional": { - "rest_id": "1727044108122804548", + "rest_id": "1756276481745916319", "professional_type": "Creator", "category": [ { - "id": 1017, - "name": "Artist", + "id": 958, + "name": "Entrepreneur", "icon_name": "IconBriefcaseStroke" } ] @@ -4687,8 +2527,8 @@ } }, { - "entryId": "user-1688697214770565120", - "sortIndex": "1739819621776621504", + "entryId": "user-1573627082101374977", + "sortIndex": "1756309168358162398", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4698,41 +2538,42 @@ "user_results": { "result": { "__typename": "User", - "id": "VXNlcjoxNjg4Njk3MjE0NzcwNTY1MTIw", - "rest_id": "1688697214770565120", + "id": "VXNlcjoxNTczNjI3MDgyMTAxMzc0OTc3", + "rest_id": "1573627082101374977", "affiliates_highlighted_label": {}, "has_graduated_access": true, "is_blue_verified": false, "profile_image_shape": "Circle", "legacy": { - "can_dm": false, + "can_dm": true, "can_media_tag": true, - "created_at": "Mon Aug 07 23:42:53 +0000 2023", + "created_at": "Sat Sep 24 10:55:30 +0000 2022", "default_profile": true, "default_profile_image": false, - "description": "Muhammad Bello Aliyu by name Hausa/Fulani is my tribe and proudly Northerner", + "description": "", "entities": { "description": { "urls": [] } }, "fast_followers_count": 0, - "favourites_count": 122, - "followers_count": 6, - "friends_count": 95, - "has_custom_timelines": false, + "favourites_count": 8688, + "followers_count": 12, + "friends_count": 37, + "has_custom_timelines": true, "is_translator": false, "listed_count": 0, - "location": "Yabo, Nigeria", - "media_count": 3, - "name": "Bello Aliyu", - "normal_followers_count": 6, + "location": "", + "media_count": 7, + "name": "Sebastiao Junior", + "normal_followers_count": 12, "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1696678728091279360/Lc8pzKRm_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1573627082101374977/1690368653", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1704541023475572736/tyiaGj3k_normal.jpg", "profile_interstitial_type": "", - "screen_name": "BelloAliyuyabou", - "statuses_count": 63, + "screen_name": "SprjJR", + "statuses_count": 4824, "translator_type": "none", "verified": false, "want_retweets": false, @@ -4749,8 +2590,8 @@ } }, { - "entryId": "user-35021509", - "sortIndex": "1739819621776621503", + "entryId": "user-1753152527208452097", + "sortIndex": "1756309168358162397", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4760,50 +2601,1030 @@ "user_results": { "result": { "__typename": "User", - "id": "VXNlcjozNTAyMTUwOQ==", - "rest_id": "35021509", + "id": "VXNlcjoxNzUzMTUyNTI3MjA4NDUyMDk3", + "rest_id": "1753152527208452097", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Feb 01 20:25:26 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "Partimos la semana con un buen café y una exquisita barra de avellana ¿Ya la probaste?😉", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "saboressinculpa.cl", + "expanded_url": "https://saboressinculpa.cl/", + "url": "https://t.co/KARzd8oK41", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 22, + "followers_count": 1, + "friends_count": 16, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "Ñuñoa", + "media_count": 0, + "name": "Sabores Sin Culpa", + "normal_followers_count": 1, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1753152527208452097/1706819543", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1753152702614286336/cJTngf2X_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "saboressinculpa", + "statuses_count": 51, + "translator_type": "none", + "url": "https://t.co/KARzd8oK41", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1753140910253056000", + "sortIndex": "1756309168358162396", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzUzMTQwOTEwMjUzMDU2MDAw", + "rest_id": "1753140910253056000", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Feb 01 19:39:07 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "La temperatura perfecta todo el año 👍", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "airolite.cl", + "expanded_url": "https://airolite.cl", + "url": "https://t.co/FjUs6wiwco", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 24, + "followers_count": 6, + "friends_count": 16, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "Santiago", + "media_count": 0, + "name": "Airolite", + "normal_followers_count": 6, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1753140910253056000/1706816998", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1753141041387982848/fqPXBZOy_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "airolite_cl", + "statuses_count": 51, + "translator_type": "none", + "url": "https://t.co/FjUs6wiwco", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1751536392730013696", + "sortIndex": "1756309168358162395", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzUxNTM2MzkyNzMwMDEzNjk2", + "rest_id": "1751536392730013696", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Jan 28 09:23:22 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "Especializada em superesportivos e veículos exclusivos.\n🇧🇷 De Belo Horizonte para o Brasil.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "avantgarde.com.br", + "expanded_url": "https://avantgarde.com.br", + "url": "https://t.co/J89tNyM7qA", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 37, + "followers_count": 0, + "friends_count": 14, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "Santa Lucia, Brazil", + "media_count": 0, + "name": "AVANTGARDE", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1751536392730013696/1706434355", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1751537267527598080/7JIZFIZ9_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "AVANTGARDE_BR", + "statuses_count": 91, + "translator_type": "none", + "url": "https://t.co/J89tNyM7qA", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1752819341853147136", + "sortIndex": "1756309168358162394", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzUyODE5MzQxODUzMTQ3MTM2", + "rest_id": "1752819341853147136", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed Jan 31 22:21:18 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "✨Marca mexicana de joyería inspirada en la belleza natural de la mujer. Síguenos para las últimas tendencias en joyería✨", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "malandra.mx", + "expanded_url": "https://malandra.mx/", + "url": "https://t.co/1pwZDo4427", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 23, + "followers_count": 0, + "friends_count": 10, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "San Pedro Garza García", + "media_count": 0, + "name": "Malandra Jewelry", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1752819341853147136/1706740521", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1752819465647976448/4434WhVz_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "malandramexico", + "statuses_count": 58, + "translator_type": "none", + "url": "https://t.co/1pwZDo4427", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1752401231807721472", + "sortIndex": "1756309168358162393", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzUyNDAxMjMxODA3NzIxNDcy", + "rest_id": "1752401231807721472", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Jan 30 18:39:53 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "All of our burgers 🍔 are grilled to perfection and 100% Pure Beef!", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "sammies.biz", + "expanded_url": "https://sammies.biz", + "url": "https://t.co/OaazJi1QP9", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 26, + "followers_count": 13, + "friends_count": 11, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "Chicago", + "media_count": 0, + "name": "Sammie's Lake Villa", + "normal_followers_count": 13, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1752401231807721472/1706642034", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1752406950774439936/b5i6A944_normal.png", + "profile_interstitial_type": "", + "screen_name": "sammies_biz", + "statuses_count": 60, + "translator_type": "none", + "url": "https://t.co/OaazJi1QP9", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1211365112", + "sortIndex": "1756309168358162392", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMjExMzY1MTEy", + "rest_id": "1211365112", "affiliates_highlighted_label": {}, "has_graduated_access": true, "is_blue_verified": false, "profile_image_shape": "Circle", "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Fri Apr 24 19:57:38 +0000 2009", + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Feb 23 10:38:31 +0000 2013", + "default_profile": false, + "default_profile_image": false, + "description": "Building softwares and dreams ✨", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linktr.ee/winit18", + "expanded_url": "https://linktr.ee/winit18", + "url": "https://t.co/ug702T7zcw", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 578, + "followers_count": 30, + "friends_count": 172, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1, + "location": "New Delhi, India", + "media_count": 6, + "name": "Vinit SIngh", + "normal_followers_count": 30, + "pinned_tweet_ids_str": [ + "1354840189219217414" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1211365112/1624720717", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1408809089837113344/mBbzmoIK_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "__winit", + "statuses_count": 125, + "translator_type": "none", + "url": "https://t.co/ug702T7zcw", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1432375581128237058", + "sortIndex": "1756309168358162391", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDMyMzc1NTgxMTI4MjM3MDU4", + "rest_id": "1432375581128237058", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Aug 30 16:12:18 +0000 2021", "default_profile": true, "default_profile_image": false, - "description": "Venturer, investor, rich dad, poor dad, married to most amazing person who raised a rocket scientist and a data scientist.", + "description": "#AptosLaunch", "entities": { "description": { "urls": [] } }, "fast_followers_count": 0, - "favourites_count": 3016, - "followers_count": 170, - "friends_count": 837, - "has_custom_timelines": true, + "favourites_count": 87, + "followers_count": 15, + "friends_count": 78, + "has_custom_timelines": false, "is_translator": false, - "listed_count": 8, - "location": "Wellington, FL", - "media_count": 106, - "name": "Baden Wehmeyer", - "normal_followers_count": 170, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "Алексей Соколов", + "normal_followers_count": 15, "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/35021509/1650536875", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/686474134/IMG_0110_normal.JPG", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1586285515678093313/vS7n5Yzu_normal.jpg", "profile_interstitial_type": "", - "screen_name": "BadenW", - "statuses_count": 725, + "screen_name": "Qsiui0baRh8ygiy", + "statuses_count": 77, "translator_type": "none", "verified": false, "want_retweets": false, "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1751111291375390720", + "sortIndex": "1756309168358162390", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzUxMTExMjkxMzc1MzkwNzIw", + "rest_id": "1751111291375390720", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Jan 27 05:14:11 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 21, + "followers_count": 1, + "friends_count": 9, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "ต้องตา", + "normal_followers_count": 1, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1751111291375390720/1706333027", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1751113535852257280/Fa2I2TpQ_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "txngt3943514666", + "statuses_count": 18, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1753235208722325504", + "sortIndex": "1756309168358162389", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzUzMjM1MjA4NzIyMzI1NTA0", + "rest_id": "1753235208722325504", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Fri Feb 02 01:53:59 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 3, + "followers_count": 5, + "friends_count": 15, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "CyantGTP", + "normal_followers_count": 5, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1753235475954057216/pb3IdFfS_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "CyantGTP", + "statuses_count": 4, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1756258390110605312", + "sortIndex": "1756309168358162388", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzU2MjU4MzkwMTEwNjA1MzEy", + "rest_id": "1756258390110605312", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Feb 10 10:10:13 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 0, + "followers_count": 0, + "friends_count": 6, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "Maurice Lugalia", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1756259268775280640/yAfp0FEx_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "Lu801Lugalia", + "statuses_count": 0, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-2738322584", + "sortIndex": "1756309168358162387", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyNzM4MzIyNTg0", + "rest_id": "2738322584", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "protected": true, + "can_dm": false, + "can_media_tag": false, + "created_at": "Sat Aug 16 22:36:41 +0000 2014", + "default_profile": true, + "default_profile_image": false, + "description": "At 1st,i'm a gentleman ,2nd,I don't need anyone to follow me,thx.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 254, + "followers_count": 11, + "friends_count": 774, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 11, + "name": "Liszt.L", + "normal_followers_count": 11, + "pinned_tweet_ids_str": [ + "542346643849625601" + ], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/516837056660508673/cMS2-yHw_normal.jpeg", + "profile_interstitial_type": "", + "screen_name": "LisztL1", + "statuses_count": 44, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1739738603180179456", + "sortIndex": "1756309168358162386", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzM5NzM4NjAzMTgwMTc5NDU2", + "rest_id": "1739738603180179456", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Dec 26 20:03:24 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 0, + "followers_count": 0, + "friends_count": 6, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "Debasish Mondal", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1739738703566602240/EvtlVUVF_normal.png", + "profile_interstitial_type": "", + "screen_name": "DebasishMo98191", + "statuses_count": 0, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1486255896833695746", + "sortIndex": "1756309168358162385", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDg2MjU1ODk2ODMzNjk1NzQ2", + "rest_id": "1486255896833695746", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed Jan 26 08:33:26 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "China.20+", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 26228, + "followers_count": 18, + "friends_count": 427, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2, + "location": "", + "media_count": 0, + "name": "reader", + "normal_followers_count": 18, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1486255896833695746/1707247187", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1754948009555849216/7mCxSMcs_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "annual66767373", + "statuses_count": 64, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-69618467", + "sortIndex": "1756309168358162384", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo2OTYxODQ2Nw==", + "rest_id": "69618467", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Fri Aug 28 15:43:16 +0000 2009", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 1535, + "followers_count": 29, + "friends_count": 235, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 1, + "name": "Zunnoon", + "normal_followers_count": 29, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1522638012051509251/z20KQOBH_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ZunnoonFarooqui", + "statuses_count": 44, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-842229648247341056", + "sortIndex": "1756309168358162383", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NDIyMjk2NDgyNDczNDEwNTY=", + "rest_id": "842229648247341056", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Thu Mar 16 04:22:50 +0000 2017", + "default_profile": true, + "default_profile_image": false, + "description": "full stack web and software developer\nother interests - esports, politics, aviation, history, vid editing (lil bit)\nworkin on @ValoDex_", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "arunnya.com", + "expanded_url": "https://www.arunnya.com/", + "url": "https://t.co/DtUnoTmtZV", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 15245, + "followers_count": 42, + "friends_count": 1432, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1, + "location": "Bharat that is India 🇮🇳", + "media_count": 44, + "name": "arunnyaa", + "normal_followers_count": 42, + "pinned_tweet_ids_str": [ + "1716872416243384636" + ], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1737538012978839554/EKhiDdTh_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "its_arunnya", + "statuses_count": 1475, + "translator_type": "none", + "url": "https://t.co/DtUnoTmtZV", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] }, "professional": { - "rest_id": "1618952910284390400", - "professional_type": "Business", + "rest_id": "1577847063072870400", + "professional_type": "Creator", "category": [ { "id": 1055, @@ -4823,8 +3644,8 @@ } }, { - "entryId": "user-281436370", - "sortIndex": "1739819621776621502", + "entryId": "user-1692097974325895168", + "sortIndex": "1756309168358162382", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4834,29 +3655,39 @@ "user_results": { "result": { "__typename": "User", - "id": "VXNlcjoyODE0MzYzNzA=", - "rest_id": "281436370", + "id": "VXNlcjoxNjkyMDk3OTc0MzI1ODk1MTY4", + "rest_id": "1692097974325895168", "affiliates_highlighted_label": {}, "has_graduated_access": true, "is_blue_verified": false, "profile_image_shape": "Circle", "legacy": { - "can_dm": true, + "can_dm": false, "can_media_tag": true, - "created_at": "Wed Apr 13 08:47:21 +0000 2011", - "default_profile": false, + "created_at": "Thu Aug 17 08:56:22 +0000 2023", + "default_profile": true, "default_profile_image": false, - "description": "THE FORTUNE GOD 🔮 🤝: @Glownodefx | swing trading with E•T•S", + "description": "น้ำแดง แนะนำ โปรดี #โปรสล็อตทุนน้อย โปร #ฝาก1รับ100 , #ฝาก10รับ100 และ #ฝาก1รับ50\n\nทางนี้เลย : https://t.co/mLcqNPfn5O", "entities": { "description": { - "urls": [] + "urls": [ + { + "display_url": "bit.ly/3OZWvcs", + "expanded_url": "http://bit.ly/3OZWvcs", + "url": "https://t.co/mLcqNPfn5O", + "indices": [ + 95, + 118 + ] + } + ] }, "url": { "urls": [ { - "display_url": "t.me/fortunefinanci…", - "expanded_url": "https://t.me/fortunefinancierforum", - "url": "https://t.co/zvPwrS9VE9", + "display_url": "sora168.com", + "expanded_url": "http://sora168.com", + "url": "https://t.co/Ff1aqZS87m", "indices": [ 0, 23 @@ -4866,35 +3697,39 @@ } }, "fast_followers_count": 0, - "favourites_count": 20188, - "followers_count": 5810, - "friends_count": 313, - "has_custom_timelines": true, + "favourites_count": 730, + "followers_count": 1262, + "friends_count": 81, + "has_custom_timelines": false, "is_translator": false, - "listed_count": 5, - "location": "ImagiNATION", - "media_count": 917, - "name": "Fortune", - "normal_followers_count": 5810, - "pinned_tweet_ids_str": [ - "1705962424849842247" - ], + "listed_count": 0, + "location": "thailand", + "media_count": 44, + "name": "🍷น้ำแดง หวานมาก Proสล็อต มาแรง ฝาก 10 รับ 100", + "normal_followers_count": 1262, + "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/281436370/1703503540", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1739245331617849344/E-SIvLe7_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1692097974325895168/1692263138", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1692100353247117312/7QEnor2N_normal.jpg", "profile_interstitial_type": "", - "screen_name": "Forttunee", - "statuses_count": 11892, + "screen_name": "DaengNa85880", + "statuses_count": 117, "translator_type": "none", - "url": "https://t.co/zvPwrS9VE9", + "url": "https://t.co/Ff1aqZS87m", "verified": false, "want_retweets": false, "withheld_in_countries": [] }, "professional": { - "rest_id": "1680554511826288641", - "professional_type": "Creator", - "category": [] + "rest_id": "1692109442580644276", + "professional_type": "Business", + "category": [ + { + "id": 15, + "name": "Entertainment & Recreation", + "icon_name": "IconBriefcaseStroke" + } + ] } } }, @@ -4907,8 +3742,8 @@ } }, { - "entryId": "user-207529874", - "sortIndex": "1739819621776621501", + "entryId": "user-1488839543843442688", + "sortIndex": "1756309168358162381", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4918,8 +3753,8 @@ "user_results": { "result": { "__typename": "User", - "id": "VXNlcjoyMDc1Mjk4NzQ=", - "rest_id": "207529874", + "id": "VXNlcjoxNDg4ODM5NTQzODQzNDQyNjg4", + "rest_id": "1488839543843442688", "affiliates_highlighted_label": {}, "has_graduated_access": true, "is_blue_verified": false, @@ -4927,33 +3762,32 @@ "legacy": { "can_dm": false, "can_media_tag": true, - "created_at": "Mon Oct 25 14:14:12 +0000 2010", + "created_at": "Wed Feb 02 11:39:54 +0000 2022", "default_profile": true, - "default_profile_image": false, - "description": "Smart, funny and cool", + "default_profile_image": true, + "description": "gulu", "entities": { "description": { "urls": [] } }, "fast_followers_count": 0, - "favourites_count": 246, - "followers_count": 87, - "friends_count": 316, + "favourites_count": 66, + "followers_count": 0, + "friends_count": 49, "has_custom_timelines": false, "is_translator": false, - "listed_count": 0, - "location": "Lagos, Nigeria", - "media_count": 6, - "name": "Resonance Kuku", - "normal_followers_count": 87, + "listed_count": 1, + "location": "", + "media_count": 1, + "name": "gulu", + "normal_followers_count": 0, "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/207529874/1399708471", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1729710929817067520/YKAwYU05_normal.jpg", + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "profile_interstitial_type": "", - "screen_name": "haywhzl", - "statuses_count": 369, + "screen_name": "Gulu8183", + "statuses_count": 14, "translator_type": "none", "verified": false, "want_retweets": false, @@ -4970,8 +3804,8 @@ } }, { - "entryId": "user-1710456616653402112", - "sortIndex": "1739819621776621500", + "entryId": "user-191952768", + "sortIndex": "1756309168358162380", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4981,8 +3815,72 @@ "user_results": { "result": { "__typename": "User", - "id": "VXNlcjoxNzEwNDU2NjE2NjUzNDAyMTEy", - "rest_id": "1710456616653402112", + "id": "VXNlcjoxOTE5NTI3Njg=", + "rest_id": "191952768", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "protected": true, + "can_dm": true, + "can_media_tag": false, + "created_at": "Fri Sep 17 19:59:17 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 5189, + "followers_count": 8, + "friends_count": 161, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 31, + "name": "Sinxmartes", + "normal_followers_count": 8, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/191952768/1608398120", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1531662994626707457/4NS11MAl_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "Sinxmartes", + "statuses_count": 1229, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1708513082266316800", + "sortIndex": "1756309168358162379", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzA4NTEzMDgyMjY2MzE2ODAw", + "rest_id": "1708513082266316800", "affiliates_highlighted_label": {}, "has_graduated_access": true, "is_blue_verified": false, @@ -4990,7 +3888,69 @@ "legacy": { "can_dm": false, "can_media_tag": true, - "created_at": "Sat Oct 07 00:48:14 +0000 2023", + "created_at": "Sun Oct 01 16:04:38 +0000 2023", + "default_profile": true, + "default_profile_image": true, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 0, + "followers_count": 5, + "friends_count": 26, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "Thabang", + "normal_followers_count": 5, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", + "profile_interstitial_type": "", + "screen_name": "Thabang461866", + "statuses_count": 0, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1720620490081878016", + "sortIndex": "1756309168358162378", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzIwNjIwNDkwMDgxODc4MDE2", + "rest_id": "1720620490081878016", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Nov 04 01:54:47 +0000 2023", "default_profile": true, "default_profile_image": false, "description": "", @@ -5001,20 +3961,206 @@ }, "fast_followers_count": 0, "favourites_count": 0, - "followers_count": 1, - "friends_count": 43, + "followers_count": 0, + "friends_count": 6, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, - "location": "Granada, España", + "location": "", "media_count": 0, - "name": "monty", - "normal_followers_count": 1, + "name": "Lucy", + "normal_followers_count": 0, "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1711419775908204544/OefC9OV0_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1756049175207198723/nlSjUXWx_normal.jpg", "profile_interstitial_type": "", - "screen_name": "6czzgmmqskj", + "screen_name": "cosmoslucy99", + "statuses_count": 1, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1750888837927301120", + "sortIndex": "1756309168358162377", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzUwODg4ODM3OTI3MzAxMTIw", + "rest_id": "1750888837927301120", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Fri Jan 26 14:30:17 +0000 2024", + "default_profile": true, + "default_profile_image": true, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 0, + "followers_count": 2, + "friends_count": 3, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "Preethi Sundar", + "normal_followers_count": 2, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", + "profile_interstitial_type": "", + "screen_name": "PreethiSun62345", + "statuses_count": 0, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1756210022755782656", + "sortIndex": "1756309168358162376", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzU2MjEwMDIyNzU1NzgyNjU2", + "rest_id": "1756210022755782656", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Feb 10 06:55:17 +0000 2024", + "default_profile": true, + "default_profile_image": true, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 0, + "followers_count": 0, + "friends_count": 152, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "JoséSamuel AcevedoRamírez", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", + "profile_interstitial_type": "", + "screen_name": "JoseJun79", + "statuses_count": 0, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1713047128493203456", + "sortIndex": "1756309168358162375", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzEzMDQ3MTI4NDkzMjAzNDU2", + "rest_id": "1713047128493203456", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Oct 14 04:22:22 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 3, + "followers_count": 0, + "friends_count": 29, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "فقار", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713047573861150720/f5OFE9Ur_normal.png", + "profile_interstitial_type": "", + "screen_name": "fqr13823311", "statuses_count": 2, "translator_type": "none", "verified": false, @@ -5032,8 +4178,8 @@ } }, { - "entryId": "user-1710715040389816320", - "sortIndex": "1739819621776621499", + "entryId": "user-1033380004178972672", + "sortIndex": "1756309168358162374", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -5043,44 +4189,132 @@ "user_results": { "result": { "__typename": "User", - "id": "VXNlcjoxNzEwNzE1MDQwMzg5ODE2MzIw", - "rest_id": "1710715040389816320", + "id": "VXNlcjoxMDMzMzgwMDA0MTc4OTcyNjcy", + "rest_id": "1033380004178972672", "affiliates_highlighted_label": {}, "has_graduated_access": true, "is_blue_verified": false, "profile_image_shape": "Circle", "legacy": { - "can_dm": false, + "can_dm": true, "can_media_tag": true, - "created_at": "Sat Oct 07 17:53:56 +0000 2023", + "created_at": "Sat Aug 25 15:46:07 +0000 2018", + "default_profile": false, + "default_profile_image": false, + "description": "Singer/Songwriter/Producer. Independent Artist 💎. Bullish on web3 & NFTs. Trading,Investment,Analysis : @ivaaviweb3", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linktr.ee/ivaavimusic", + "expanded_url": "https://linktr.ee/ivaavimusic", + "url": "https://t.co/BexZeLeIYm", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 24223, + "followers_count": 1584, + "friends_count": 1874, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 18, + "location": "Open Metaverse", + "media_count": 1743, + "name": "Ivaavi.eth/tez", + "normal_followers_count": 1584, + "pinned_tweet_ids_str": [ + "1730570373517971778" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1033380004178972672/1701364886", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1748682489412145152/o-DK0EQA_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ivaavimusic", + "statuses_count": 17814, + "translator_type": "none", + "url": "https://t.co/BexZeLeIYm", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1468908557546389506", + "professional_type": "Creator", + "category": [ + { + "id": 940, + "name": "Musician", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1751620794462228480", + "sortIndex": "1756309168358162373", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzUxNjIwNzk0NDYyMjI4NDgw", + "rest_id": "1751620794462228480", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Jan 28 14:58:52 +0000 2024", "default_profile": true, "default_profile_image": false, - "description": "", + "description": "日本語/English", "entities": { "description": { "urls": [] } }, "fast_followers_count": 0, - "favourites_count": 49, - "followers_count": 1, - "friends_count": 1, + "favourites_count": 0, + "followers_count": 24, + "friends_count": 622, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, - "location": "", - "media_count": 3, - "name": "まほうしょうじょ", - "normal_followers_count": 1, - "pinned_tweet_ids_str": [ - "1710728969392361611" - ], + "location": "Saitama", + "media_count": 0, + "name": "J4DESPHERE", + "normal_followers_count": 24, + "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1710715040389816320/1696701552", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713112036195143680/Px8VfTz6_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1751620794462228480/1706539595", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1751621172398264320/wAMbzBfw_normal.jpg", "profile_interstitial_type": "", - "screen_name": "9beii__", - "statuses_count": 4, + "screen_name": "j4esphere", + "statuses_count": 1, "translator_type": "none", "verified": false, "want_retweets": false, @@ -5097,22 +4331,722 @@ } }, { - "entryId": "cursor-bottom-1739819621776621498", - "sortIndex": "1739819621776621498", + "entryId": "user-714836396792422402", + "sortIndex": "1756309168358162372", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo3MTQ4MzYzOTY3OTI0MjI0MDI=", + "rest_id": "714836396792422402", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Mar 29 15:27:32 +0000 2016", + "default_profile": true, + "default_profile_image": false, + "description": "Final year Btech Computer science| Full-Stack Developer | AI-ML enthusiast |DevOps Intern @ octobit8 | Gamer", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 55, + "followers_count": 37, + "friends_count": 69, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "India ", + "media_count": 12, + "name": "Khusheel Maskar", + "normal_followers_count": 37, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/714836396792422402/1702286848", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1752977116009058304/TQF7MQg-_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "phantom_2603", + "statuses_count": 40, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1731383877938327720", + "professional_type": "Creator", + "category": [ + { + "id": 1047, + "name": "Computer scientist", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1153911679727460352", + "sortIndex": "1756309168358162371", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMTUzOTExNjc5NzI3NDYwMzUy", + "rest_id": "1153911679727460352", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed Jul 24 06:15:57 +0000 2019", + "default_profile": true, + "default_profile_image": true, + "description": "https://t.co/x8sfAxVuMK personal manager", + "entities": { + "description": { + "urls": [ + { + "display_url": "b.com", + "expanded_url": "http://b.com", + "url": "https://t.co/x8sfAxVuMK", + "indices": [ + 0, + 23 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "sukla1998.com", + "expanded_url": "http://www.sukla1998.com", + "url": "https://t.co/r91ujQ4dIt", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 8, + "followers_count": 8, + "friends_count": 172, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "kolkata", + "media_count": 14, + "name": "malay kumar bhattacharya", + "normal_followers_count": 8, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", + "profile_interstitial_type": "", + "screen_name": "malaykumarbhat3", + "statuses_count": 112, + "translator_type": "none", + "url": "https://t.co/r91ujQ4dIt", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1741757755185324032", + "sortIndex": "1756309168358162370", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzQxNzU3NzU1MTg1MzI0MDMy", + "rest_id": "1741757755185324032", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Jan 01 09:48:09 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "It's time to break free and level up! 🔴", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 82, + "followers_count": 72, + "friends_count": 337, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "Moon", + "media_count": 6, + "name": "Alex", + "normal_followers_count": 72, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1741757755185324032/1704645476", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1755648469606227968/FpUhPFt8_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "Alex__Web3", + "statuses_count": 436, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1742913014515548305", + "professional_type": "Creator", + "category": [ + { + "id": 958, + "name": "Entrepreneur", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1756204833843879936", + "sortIndex": "1756309168358162369", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzU2MjA0ODMzODQzODc5OTM2", + "rest_id": "1756204833843879936", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Feb 10 06:34:24 +0000 2024", + "default_profile": true, + "default_profile_image": true, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 0, + "followers_count": 0, + "friends_count": 14, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "Jude Kim", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", + "profile_interstitial_type": "", + "screen_name": "JudeKim81035", + "statuses_count": 0, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-704525977", + "sortIndex": "1756309168358162368", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo3MDQ1MjU5Nzc=", + "rest_id": "704525977", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Thu Jul 19 06:50:50 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Director @evergreen\n\nChristian /Self made Entrepreneur/Digital Asset lnvestor/Engineer.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 44620, + "followers_count": 1904, + "friends_count": 4686, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 19, + "location": "Mutare,Zimbabwe ", + "media_count": 3, + "name": "Lazarus Kapesi", + "normal_followers_count": 1904, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/864438984641871873/Me8_Ialn_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "Lazhiero", + "statuses_count": 29321, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1083238924053446656", + "sortIndex": "1756309168358162367", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMDgzMjM4OTI0MDUzNDQ2NjU2", + "rest_id": "1083238924053446656", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Thu Jan 10 05:47:39 +0000 2019", + "default_profile": true, + "default_profile_image": false, + "description": "CSE👨‍💻", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 24952, + "followers_count": 236, + "friends_count": 465, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 0, + "location": "Bangalore ", + "media_count": 29, + "name": "$@|€€M", + "normal_followers_count": 236, + "pinned_tweet_ids_str": [ + "1479498484059312131" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1083238924053446656/1653363733", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1570468783499911168/mZdf7tu-_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "saleem_1771", + "statuses_count": 4840, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1536985048293212160", + "sortIndex": "1756309168358162366", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTM2OTg1MDQ4MjkzMjEyMTYw", + "rest_id": "1536985048293212160", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed Jun 15 08:13:08 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 0, + "followers_count": 0, + "friends_count": 18, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "Mudassir Halim", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1536985143843631104/yS3irbHc_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "MudassirHalim", + "statuses_count": 0, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1690518115342233601", + "sortIndex": "1756309168358162365", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjkwNTE4MTE1MzQyMjMzNjAx", + "rest_id": "1690518115342233601", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Aug 13 00:18:50 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 46, + "followers_count": 21, + "friends_count": 244, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 2, + "name": "Jawad Awara", + "normal_followers_count": 21, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1690518115342233601/1707547225", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1756205816997429248/HNaJvXOc_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "JKhosha70966", + "statuses_count": 10, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1735923909977903104", + "sortIndex": "1756309168358162364", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzM1OTIzOTA5OTc3OTAzMTA0", + "rest_id": "1735923909977903104", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Dec 16 07:25:19 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 0, + "followers_count": 0, + "friends_count": 18, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "Rabiu NOMA", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1735924223888044032/Mh_WRNeA_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "rabiunoma27", + "statuses_count": 2, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1746796460363145216", + "sortIndex": "1756309168358162363", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzQ2Nzk2NDYwMzYzMTQ1MjE2", + "rest_id": "1746796460363145216", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Jan 15 07:28:38 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "仕事×副業×勉強×趣味 ▪️データ分析 / PM / 生成系AI ▪️教育系 / Fitness系 アプリ開発(NoCode) ▪️言語(英語・ドイツ語・韓国語) ▪️筋トレ, ビール 人生【心躍る方へ】 もうすぐ24歳。 #仕事 #副業 #勉強 #資格 #語学 #ビール", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "instagram.com/bashiotto_00/", + "expanded_url": "https://www.instagram.com/bashiotto_00/", + "url": "https://t.co/Q980QjjHGt", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 111, + "followers_count": 9, + "friends_count": 37, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "japan", + "media_count": 1, + "name": "ばしおっと", + "normal_followers_count": 9, + "pinned_tweet_ids_str": [ + "1755045943085609133" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1746796460363145216/1705304036", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1746796519230156800/_ZPVwfYd_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "bashiotto_00", + "statuses_count": 13, + "translator_type": "none", + "url": "https://t.co/Q980QjjHGt", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1746798098427560102", + "professional_type": "Business", + "category": [ + { + "id": 958, + "name": "Entrepreneur", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowersSgs", + "element": "user" + } + } + }, + { + "entryId": "cursor-bottom-1756309168358162362", + "sortIndex": "1756309168358162362", "content": { "entryType": "TimelineTimelineCursor", "__typename": "TimelineTimelineCursor", - "value": "1786356831578193112|1739819621776621496", + "value": "1790490665181984721|1756309168358162360", "cursorType": "Bottom" } }, { - "entryId": "cursor-top-1739819621776621569", - "sortIndex": "1739819621776621569", + "entryId": "cursor-top-1756309168358162433", + "sortIndex": "1756309168358162433", "content": { "entryType": "TimelineTimelineCursor", "__typename": "TimelineTimelineCursor", - "value": "-1|1739819621776621569", + "value": "-1|1756309168358162433", "cursorType": "Top" } } diff --git a/tests/mocked-data/following_raw.json b/tests/mocked-data/raw_following.json similarity index 78% rename from tests/mocked-data/following_raw.json rename to tests/mocked-data/raw_following.json index a2c2633..d736d06 100644 --- a/tests/mocked-data/following_raw.json +++ b/tests/mocked-data/raw_following.json @@ -22,7 +22,7 @@ "entries": [ { "entryId": "user-236209129", - "sortIndex": "1739819627556372480", + "sortIndex": "1756309174033055744", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -51,16 +51,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 16318, - "followers_count": 129728, - "friends_count": 4011, + "favourites_count": 16287, + "followers_count": 129235, + "friends_count": 4003, "has_custom_timelines": true, "is_translator": false, - "listed_count": 971, + "listed_count": 977, "location": "", "media_count": 1213, "name": "Leslie Berland", - "normal_followers_count": 129728, + "normal_followers_count": 129235, "pinned_tweet_ids_str": [ "1615377744275070980" ], @@ -69,7 +69,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1106274854683074560/x7rrvxaD_normal.jpg", "profile_interstitial_type": "", "screen_name": "leslieberland", - "statuses_count": 11732, + "statuses_count": 11730, "translator_type": "regular", "verified": false, "want_retweets": false, @@ -87,7 +87,7 @@ }, { "entryId": "user-156417821", - "sortIndex": "1739819627556372479", + "sortIndex": "1756309174033055743", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -129,16 +129,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 12017, - "followers_count": 13729, - "friends_count": 1193, + "favourites_count": 11841, + "followers_count": 13871, + "friends_count": 1192, "has_custom_timelines": true, "is_translator": false, - "listed_count": 93, + "listed_count": 94, "location": "East Bay, CA", "media_count": 173, "name": "Mike Cvet", - "normal_followers_count": 13729, + "normal_followers_count": 13871, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/156417821/1465617789", @@ -164,7 +164,7 @@ }, { "entryId": "user-6844292", - "sortIndex": "1739819627556372478", + "sortIndex": "1756309174033055742", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -207,15 +207,15 @@ }, "fast_followers_count": 0, "favourites_count": 267, - "followers_count": 1325198, + "followers_count": 1323718, "friends_count": 12, "has_custom_timelines": true, "is_translator": false, - "listed_count": 4700, + "listed_count": 4716, "location": "San Francisco", "media_count": 63, "name": "Engineering", - "normal_followers_count": 1325198, + "normal_followers_count": 1323718, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6844292/1690213191", @@ -241,7 +241,7 @@ }, { "entryId": "user-176425492", - "sortIndex": "1739819627556372477", + "sortIndex": "1756309174033055741", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -283,25 +283,25 @@ } }, "fast_followers_count": 0, - "favourites_count": 30435, - "followers_count": 10569, - "friends_count": 5504, + "favourites_count": 30321, + "followers_count": 10576, + "friends_count": 5495, "has_custom_timelines": true, "is_translator": false, "listed_count": 71, "location": "nyc", - "media_count": 2172, + "media_count": 2175, "name": "Hamza", - "normal_followers_count": 10569, + "normal_followers_count": 10576, "pinned_tweet_ids_str": [ "1167249725751361537" ], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/176425492/1672989172", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1686532433779335168/Z7dhnUMr_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1745092473339129856/9I0wGN3i_normal.jpg", "profile_interstitial_type": "", "screen_name": "oihamza", - "statuses_count": 7034, + "statuses_count": 7039, "translator_type": "none", "url": "https://t.co/9Jd48LIalh", "verified": false, @@ -318,104 +318,9 @@ } } }, - { - "entryId": "user-857699969263964161", - "sortIndex": "1739819627556372476", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo4NTc2OTk5NjkyNjM5NjQxNjE=", - "rest_id": "857699969263964161", - "affiliates_highlighted_label": { - "label": { - "url": { - "url": "https://twitter.com/X", - "urlType": "DeepLink" - }, - "badge": { - "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" - }, - "description": "X", - "userLabelType": "BusinessLabel", - "userLabelDisplayType": "Badge" - } - }, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Thu Apr 27 20:56:22 +0000 2017", - "default_profile": true, - "default_profile_image": false, - "description": "Partner Engineering @XDevelopers @API Opinions my own. RTs != endorsements etc", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "developer.x.com", - "expanded_url": "https://developer.x.com", - "url": "https://t.co/Rh0kWC75HG", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 42, - "followers_count": 4528, - "friends_count": 1518, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 67, - "location": "San Francisco, CA", - "media_count": 125, - "name": "Suhem Parack", - "normal_followers_count": 4528, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/857699969263964161/1648699725", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1559172819514142720/LhoWOIYU_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "suhemparack", - "statuses_count": 1835, - "translator_type": "none", - "url": "https://t.co/Rh0kWC75HG", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1471588288142057479", - "professional_type": "Creator", - "category": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, { "entryId": "user-14897303", - "sortIndex": "1739819627556372475", + "sortIndex": "1756309174033055740", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -457,16 +362,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 26352, - "followers_count": 106892, - "friends_count": 2965, + "favourites_count": 26285, + "followers_count": 106817, + "friends_count": 2976, "has_custom_timelines": true, "is_translator": false, - "listed_count": 1273, + "listed_count": 1272, "location": "San Francisco", "media_count": 878, "name": "Kayvon Beykpour", - "normal_followers_count": 106892, + "normal_followers_count": 106817, "pinned_tweet_ids_str": [ "1626267128964988928" ], @@ -494,7 +399,7 @@ }, { "entryId": "user-28628425", - "sortIndex": "1739819627556372474", + "sortIndex": "1756309174033055739", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -523,16 +428,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 11997, - "followers_count": 1543, - "friends_count": 1023, + "favourites_count": 11959, + "followers_count": 1555, + "friends_count": 1022, "has_custom_timelines": true, "is_translator": false, "listed_count": 36, "location": "New York, NY", "media_count": 140, "name": "Sonya Penn", - "normal_followers_count": 1543, + "normal_followers_count": 1555, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/28628425/1396157856", @@ -557,7 +462,7 @@ }, { "entryId": "user-261034930", - "sortIndex": "1739819627556372473", + "sortIndex": "1756309174033055738", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -586,8 +491,8 @@ } }, "fast_followers_count": 0, - "favourites_count": 23022, - "followers_count": 2465, + "favourites_count": 22909, + "followers_count": 2774, "friends_count": 820, "has_custom_timelines": true, "is_translator": false, @@ -595,7 +500,7 @@ "location": "", "media_count": 1753, "name": "kiran paul", - "normal_followers_count": 2465, + "normal_followers_count": 2774, "pinned_tweet_ids_str": [ "1164249329848111104" ], @@ -604,7 +509,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000449279214/2063b4a1fe8c531799eb85ff8be2a0f0_normal.jpeg", "profile_interstitial_type": "", "screen_name": "kdspaul", - "statuses_count": 15479, + "statuses_count": 15483, "translator_type": "regular", "verified": false, "want_retweets": false, @@ -622,7 +527,7 @@ }, { "entryId": "user-49188317", - "sortIndex": "1739819627556372472", + "sortIndex": "1756309174033055737", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -664,16 +569,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 24366, - "followers_count": 4343, - "friends_count": 1824, + "favourites_count": 24085, + "followers_count": 4451, + "friends_count": 1818, "has_custom_timelines": true, "is_translator": false, - "listed_count": 47, + "listed_count": 49, "location": "127.0.0.1", "media_count": 2805, "name": "Seth Wilson", - "normal_followers_count": 4343, + "normal_followers_count": 4451, "pinned_tweet_ids_str": [ "1609361179205599233" ], @@ -682,7 +587,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1367523060551585797/r_YDF1jd_normal.jpg", "profile_interstitial_type": "", "screen_name": "srw", - "statuses_count": 11049, + "statuses_count": 11050, "translator_type": "regular", "url": "https://t.co/EOb50G8WRf", "verified": false, @@ -701,7 +606,7 @@ }, { "entryId": "user-17200003", - "sortIndex": "1739819627556372471", + "sortIndex": "1756309174033055736", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -753,16 +658,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 8651, - "followers_count": 1739, - "friends_count": 750, + "favourites_count": 8637, + "followers_count": 2184, + "friends_count": 748, "has_custom_timelines": true, "is_translator": false, - "listed_count": 47, + "listed_count": 49, "location": "MN ⇨ all over ⇨ CO", "media_count": 753, "name": "snowman in most places", - "normal_followers_count": 1739, + "normal_followers_count": 2184, "pinned_tweet_ids_str": [ "1649636455403393026" ], @@ -771,7 +676,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/697445972402540546/2CYK3PWX_normal.jpg", "profile_interstitial_type": "", "screen_name": "snowman", - "statuses_count": 4474, + "statuses_count": 4480, "translator_type": "regular", "url": "https://t.co/I1GjLuBxM2", "verified": false, @@ -795,7 +700,7 @@ }, { "entryId": "user-67501283", - "sortIndex": "1739819627556372470", + "sortIndex": "1756309174033055735", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -824,16 +729,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 5770, - "followers_count": 1740, - "friends_count": 1206, + "favourites_count": 5764, + "followers_count": 1788, + "friends_count": 1205, "has_custom_timelines": true, "is_translator": false, "listed_count": 83, "location": "Boulder CO", "media_count": 228, "name": "Cassie Stewart", - "normal_followers_count": 1740, + "normal_followers_count": 1788, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/67501283/1443802566", @@ -858,7 +763,7 @@ }, { "entryId": "user-21266829", - "sortIndex": "1739819627556372469", + "sortIndex": "1756309174033055734", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -880,30 +785,30 @@ "created_at": "Thu Feb 19 02:10:15 +0000 2009", "default_profile": false, "default_profile_image": false, - "description": "VP of Comms & Marketing @headlinevc // Former comms @Twitter 1.0 @PublicisGroupe Paris // Loves a good apéro", + "description": "Comms @OpenAI // Previously @headlinevc @Twitter 1.0 @PublicisGroupe Paris // Loves a good apéro", "entities": { "description": { "urls": [] } }, "fast_followers_count": 0, - "favourites_count": 28155, - "followers_count": 3250, - "friends_count": 2185, + "favourites_count": 28262, + "followers_count": 3591, + "friends_count": 2213, "has_custom_timelines": true, "is_translator": false, - "listed_count": 79, + "listed_count": 81, "location": "🇫🇷 🇺🇸", "media_count": 721, "name": "Lindsay McCallum Rémy", - "normal_followers_count": 3250, + "normal_followers_count": 3591, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/21266829/1656047587", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1306765504900669440/30BqQ7vy_normal.jpg", "profile_interstitial_type": "", "screen_name": "lindsmccallum", - "statuses_count": 7865, + "statuses_count": 7876, "translator_type": "none", "verified": false, "want_retweets": false, @@ -921,7 +826,7 @@ }, { "entryId": "user-2397965574", - "sortIndex": "1739819627556372468", + "sortIndex": "1756309174033055733", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -943,29 +848,29 @@ "created_at": "Wed Mar 19 14:31:48 +0000 2014", "default_profile": false, "default_profile_image": false, - "description": "", + "description": "Events @apple | Good at parties, hair & planned choreography 🤠🥂🌎💅🏻💫✨", "entities": { "description": { "urls": [] } }, "fast_followers_count": 0, - "favourites_count": 23466, - "followers_count": 3258, - "friends_count": 730, + "favourites_count": 23472, + "followers_count": 3409, + "friends_count": 721, "has_custom_timelines": true, "is_translator": false, "listed_count": 27, "location": "London", - "media_count": 2025, + "media_count": 2026, "name": "Rebecca", - "normal_followers_count": 3258, + "normal_followers_count": 3409, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1733460662011973632/VcYXdk_A_normal.jpg", "profile_interstitial_type": "", "screen_name": "RebeccaW", - "statuses_count": 11442, + "statuses_count": 11449, "translator_type": "regular", "verified": false, "want_retweets": false, @@ -983,7 +888,7 @@ }, { "entryId": "user-199566737", - "sortIndex": "1739819627556372467", + "sortIndex": "1756309174033055732", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1005,23 +910,23 @@ "created_at": "Thu Oct 07 05:36:28 +0000 2010", "default_profile": false, "default_profile_image": false, - "description": "💼 #devrel @gitcoin \n💼 #tpm @pgn_eth \n🪺 former @twitterdev \n🏔️ mtn man \n⛓️ lebraat.eth", + "description": "💼 #devrel #partnerships -- @gitcoinpassport\n🪺 former @twitter\n🏔️ mtn man", "entities": { "description": { "urls": [] } }, "fast_followers_count": 0, - "favourites_count": 1875, - "followers_count": 1117, - "friends_count": 708, + "favourites_count": 1933, + "followers_count": 1197, + "friends_count": 733, "has_custom_timelines": true, "is_translator": false, - "listed_count": 29, - "location": "Denver, CO", - "media_count": 352, - "name": "daniel", - "normal_followers_count": 1117, + "listed_count": 32, + "location": "colorado rockies", + "media_count": 357, + "name": "daniel || gitcoin", + "normal_followers_count": 1197, "pinned_tweet_ids_str": [ "1701988826397450497" ], @@ -1030,22 +935,11 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1488364224237682690/is5gX9I1_normal.jpg", "profile_interstitial_type": "", "screen_name": "lebraat", - "statuses_count": 2168, + "statuses_count": 2274, "translator_type": "regular", "verified": false, "want_retweets": false, "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1554924882370199556", - "professional_type": "Creator", - "category": [ - { - "id": 1009, - "name": "Community", - "icon_name": "IconBriefcaseStroke" - } - ] } } }, @@ -1059,7 +953,7 @@ }, { "entryId": "user-63046977", - "sortIndex": "1739819627556372466", + "sortIndex": "1756309174033055731", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1088,16 +982,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 8498, - "followers_count": 1249, - "friends_count": 2605, + "favourites_count": 8491, + "followers_count": 1262, + "friends_count": 2597, "has_custom_timelines": true, "is_translator": false, "listed_count": 35, "location": "Denver, CO", "media_count": 465, "name": "Emily Waligoske", - "normal_followers_count": 1249, + "normal_followers_count": 1262, "pinned_tweet_ids_str": [ "555569718271426560" ], @@ -1124,7 +1018,7 @@ }, { "entryId": "user-3070295959", - "sortIndex": "1739819627556372465", + "sortIndex": "1756309174033055730", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1153,23 +1047,23 @@ } }, "fast_followers_count": 0, - "favourites_count": 8331, - "followers_count": 859, - "friends_count": 558, + "favourites_count": 8318, + "followers_count": 860, + "friends_count": 555, "has_custom_timelines": true, "is_translator": false, "listed_count": 15, "location": "Boulder, CO | USA", "media_count": 210, "name": "Whitney Riker", - "normal_followers_count": 859, + "normal_followers_count": 860, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3070295959/1632720126", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1424449414295343109/rwWCSDCk_normal.jpg", "profile_interstitial_type": "", "screen_name": "whitneymriker", - "statuses_count": 1793, + "statuses_count": 1792, "translator_type": "regular", "verified": false, "want_retweets": false, @@ -1187,7 +1081,7 @@ }, { "entryId": "user-1353010477", - "sortIndex": "1739819627556372464", + "sortIndex": "1756309174033055729", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1229,16 +1123,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 12714, - "followers_count": 1465, - "friends_count": 961, + "favourites_count": 12656, + "followers_count": 1634, + "friends_count": 959, "has_custom_timelines": true, "is_translator": false, - "listed_count": 41, + "listed_count": 40, "location": "Colorado, USA", "media_count": 92, "name": "Andy Sayler", - "normal_followers_count": 1465, + "normal_followers_count": 1634, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/3522791474/1905a2baa7627be4a9bef011151c3df9_normal.png", @@ -1263,7 +1157,7 @@ }, { "entryId": "user-10671602", - "sortIndex": "1739819627556372463", + "sortIndex": "1756309174033055728", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1285,7 +1179,7 @@ "created_at": "Tue Nov 27 22:37:20 +0000 2007", "default_profile": false, "default_profile_image": false, - "description": "Official Twitter updates on PS5, PlayStation VR2, PlayStation Plus, PS4 and more. Support: @AskPlayStation", + "description": "Official Sony Interactive Entertainment account. Updates on PS5, PlayStation VR2, PlayStation Plus, PS4 and more. Support: @AskPlayStation", "entities": { "description": { "urls": [] @@ -1305,25 +1199,25 @@ } }, "fast_followers_count": 0, - "favourites_count": 1437, - "followers_count": 34428032, - "friends_count": 768, + "favourites_count": 1442, + "followers_count": 35336229, + "friends_count": 770, "has_custom_timelines": true, "is_translator": false, - "listed_count": 35332, + "listed_count": 35360, "location": "California", - "media_count": 24778, + "media_count": 24968, "name": "PlayStation", - "normal_followers_count": 34428032, + "normal_followers_count": 35336229, "pinned_tweet_ids_str": [ - "1725672964350448058" + "1755016328736358764" ], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10671602/1703073393", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10671602/1707384690", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1278183948279922690/ybnDHXn7_normal.jpg", "profile_interstitial_type": "", "screen_name": "PlayStation", - "statuses_count": 44615, + "statuses_count": 44836, "translator_type": "none", "url": "https://t.co/OrydDMkek8", "verified": false, @@ -1343,7 +1237,7 @@ }, { "entryId": "user-1720665183188922368", - "sortIndex": "1739819627556372462", + "sortIndex": "1756309174033055727", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1385,23 +1279,23 @@ } }, "fast_followers_count": 0, - "favourites_count": 31, - "followers_count": 297901, + "favourites_count": 32, + "followers_count": 318990, "friends_count": 2, "has_custom_timelines": false, "is_translator": false, - "listed_count": 810, + "listed_count": 898, "location": "", "media_count": 0, "name": "Grok", - "normal_followers_count": 297901, + "normal_followers_count": 318990, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1720665183188922368/1699593901", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1722068198005309440/sHT0mvER_normal.jpg", "profile_interstitial_type": "", "screen_name": "grok", - "statuses_count": 18, + "statuses_count": 20, "translator_type": "none", "verified": false, "verified_type": "Business", @@ -1420,7 +1314,7 @@ }, { "entryId": "user-548263294", - "sortIndex": "1739819627556372461", + "sortIndex": "1756309174033055726", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1462,25 +1356,25 @@ } }, "fast_followers_count": 0, - "favourites_count": 6125, - "followers_count": 551375, - "friends_count": 1392, + "favourites_count": 6841, + "followers_count": 554654, + "friends_count": 1427, "has_custom_timelines": false, "is_translator": false, - "listed_count": 0, + "listed_count": 1880, "location": "", - "media_count": 255, + "media_count": 262, "name": "Linda Yaccarino", - "normal_followers_count": 551375, + "normal_followers_count": 554654, "pinned_tweet_ids_str": [ - "1737627205608538568" + "1755746656329302155" ], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/548263294/1690308383", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1659561668945354755/c5dthMBt_normal.jpg", "profile_interstitial_type": "", "screen_name": "lindayaX", - "statuses_count": 1874, + "statuses_count": 2084, "translator_type": "none", "verified": false, "want_retweets": false, @@ -1498,7 +1392,7 @@ }, { "entryId": "user-1063564421581070337", - "sortIndex": "1739819627556372460", + "sortIndex": "1756309174033055725", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1527,16 +1421,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 1653, - "followers_count": 103, - "friends_count": 458, + "favourites_count": 1583, + "followers_count": 102, + "friends_count": 456, "has_custom_timelines": true, "is_translator": false, "listed_count": 2, "location": "", "media_count": 45, "name": "Akash Patel", - "normal_followers_count": 103, + "normal_followers_count": 102, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1094501322122907648/N-2vlzrO_normal.jpg", @@ -1560,7 +1454,7 @@ }, { "entryId": "user-2907774137", - "sortIndex": "1739819627556372459", + "sortIndex": "1756309174033055724", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1612,16 +1506,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 8913, - "followers_count": 2960968, + "favourites_count": 8886, + "followers_count": 2951390, "friends_count": 1, "has_custom_timelines": false, "is_translator": false, - "listed_count": 11551, + "listed_count": 11581, "location": "Meta", - "media_count": 404973, + "media_count": 406882, "name": "Archillect", - "normal_followers_count": 2960968, + "normal_followers_count": 2951390, "pinned_tweet_ids_str": [ "1360884467427115010" ], @@ -1630,7 +1524,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1045579977067024384/S0luKMwQ_normal.jpg", "profile_interstitial_type": "", "screen_name": "archillect", - "statuses_count": 422439, + "statuses_count": 424346, "translator_type": "none", "url": "https://t.co/l6SZrvMcZV", "verified": false, @@ -1649,7 +1543,7 @@ }, { "entryId": "user-96770474", - "sortIndex": "1739819627556372458", + "sortIndex": "1756309174033055723", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1691,16 +1585,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 42760, - "followers_count": 375676, - "friends_count": 1810, + "favourites_count": 42592, + "followers_count": 373726, + "friends_count": 1807, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2834, + "listed_count": 2823, "location": "Meta", "media_count": 1734, "name": "Pak", - "normal_followers_count": 375676, + "normal_followers_count": 373726, "pinned_tweet_ids_str": [ "516363882978619393" ], @@ -1709,7 +1603,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1499888704718000128/5yERu3hS_normal.jpg", "profile_interstitial_type": "", "screen_name": "muratpak", - "statuses_count": 23152, + "statuses_count": 23144, "translator_type": "regular", "url": "https://t.co/p66w7Qb4Cq", "verified": false, @@ -1728,7 +1622,7 @@ }, { "entryId": "user-752567226", - "sortIndex": "1739819627556372457", + "sortIndex": "1756309174033055722", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1767,25 +1661,25 @@ } }, "fast_followers_count": 0, - "favourites_count": 39370, - "followers_count": 264890, - "friends_count": 4015, + "favourites_count": 41321, + "followers_count": 271461, + "friends_count": 4109, "has_custom_timelines": true, "is_translator": false, - "listed_count": 1412, + "listed_count": 1470, "location": "X HQ", - "media_count": 3116, + "media_count": 3285, "name": "X News Daily", - "normal_followers_count": 264890, + "normal_followers_count": 271461, "pinned_tweet_ids_str": [ "1682849715862249472" ], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/752567226/1690399864", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/752567226/1704781546", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1515124606583152648/4bZaW28-_normal.jpg", "profile_interstitial_type": "", "screen_name": "xDaily", - "statuses_count": 11088, + "statuses_count": 11553, "translator_type": "none", "verified": false, "want_retweets": false, @@ -1815,7 +1709,7 @@ }, { "entryId": "user-16579934", - "sortIndex": "1739819627556372456", + "sortIndex": "1756309174033055721", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1857,16 +1751,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 12, - "followers_count": 30637, + "favourites_count": 13, + "followers_count": 31802, "friends_count": 7, "has_custom_timelines": false, "is_translator": false, - "listed_count": 729, + "listed_count": 745, "location": "Lake Tahoe, CA", - "media_count": 2, + "media_count": 3, "name": "Interstate 80 Tahoe", - "normal_followers_count": 30637, + "normal_followers_count": 31802, "pinned_tweet_ids_str": [ "1603638659667750912" ], @@ -1875,7 +1769,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1631885290372763648/-VC2iRtT_normal.jpg", "profile_interstitial_type": "", "screen_name": "i80chains", - "statuses_count": 10190, + "statuses_count": 10469, "translator_type": "none", "url": "https://t.co/Y2pUajS41f", "verified": false, @@ -1894,7 +1788,7 @@ }, { "entryId": "user-2688342211", - "sortIndex": "1739819627556372455", + "sortIndex": "1756309174033055720", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1922,14 +1816,14 @@ }, "has_graduated_access": true, "is_blue_verified": true, - "profile_image_shape": "Hexagon", + "profile_image_shape": "Circle", "legacy": { "can_dm": true, "can_media_tag": false, "created_at": "Mon Jul 28 20:36:33 +0000 2014", "default_profile": true, "default_profile_image": false, - "description": "Data / Product @ 𝕏 | Twitter 1.0 🔀 2.0 | Ex-Amazonian | Archer 🏹 (I share Archery tips) *All Opinions Are Mine*", + "description": "Product / Data @ 𝕏 | Twitter 1.0 🔀 2.0 | Ex-Amazonian | Archer 🏹 *All Opinions Are Mine*", "entities": { "description": { "urls": [] @@ -1949,25 +1843,25 @@ } }, "fast_followers_count": 0, - "favourites_count": 2407, - "followers_count": 1968, - "friends_count": 1665, + "favourites_count": 2570, + "followers_count": 2200, + "friends_count": 1711, "has_custom_timelines": true, "is_translator": false, - "listed_count": 52, + "listed_count": 55, "location": "Houston, TX", - "media_count": 116, + "media_count": 123, "name": "Ming", - "normal_followers_count": 1968, + "normal_followers_count": 2200, "pinned_tweet_ids_str": [ - "1727201728808751387" + "1746823163772559802" ], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2688342211/1644724198", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683327456818655233/3X2JUzBs_normal.png", "profile_interstitial_type": "", "screen_name": "MingSongEng", - "statuses_count": 550, + "statuses_count": 583, "translator_type": "none", "url": "https://t.co/ujdNYczkKp", "verified": false, @@ -1984,8 +1878,7 @@ "icon_name": "IconBriefcaseStroke" } ] - }, - "has_nft_avatar": true + } } }, "userDisplayType": "User" @@ -1998,7 +1891,7 @@ }, { "entryId": "user-472310616", - "sortIndex": "1739819627556372454", + "sortIndex": "1756309174033055719", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -2040,16 +1933,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 969, - "followers_count": 1479, - "friends_count": 555, + "favourites_count": 993, + "followers_count": 1640, + "friends_count": 556, "has_custom_timelines": true, "is_translator": false, - "listed_count": 36, + "listed_count": 39, "location": "San Francisco, CA", - "media_count": 37, + "media_count": 38, "name": "Peilin Yang", - "normal_followers_count": 1479, + "normal_followers_count": 1640, "pinned_tweet_ids_str": [ "1274975414729846784" ], @@ -2057,7 +1950,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/931613740272730112/fXnz-n_k_normal.jpg", "profile_interstitial_type": "", "screen_name": "PeilinYang", - "statuses_count": 473, + "statuses_count": 480, "translator_type": "regular", "verified": false, "want_retweets": false, @@ -2073,357 +1966,9 @@ } } }, - { - "entryId": "user-926663491", - "sortIndex": "1739819627556372453", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo5MjY2NjM0OTE=", - "rest_id": "926663491", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Mon Nov 05 02:19:00 +0000 2012", - "default_profile": false, - "default_profile_image": false, - "description": "Software engineer @google working on @crashlytics. Previously @Twitter & @GoldmanSachs. Author of @nasutils. Avid snowboarder and @Yankees fan. @RPI alum.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/MichaelDoyle", - "expanded_url": "http://github.com/MichaelDoyle", - "url": "https://t.co/Q0k6r5hDIG", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 5043, - "followers_count": 458, - "friends_count": 888, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 24, - "location": "West Concord, MA", - "media_count": 663, - "name": "Michael Doyle", - "normal_followers_count": 458, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/926663491/1671071791", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1603213851046051841/8O8nJNxh_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "mikeydoyle", - "statuses_count": 6306, - "translator_type": "regular", - "url": "https://t.co/Q0k6r5hDIG", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-902926941413453824", - "sortIndex": "1739819627556372452", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo5MDI5MjY5NDE0MTM0NTM4MjQ=", - "rest_id": "902926941413453824", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Wed Aug 30 16:12:13 +0000 2017", - "default_profile": false, - "default_profile_image": false, - "description": "@binance co-founder and former CEO, holder of #bnb #btc", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "binance.com", - "expanded_url": "http://www.binance.com", - "url": "https://t.co/zlvCSBIFGA", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 16639, - "followers_count": 8836383, - "friends_count": 1767, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 30694, - "location": "", - "media_count": 974, - "name": "CZ 🔶 BNB", - "normal_followers_count": 8836383, - "pinned_tweet_ids_str": [ - "1610018096122851328" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/902926941413453824/1597864552", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1680299608784744448/5oR3tZi5_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "cz_binance", - "statuses_count": 9381, - "translator_type": "none", - "url": "https://t.co/zlvCSBIFGA", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1545517037472153601", - "professional_type": "Creator", - "category": [ - { - "id": 713, - "name": "Science & Technology", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-5402612", - "sortIndex": "1739819627556372451", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo1NDAyNjEy", - "rest_id": "5402612", - "affiliates_highlighted_label": { - "label": { - "url": { - "url": "https://twitter.com/BBCNews", - "urlType": "DeepLink" - }, - "badge": { - "url": "https://pbs.twimg.com/profile_images/1529107486271225859/03qcVNIk_bigger.jpg" - }, - "description": "BBC News (UK)", - "userLabelType": "BusinessLabel", - "userLabelDisplayType": "Badge" - } - }, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sun Apr 22 14:42:37 +0000 2007", - "default_profile": false, - "default_profile_image": false, - "description": "Breaking news alerts and updates from the BBC. For news, features, analysis follow @BBCWorld (international) or @BBCNews (UK). Latest sport news @BBCSport.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bbc.co.uk/news", - "expanded_url": "http://www.bbc.co.uk/news", - "url": "https://t.co/A7Clxaz0fX", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 0, - "followers_count": 51765260, - "friends_count": 3, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 149284, - "location": "London, UK", - "media_count": 4513, - "name": "BBC Breaking News", - "normal_followers_count": 51765260, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/5402612/1663658724", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1150716997254209536/M7gkjsv5_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "BBCBreaking", - "statuses_count": 40001, - "translator_type": "none", - "url": "https://t.co/A7Clxaz0fX", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-103308100", - "sortIndex": "1739819627556372450", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDMzMDgxMDA=", - "rest_id": "103308100", - "affiliates_highlighted_label": { - "label": { - "url": { - "url": "https://twitter.com/X", - "urlType": "DeepLink" - }, - "badge": { - "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" - }, - "description": "X", - "userLabelType": "BusinessLabel", - "userLabelDisplayType": "Badge" - } - }, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Sat Jan 09 16:24:34 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "space pirate", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 2192, - "followers_count": 1889, - "friends_count": 1971, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 38, - "location": "London, England", - "media_count": 50, - "name": "jules", - "normal_followers_count": 1889, - "pinned_tweet_ids_str": [ - "1699699520618070380" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/103308100/1592590634", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1635345882915676176/QR7F5uVJ_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "iuliabaltoi", - "statuses_count": 450, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1455629879911849984", - "professional_type": "Creator", - "category": [ - { - "id": 557, - "name": "Magician", - "icon_name": "IconBriefcaseStroke" - } - ] - }, - "super_follow_eligible": true - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, { "entryId": "user-94129050", - "sortIndex": "1739819627556372449", + "sortIndex": "1756309174033055718", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -2475,25 +2020,25 @@ } }, "fast_followers_count": 0, - "favourites_count": 1168, - "followers_count": 1348059, - "friends_count": 228, + "favourites_count": 1255, + "followers_count": 1357736, + "friends_count": 236, "has_custom_timelines": false, "is_translator": false, - "listed_count": 3782, + "listed_count": 3799, "location": "New York Metro Region", - "media_count": 1557, + "media_count": 1579, "name": "MTA", - "normal_followers_count": 1348059, + "normal_followers_count": 1357736, "pinned_tweet_ids_str": [ - "1738288324618408128" + "1756018177861939329" ], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/94129050/1631547568", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1719712033816383488/j0y-LHI8_normal.jpg", "profile_interstitial_type": "", "screen_name": "MTA", - "statuses_count": 12178, + "statuses_count": 12255, "translator_type": "none", "url": "https://t.co/xjzXC6ZOwJ", "verified": false, @@ -2513,7 +2058,7 @@ }, { "entryId": "user-44196397", - "sortIndex": "1739819627556372448", + "sortIndex": "1756309174033055717", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -2555,23 +2100,25 @@ } }, "fast_followers_count": 0, - "favourites_count": 38530, - "followers_count": 167389190, - "friends_count": 509, + "favourites_count": 42036, + "followers_count": 172086113, + "friends_count": 536, "has_custom_timelines": true, "is_translator": false, - "listed_count": 149549, - "location": "𝕏Ð", - "media_count": 1917, + "listed_count": 147283, + "location": "", + "media_count": 1987, "name": "Elon Musk", - "normal_followers_count": 167389190, - "pinned_tweet_ids_str": [], + "normal_followers_count": 172086113, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", "profile_interstitial_type": "", "screen_name": "elonmusk", - "statuses_count": 35317, + "statuses_count": 37684, "translator_type": "none", "verified": false, "want_retweets": false, @@ -2593,641 +2140,9 @@ } } }, - { - "entryId": "user-4839528448", - "sortIndex": "1739819627556372447", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo0ODM5NTI4NDQ4", - "rest_id": "4839528448", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 23 19:14:25 +0000 2016", - "default_profile": true, - "default_profile_image": false, - "description": "The Official Bitcoin Core Feed (RT/Fav/Follow does not imply endorsement)", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "bitcoincore.org", - "expanded_url": "https://bitcoincore.org/", - "url": "https://t.co/IpuQblZjsu", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 54, - "followers_count": 165168, - "friends_count": 0, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 1881, - "location": "", - "media_count": 26, - "name": "Bitcoin Core Project", - "normal_followers_count": 165168, - "pinned_tweet_ids_str": [ - "1732373167790854586" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4839528448/1453582249", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/690997344960167940/WpD5FDxr_normal.png", - "profile_interstitial_type": "", - "screen_name": "bitcoincoreorg", - "statuses_count": 189, - "translator_type": "none", - "url": "https://t.co/IpuQblZjsu", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-25029451", - "sortIndex": "1739819627556372446", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNTAyOTQ1MQ==", - "rest_id": "25029451", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "protected": true, - "can_dm": false, - "can_media_tag": false, - "created_at": "Wed Mar 18 04:43:46 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "find me on Bluesky \"very fun and chill\" -- all my exes || writing stuff for tech | content strategist & UX writer ex @Microsoft @twitterdev and @google ||", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "yourmom.com", - "expanded_url": "http://www.yourmom.com", - "url": "https://t.co/dyFUKVI3id", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 133452, - "followers_count": 2791, - "friends_count": 858, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 68, - "location": "DC ➳ SF ➳ LA ➳ DC (again)", - "media_count": 3036, - "name": "punkaboo", - "normal_followers_count": 2791, - "pinned_tweet_ids_str": [ - "1473103445582356486" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/25029451/1560185551", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1693891796198432768/d9pNMNuq_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Punkaboo", - "statuses_count": 58373, - "translator_type": "none", - "url": "https://t.co/dyFUKVI3id", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-243665363", - "sortIndex": "1739819627556372445", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNDM2NjUzNjM=", - "rest_id": "243665363", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Thu Jan 27 15:10:03 +0000 2011", - "default_profile": false, - "default_profile_image": false, - "description": "Co-Founder & CEO of @WeSabio. 100% Committed to helping smart & highly motivated people become awesome Software Engineers!", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linktr.ee/sabioschool", - "expanded_url": "https://linktr.ee/sabioschool", - "url": "https://t.co/KoW5TCGA8Y", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 146476, - "followers_count": 4061, - "friends_count": 5001, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 481, - "location": "Earth", - "media_count": 4773, - "name": "Liliana Aidé Monge 🔥", - "normal_followers_count": 4061, - "pinned_tweet_ids_str": [ - "1657105679948349440" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/243665363/1652553421", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1525545582185570306/IjQwbLhY_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "mongeliliana", - "statuses_count": 143911, - "translator_type": "none", - "url": "https://t.co/KoW5TCGA8Y", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-273830767", - "sortIndex": "1739819627556372444", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNzM4MzA3Njc=", - "rest_id": "273830767", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Tue Mar 29 07:34:07 +0000 2011", - "default_profile": false, - "default_profile_image": false, - "description": "Dad of 3 adorable imps. Head of Twitter's Content Partnerships in JAPAC. Formerly of @NBC, @Fox, @SonyPictures. Forever a third culture kid.", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 1751, - "followers_count": 709, - "friends_count": 926, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 10, - "location": "", - "media_count": 185, - "name": " 🄿🅄🅂🄷 ", - "normal_followers_count": 709, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/273830767/1542006196", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1468999483144826882/Kk_mPlrm_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "rahuligun", - "statuses_count": 805, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-3007236186", - "sortIndex": "1739819627556372443", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjozMDA3MjM2MTg2", - "rest_id": "3007236186", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sun Feb 01 23:19:06 +0000 2015", - "default_profile": false, - "default_profile_image": false, - "description": "Engineer @stripe, previously @Twitter, @CarnegieMellon", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 2887, - "followers_count": 385, - "friends_count": 424, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 4, - "location": "San Francisco, CA", - "media_count": 117, - "name": "Si", - "normal_followers_count": 385, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3007236186/1461305719", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1210425670473584641/1iTmxAUJ_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Si_ximujin", - "statuses_count": 595, - "translator_type": "regular", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-838824636158627840", - "sortIndex": "1739819627556372442", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo4Mzg4MjQ2MzYxNTg2Mjc4NDA=", - "rest_id": "838824636158627840", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Mon Mar 06 18:52:32 +0000 2017", - "default_profile": false, - "default_profile_image": false, - "description": "meme (she/her) formerly @twitter", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 5180, - "followers_count": 848, - "friends_count": 1072, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 3, - "location": "", - "media_count": 337, - "name": "mimi", - "normal_followers_count": 848, - "pinned_tweet_ids_str": [ - "1511517599175098369" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/838824636158627840/1657682858", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1646296786481315843/fb3zQ9Ua_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "FindingMeeemo", - "statuses_count": 1604, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-2997635012", - "sortIndex": "1739819627556372441", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyOTk3NjM1MDEy", - "rest_id": "2997635012", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Tue Jan 27 00:12:38 +0000 2015", - "default_profile": false, - "default_profile_image": false, - "description": "Banking & Point-of-Sale Partnerships @ Square 🏦 ⬜️ | Previously @Twitter 💾🤝 & @FactSet 👨🏻‍💻📈 | Proud Husband and Father 👨‍👩‍👧‍👦", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 80811, - "followers_count": 2111, - "friends_count": 938, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 79, - "location": "New York", - "media_count": 939, - "name": "Jared Podnos", - "normal_followers_count": 2111, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2997635012/1536323832", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1654432590831419394/0qeYcLOn_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "jpodnos", - "statuses_count": 4490, - "translator_type": "regular", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1445087035052658693", - "professional_type": "Creator", - "category": [ - { - "id": 958, - "name": "Entrepreneur", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1596449330", - "sortIndex": "1739819627556372440", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTk2NDQ5MzMw", - "rest_id": "1596449330", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "protected": true, - "can_dm": true, - "can_media_tag": false, - "created_at": "Mon Jul 15 18:18:17 +0000 2013", - "default_profile": true, - "default_profile_image": false, - "description": "Probably eating something...🤤 🍔🍕🍗🍣🍜", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 2842, - "followers_count": 260, - "friends_count": 914, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 3, - "location": "Denver/Boulder", - "media_count": 65, - "name": "Michael Horan", - "normal_followers_count": 260, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1596449330/1500403221", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/986703169827647488/aNCsdzj-_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "HoranMikeS", - "statuses_count": 454, - "translator_type": "regular", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-22178537", - "sortIndex": "1739819627556372439", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyMjE3ODUzNw==", - "rest_id": "22178537", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Fri Feb 27 19:30:52 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Ex Head of Growth Partnerships @Twitter. Dad to 2 amazing boys and husband to @gkm7410. Fan of @Giants, @Yankees, #IPA's and #NorthFork summers.", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 35488, - "followers_count": 967, - "friends_count": 1932, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 11, - "location": "", - "media_count": 355, - "name": "Eric Martin 👍🏼", - "normal_followers_count": 967, - "pinned_tweet_ids_str": [ - "1112118360697987073" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/22178537/1540162706", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1529275460722511872/lq3dHz4s_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "ericmartinyc", - "statuses_count": 2068, - "translator_type": "regular", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, { "entryId": "user-853388192", - "sortIndex": "1739819627556372438", + "sortIndex": "1756309174033055716", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -3257,35 +2172,38 @@ "is_blue_verified": true, "profile_image_shape": "Circle", "legacy": { + "protected": true, "can_dm": false, - "can_media_tag": true, + "can_media_tag": false, "created_at": "Sat Sep 29 18:38:49 +0000 2012", "default_profile": true, "default_profile_image": false, - "description": "@XDevelopers", + "description": "", "entities": { "description": { "urls": [] } }, "fast_followers_count": 0, - "favourites_count": 14240, - "followers_count": 3176, + "favourites_count": 13586, + "followers_count": 3183, "friends_count": 1340, "has_custom_timelines": true, "is_translator": false, - "listed_count": 44, - "location": "Islington, London", - "media_count": 1434, - "name": "Haim Vaturi", - "normal_followers_count": 3176, - "pinned_tweet_ids_str": [], + "listed_count": 45, + "location": "", + "media_count": 1181, + "name": "H", + "normal_followers_count": 3183, + "pinned_tweet_ids_str": [ + "1712921631398445349" + ], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/853388192/1519120057", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1071034503173431296/W0Djhw-s_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/853388192/1705612879", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1748364449746960384/NaAcgaYV_normal.jpg", "profile_interstitial_type": "", - "screen_name": "haimvat", - "statuses_count": 8423, + "screen_name": "bageliedad", + "statuses_count": 7947, "translator_type": "regular", "verified": false, "want_retweets": false, @@ -3303,7 +2221,7 @@ }, { "entryId": "user-49936717", - "sortIndex": "1739819627556372437", + "sortIndex": "1756309174033055715", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -3315,20 +2233,7 @@ "__typename": "User", "id": "VXNlcjo0OTkzNjcxNw==", "rest_id": "49936717", - "affiliates_highlighted_label": { - "label": { - "url": { - "url": "https://twitter.com/X", - "urlType": "DeepLink" - }, - "badge": { - "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" - }, - "description": "X", - "userLabelType": "BusinessLabel", - "userLabelDisplayType": "Badge" - } - }, + "affiliates_highlighted_label": {}, "has_graduated_access": true, "is_blue_verified": true, "profile_image_shape": "Circle", @@ -3347,7 +2252,7 @@ }, "fast_followers_count": 0, "favourites_count": 642, - "followers_count": 391, + "followers_count": 389, "friends_count": 290, "has_custom_timelines": true, "is_translator": false, @@ -3355,14 +2260,14 @@ "location": "California, USA", "media_count": 53, "name": "Vince K. Sam", - "normal_followers_count": 391, + "normal_followers_count": 389, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/49936717/1582484923", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1586911343445098496/GHdkQgDw_normal.jpg", "profile_interstitial_type": "", "screen_name": "vincethecoder", - "statuses_count": 426, + "statuses_count": 424, "translator_type": "none", "verified": false, "want_retweets": false, @@ -3380,7 +2285,7 @@ }, { "entryId": "user-1171940098687950848", - "sortIndex": "1739819627556372436", + "sortIndex": "1756309174033055714", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -3423,7 +2328,7 @@ }, "fast_followers_count": 0, "favourites_count": 23, - "followers_count": 65, + "followers_count": 69, "friends_count": 24, "has_custom_timelines": false, "is_translator": false, @@ -3431,7 +2336,7 @@ "location": "Colorado, USA", "media_count": 96, "name": "#PartnerCup ⛳🏌️‍♀️🏌️‍♂️", - "normal_followers_count": 65, + "normal_followers_count": 69, "pinned_tweet_ids_str": [ "1178713579148607488" ], @@ -3457,359 +2362,9 @@ } } }, - { - "entryId": "user-137535997", - "sortIndex": "1739819627556372435", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMzc1MzU5OTc=", - "rest_id": "137535997", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Tue Apr 27 01:24:48 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "sunburner account.", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 35683, - "followers_count": 366, - "friends_count": 729, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 17, - "name": "sunscreenpapi", - "normal_followers_count": 366, - "pinned_tweet_ids_str": [ - "212631185216638977" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/137535997/1604779339", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1203824659952590848/mc-BRtKE_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "sunscreenpapi", - "statuses_count": 118, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-15824980", - "sortIndex": "1739819627556372434", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTgyNDk4MA==", - "rest_id": "15824980", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Tue Aug 12 17:12:38 +0000 2008", - "default_profile": false, - "default_profile_image": false, - "description": "¯\\_(ツ)_/¯ #ENIS #Tunisia #LocalGuides #BuildforSDG #Scandium", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "khammami.tn", - "expanded_url": "https://www.khammami.tn/", - "url": "https://t.co/yXrWRzjCLb", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 1044, - "followers_count": 390, - "friends_count": 407, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 30, - "location": "Tunisia 🌎", - "media_count": 362, - "name": "Khalil Hammami", - "normal_followers_count": 390, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15824980/1687256088", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/523970885351636993/kdOcymPE_normal.jpeg", - "profile_interstitial_type": "", - "screen_name": "khammami", - "statuses_count": 2934, - "translator_type": "regular", - "url": "https://t.co/yXrWRzjCLb", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-61467706", - "sortIndex": "1739819627556372433", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo2MTQ2NzcwNg==", - "rest_id": "61467706", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Thu Jul 30 11:55:18 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Eugenia Burchi. \nHead of Product @Blogmeter, @wireditalia contributor. \nLibri adulti, libri piccini, fumetti, femminismo, giochi da tavolo.\nPigrissima.", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 12102, - "followers_count": 1116, - "friends_count": 590, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 39, - "location": "", - "media_count": 904, - "name": "miss mixtape", - "normal_followers_count": 1116, - "pinned_tweet_ids_str": [ - "1338428753345736704" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/61467706/1547461903", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1104375309061840897/nOTUAOM7_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "miss_mixtape", - "statuses_count": 10006, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-211637915", - "sortIndex": "1739819627556372432", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyMTE2Mzc5MTU=", - "rest_id": "211637915", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "protected": true, - "can_dm": true, - "can_media_tag": false, - "created_at": "Wed Nov 03 20:45:18 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Latina l PhD candidate @UMass | @AU_SPA ‘17, @mtholyoke ‘12 alum | Climate Change, Nonprofits, Public Policy & Media | RT ≠ end", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 37381, - "followers_count": 213, - "friends_count": 321, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 4, - "location": "617", - "media_count": 0, - "name": "Maria", - "normal_followers_count": 213, - "pinned_tweet_ids_str": [], - "possibly_sensitive": true, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/211637915/1618926255", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1423693675012444166/BKJcgSFh_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "imaria20_", - "statuses_count": 6, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1484826829", - "sortIndex": "1739819627556372431", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDg0ODI2ODI5", - "rest_id": "1484826829", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed Jun 05 11:42:41 +0000 2013", - "default_profile": true, - "default_profile_image": false, - "description": "Chord substitutions, interesting views and omotuo. A slightly used WebApps developer", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "github.com/TwumJnr", - "expanded_url": "https://github.com/TwumJnr", - "url": "https://t.co/y5Go7gs1kx", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 1617, - "followers_count": 133, - "friends_count": 308, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 0, - "location": "Pokuase", - "media_count": 317, - "name": "slightly used dev", - "normal_followers_count": 133, - "pinned_tweet_ids_str": [ - "1080527339283460096" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1484826829/1523981022", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1308814371628425217/qULPbSEn_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "twum_jnr", - "statuses_count": 3383, - "translator_type": "none", - "url": "https://t.co/y5Go7gs1kx", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, { "entryId": "user-75263523", - "sortIndex": "1739819627556372430", + "sortIndex": "1756309174033055713", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -3851,23 +2406,23 @@ } }, "fast_followers_count": 0, - "favourites_count": 23608, - "followers_count": 39502, - "friends_count": 16833, + "favourites_count": 23579, + "followers_count": 39488, + "friends_count": 16815, "has_custom_timelines": true, "is_translator": false, - "listed_count": 0, + "listed_count": 1877, "location": "Global", - "media_count": 20340, + "media_count": 20376, "name": "Sprinklr", - "normal_followers_count": 39502, + "normal_followers_count": 39488, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/75263523/1691600823", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1689349298691948544/gtSPd8ph_normal.jpg", "profile_interstitial_type": "", "screen_name": "Sprinklr", - "statuses_count": 74632, + "statuses_count": 74688, "translator_type": "none", "url": "https://t.co/ZQEECh4fWK", "verified": false, @@ -3884,89 +2439,9 @@ } } }, - { - "entryId": "user-2584784815", - "sortIndex": "1739819627556372429", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNTg0Nzg0ODE1", - "rest_id": "2584784815", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "protected": true, - "can_dm": false, - "can_media_tag": false, - "created_at": "Mon Jun 23 23:51:02 +0000 2014", - "default_profile": false, - "default_profile_image": false, - "description": "Data science @AletheaInsights. Prev @Twitter @CommunityNotes. PhD @NUnetsi @CoMMLabNU. Disinformation, manipulation, networks, fingerstyle guitar. He/they", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ryanjgallagher.github.io", - "expanded_url": "http://ryanjgallagher.github.io", - "url": "https://t.co/lUBB6lWOPo", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 49787, - "followers_count": 4284, - "friends_count": 1340, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 113, - "location": "New York, NY", - "media_count": 229, - "name": "Ryan J. Gallagher", - "normal_followers_count": 4284, - "pinned_tweet_ids_str": [ - "1575973950923845632" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2584784815/1458868264", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1532015197577166850/5u7UeMhX_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "ryanjgallag", - "statuses_count": 14256, - "translator_type": "none", - "url": "https://t.co/lUBB6lWOPo", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, { "entryId": "user-2990106209", - "sortIndex": "1739819627556372428", + "sortIndex": "1756309174033055712", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -3988,23 +2463,23 @@ "created_at": "Wed Jan 21 15:55:46 +0000 2015", "default_profile": true, "default_profile_image": false, - "description": "Global Macro Expert Seeking Value -Traded All- Source Of A Few-Friend Of Many-Columbia Biz -CMU III MVP I #Bitcoin FamaFrenchGeorgeHwangThomasZhang twt/rt/own", + "description": "Global Macro Expert Seeking Value -Traded All- Source Of A Few-Friend Of Many-Columbia Biz -CMU III MVP I #Bitcoin $AMZN FamaFrenchHwangZhang twt/rt/own", "entities": { "description": { "urls": [] } }, "fast_followers_count": 0, - "favourites_count": 74062, - "followers_count": 4356, - "friends_count": 4936, + "favourites_count": 75079, + "followers_count": 4458, + "friends_count": 4985, "has_custom_timelines": true, "is_translator": false, "listed_count": 157, "location": "goatoffice", - "media_count": 4148, + "media_count": 4169, "name": "John M. Spallanzani", - "normal_followers_count": 4356, + "normal_followers_count": 4458, "pinned_tweet_ids_str": [ "1574791517302046722" ], @@ -4013,226 +2488,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/989283439063912449/cZ9pHCsa_normal.jpg", "profile_interstitial_type": "", "screen_name": "JohnSpall247", - "statuses_count": 39002, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-2533768586", - "sortIndex": "1739819627556372427", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNTMzNzY4NTg2", - "rest_id": "2533768586", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "protected": true, - "can_dm": true, - "can_media_tag": false, - "created_at": "Fri May 30 00:59:34 +0000 2014", - "default_profile": false, - "default_profile_image": false, - "description": "prev @twitter", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "selynnasun.com", - "expanded_url": "https://selynnasun.com", - "url": "https://t.co/JFbso29iT1", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 26111, - "followers_count": 2029, - "friends_count": 931, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 35, - "location": "San Francisco, CA", - "media_count": 340, - "name": "Selynna Sun", - "normal_followers_count": 2029, - "pinned_tweet_ids_str": [ - "1288909871799140352" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2533768586/1583751646", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1354527729836847106/bW-v5CfZ_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "selynnasun", - "statuses_count": 3815, - "translator_type": "none", - "url": "https://t.co/JFbso29iT1", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1637021982", - "sortIndex": "1739819627556372426", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjM3MDIxOTgy", - "rest_id": "1637021982", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Thu Aug 01 03:48:55 +0000 2013", - "default_profile": true, - "default_profile_image": false, - "description": "Dir Penn Medicine Center for Digital Health, Assoc VP Penn Med/Digital Health, Tenured Professor Emergency Medicine, health policy, RWJF CSP, NCSP", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "centerfordigitalhealth.upenn.edu", - "expanded_url": "https://centerfordigitalhealth.upenn.edu/", - "url": "https://t.co/18z0wVHKxh", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 1940, - "followers_count": 3292, - "friends_count": 961, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 134, - "location": "", - "media_count": 130, - "name": "Raina Merchant, MD MSHP FAHA", - "normal_followers_count": 3292, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1259217702276804609/SFpN1UYB_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "RainaMerchant", - "statuses_count": 3259, - "translator_type": "none", - "url": "https://t.co/18z0wVHKxh", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "FollowingSgs", - "element": "user" - } - } - }, - { - "entryId": "user-1280128841550311424", - "sortIndex": "1739819627556372425", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMjgwMTI4ODQxNTUwMzExNDI0", - "rest_id": "1280128841550311424", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Mon Jul 06 13:18:03 +0000 2020", - "default_profile": true, - "default_profile_image": false, - "description": "Tekken Enjoyer", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 16796, - "followers_count": 87, - "friends_count": 241, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1, - "location": "17, He/Him", - "media_count": 88, - "name": "Syas", - "normal_followers_count": 87, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1280128841550311424/1689616164", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1739671513177989120/9UoHlNVP_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "SyasVex", - "statuses_count": 569, + "statuses_count": 38973, "translator_type": "none", "verified": false, "want_retweets": false, @@ -4250,7 +2506,7 @@ }, { "entryId": "user-2425259995", - "sortIndex": "1739819627556372424", + "sortIndex": "1756309174033055711", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4272,7 +2528,7 @@ "created_at": "Thu Apr 03 08:02:16 +0000 2014", "default_profile": false, "default_profile_image": false, - "description": "HC Journalist @FIFAWorldCup | Mytv Qatar Correspondent | Volunteer Management | Sports & Events Management | Spectator Services | Crowd Management | Ticketing", + "description": "HC Journalist @FIFAWorldCup | Non-Rights Holder @Qatar2023en | Member @AIPSmedia | Mytv Qatar Correspondent | Volunteer Management | Sports & Events Management", "entities": { "description": { "urls": [] @@ -4292,25 +2548,25 @@ } }, "fast_followers_count": 0, - "favourites_count": 11318, - "followers_count": 750, - "friends_count": 5002, + "favourites_count": 11357, + "followers_count": 746, + "friends_count": 5005, "has_custom_timelines": false, "is_translator": false, "listed_count": 9, "location": "State Of Qatar ", - "media_count": 503, + "media_count": 514, "name": "Md Nahid Islam 🇧🇩🇶🇦", - "normal_followers_count": 750, + "normal_followers_count": 746, "pinned_tweet_ids_str": [ "1600755572680560640" ], "possibly_sensitive": true, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2425259995/1684230991", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1667905452410060805/X54pHULg_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1748058118179684352/Hgqbomft_normal.jpg", "profile_interstitial_type": "", "screen_name": "nahidofficialbd", - "statuses_count": 14310, + "statuses_count": 14326, "translator_type": "none", "url": "https://t.co/kTbhzU51px", "verified": false, @@ -4340,7 +2596,7 @@ }, { "entryId": "user-685863", - "sortIndex": "1739819627556372423", + "sortIndex": "1756309174033055710", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4369,23 +2625,23 @@ } }, "fast_followers_count": 0, - "favourites_count": 16778, - "followers_count": 818, - "friends_count": 3803, + "favourites_count": 16700, + "followers_count": 840, + "friends_count": 3795, "has_custom_timelines": true, "is_translator": false, - "listed_count": 36, + "listed_count": 0, "location": "Southern California", "media_count": 532, "name": "Mike Zitek", - "normal_followers_count": 818, + "normal_followers_count": 840, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/685863/1484979005", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1358802588511002624/q_nKTQrZ_normal.jpg", "profile_interstitial_type": "", "screen_name": "mjzitek", - "statuses_count": 14456, + "statuses_count": 14454, "translator_type": "none", "verified": false, "want_retweets": false, @@ -4403,7 +2659,7 @@ }, { "entryId": "user-248869046", - "sortIndex": "1739819627556372422", + "sortIndex": "1756309174033055709", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4433,22 +2689,22 @@ }, "fast_followers_count": 0, "favourites_count": 718, - "followers_count": 1230, - "friends_count": 1059, + "followers_count": 1232, + "friends_count": 1058, "has_custom_timelines": true, "is_translator": true, "listed_count": 107, "location": " Paris | Le Mans | London ", "media_count": 14596, "name": "Antoine Danois", - "normal_followers_count": 1230, + "normal_followers_count": 1232, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/248869046/1624438990", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1488871196498272258/pJp5c8zC_normal.jpg", "profile_interstitial_type": "", "screen_name": "Antoinedroid", - "statuses_count": 161151, + "statuses_count": 161139, "translator_type": "badged", "verified": false, "want_retweets": false, @@ -4477,7 +2733,7 @@ }, { "entryId": "user-104236352", - "sortIndex": "1739819627556372421", + "sortIndex": "1756309174033055708", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4519,16 +2775,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2293, - "followers_count": 396, - "friends_count": 1020, + "favourites_count": 2299, + "followers_count": 402, + "friends_count": 1024, "has_custom_timelines": true, "is_translator": false, "listed_count": 67, "location": "Eure", - "media_count": 1488, + "media_count": 1490, "name": "@matthieu@mstdn.io", - "normal_followers_count": 396, + "normal_followers_count": 402, "pinned_tweet_ids_str": [ "997557853278949377" ], @@ -4537,7 +2793,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/934001822527836160/WUozxB3A_normal.jpg", "profile_interstitial_type": "", "screen_name": "Mistermatt007", - "statuses_count": 79663, + "statuses_count": 79656, "translator_type": "regular", "url": "https://t.co/RdzTVeKNxK", "verified": false, @@ -4556,7 +2812,7 @@ }, { "entryId": "user-1615654896", - "sortIndex": "1739819627556372420", + "sortIndex": "1756309174033055707", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4599,15 +2855,15 @@ }, "fast_followers_count": 0, "favourites_count": 277, - "followers_count": 1498, - "friends_count": 484, + "followers_count": 1500, + "friends_count": 483, "has_custom_timelines": true, "is_translator": false, "listed_count": 88, "location": "Philadelphia, PA", "media_count": 52, "name": "Penn Med CDH", - "normal_followers_count": 1498, + "normal_followers_count": 1500, "pinned_tweet_ids_str": [ "1705301034514502114" ], @@ -4635,7 +2891,7 @@ }, { "entryId": "user-29970507", - "sortIndex": "1739819627556372419", + "sortIndex": "1756309174033055706", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4677,16 +2933,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 6539, - "followers_count": 1220, - "friends_count": 330, + "favourites_count": 6525, + "followers_count": 1275, + "friends_count": 338, "has_custom_timelines": true, "is_translator": false, "listed_count": 49, "location": "Denver, CO", "media_count": 378, "name": "Royce", - "normal_followers_count": 1220, + "normal_followers_count": 1275, "pinned_tweet_ids_str": [ "1449743664545161223" ], @@ -4694,7 +2950,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1649892376847192065/O9PUOyO2_normal.jpg", "profile_interstitial_type": "", "screen_name": "roycehaynes", - "statuses_count": 5821, + "statuses_count": 5824, "translator_type": "regular", "url": "https://t.co/GiPbx61L3t", "verified": false, @@ -4713,7 +2969,7 @@ }, { "entryId": "user-1168345391135371267", - "sortIndex": "1739819627556372418", + "sortIndex": "1756309174033055705", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4743,7 +2999,7 @@ } }, "fast_followers_count": 0, - "favourites_count": 1878, + "favourites_count": 1866, "followers_count": 200, "friends_count": 379, "has_custom_timelines": true, @@ -4777,7 +3033,7 @@ }, { "entryId": "user-124005464", - "sortIndex": "1739819627556372417", + "sortIndex": "1756309174033055704", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4806,16 +3062,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 18751, - "followers_count": 230, - "friends_count": 1371, + "favourites_count": 18834, + "followers_count": 232, + "friends_count": 1378, "has_custom_timelines": true, "is_translator": false, "listed_count": 25, "location": "London", "media_count": 320, "name": "kelly-ayo", - "normal_followers_count": 230, + "normal_followers_count": 232, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1463671671940956164/moD1WFG9_normal.jpg", @@ -4839,7 +3095,7 @@ }, { "entryId": "user-3921628635", - "sortIndex": "1739819627556372416", + "sortIndex": "1756309174033055703", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4868,23 +3124,23 @@ } }, "fast_followers_count": 0, - "favourites_count": 59006, - "followers_count": 33590, - "friends_count": 4400, + "favourites_count": 58901, + "followers_count": 33463, + "friends_count": 4390, "has_custom_timelines": true, "is_translator": false, "listed_count": 101, "location": "San Francisco, CA", "media_count": 2151, "name": "James Loduca (he/him/él)", - "normal_followers_count": 33590, + "normal_followers_count": 33463, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3921628635/1631304583", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1629281269879300101/hCHDPIVC_normal.jpg", "profile_interstitial_type": "", "screen_name": "JamesLoduca", - "statuses_count": 12325, + "statuses_count": 12324, "translator_type": "none", "verified": false, "want_retweets": false, @@ -4902,7 +3158,7 @@ }, { "entryId": "user-31898295", - "sortIndex": "1739819627556372415", + "sortIndex": "1756309174033055702", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4931,16 +3187,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 26973, - "followers_count": 17684, - "friends_count": 7507, + "favourites_count": 26950, + "followers_count": 17627, + "friends_count": 7502, "has_custom_timelines": true, "is_translator": false, - "listed_count": 218, + "listed_count": 216, "location": "", - "media_count": 799, + "media_count": 800, "name": "Matt Derella", - "normal_followers_count": 17684, + "normal_followers_count": 17627, "pinned_tweet_ids_str": [ "1217544085134807041" ], @@ -4949,7 +3205,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1474864489480830991/eh3Rc2rt_normal.jpg", "profile_interstitial_type": "", "screen_name": "Derella", - "statuses_count": 7305, + "statuses_count": 7308, "translator_type": "regular", "verified": false, "want_retweets": false, @@ -4966,22 +3222,1568 @@ } }, { - "entryId": "cursor-bottom-1739819627556372414", - "sortIndex": "1739819627556372414", + "entryId": "user-760738503370084352", + "sortIndex": "1756309174033055701", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo3NjA3Mzg1MDMzNzAwODQzNTI=", + "rest_id": "760738503370084352", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed Aug 03 07:26:07 +0000 2016", + "default_profile": false, + "default_profile_image": false, + "description": "Ex @TwitterUK, now @FT. 🤷🏽‍♀️🎶🍝🏋🏾📝🎨 Not here very often but follow me on Instagram @Chealthytreats ❤️", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "chelseareveals.com", + "expanded_url": "http://chelseareveals.com", + "url": "https://t.co/R7T3fw8YMW", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 9334, + "followers_count": 863, + "friends_count": 825, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 7, + "location": "London, England", + "media_count": 767, + "name": "Chels", + "normal_followers_count": 863, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/760738503370084352/1693932494", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1699098341349502979/LaAjEl9f_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ChelseaHipwood", + "statuses_count": 2685, + "translator_type": "none", + "url": "https://t.co/R7T3fw8YMW", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-41204968", + "sortIndex": "1756309174033055700", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0MTIwNDk2OA==", + "rest_id": "41204968", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Tue May 19 20:40:38 +0000 2009", + "default_profile": true, + "default_profile_image": false, + "description": "There is food and sport, and occasionally other stuff of note. Finance @mavrckco previously @twitter", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 8925, + "followers_count": 557, + "friends_count": 1496, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 16, + "location": "Boulder, Colorado", + "media_count": 189, + "name": "Andy Antos", + "normal_followers_count": 557, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/41204968/1657636062", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1726829007084380160/-Tpy4Dn6_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "andyantos", + "statuses_count": 1784, + "translator_type": "regular", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-2276100433", + "sortIndex": "1756309174033055699", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyMjc2MTAwNDMz", + "rest_id": "2276100433", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sat Jan 04 13:08:27 +0000 2014", + "default_profile": true, + "default_profile_image": false, + "description": "👩🏼‍💻@Google - my views are most of the time mispelled", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 4442, + "followers_count": 666, + "friends_count": 404, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 21, + "location": "London, England", + "media_count": 67, + "name": "Mirela Anghel", + "normal_followers_count": 666, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2276100433/1443650741", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/913549551746928640/V9CZAsMR_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "_mirels_", + "statuses_count": 627, + "translator_type": "regular", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-495741050", + "sortIndex": "1756309174033055698", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0OTU3NDEwNTA=", + "rest_id": "495741050", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Feb 18 08:19:56 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "building @Togethercompute. ex-tweep, @topsy, & @salesforce. lifetime member of the @cycle4survival family 💪🏼", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 15025, + "followers_count": 1611, + "friends_count": 820, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 36, + "location": "", + "media_count": 436, + "name": "Arielle Schwartz 🍤", + "normal_followers_count": 1611, + "pinned_tweet_ids_str": [ + "1423321701144829961" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/495741050/1506976437", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/886195472897069056/j3L3dnzO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "arisirenita", + "statuses_count": 2948, + "translator_type": "regular", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-340611224", + "sortIndex": "1756309174033055697", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozNDA2MTEyMjQ=", + "rest_id": "340611224", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sat Jul 23 00:09:52 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "Italian 🇮🇹 Mainly in London 🇬🇧 Fresh pasta aficionado 🍝", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 7779, + "followers_count": 1292, + "friends_count": 1775, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 22, + "location": "🇪🇺", + "media_count": 632, + "name": "Mauro Piano", + "normal_followers_count": 1292, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/340611224/1626200578", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1362357629360754688/kT_CFw1v_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "mauropiano", + "statuses_count": 2100, + "translator_type": "regular", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-32416361", + "sortIndex": "1756309174033055696", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozMjQxNjM2MQ==", + "rest_id": "32416361", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "protected": true, + "can_dm": false, + "can_media_tag": false, + "created_at": "Fri Apr 17 14:05:55 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "swe who likes to run, tinker and chat.\n \nI mostly hang out on\n https://t.co/B44kgOEPiA\n\nbut sometimes\n https://t.co/8mu7kVZgWW", + "entities": { + "description": { + "urls": [ + { + "display_url": "mastodon.social/@mattjbones", + "expanded_url": "http://mastodon.social/@mattjbones", + "url": "https://t.co/B44kgOEPiA", + "indices": [ + 68, + 91 + ] + }, + { + "display_url": "threads.net/@mattjbones", + "expanded_url": "https://www.threads.net/@mattjbones", + "url": "https://t.co/8mu7kVZgWW", + "indices": [ + 113, + 136 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "matt.barnettjones.com", + "expanded_url": "https://matt.barnettjones.com", + "url": "https://t.co/Wzwf10Z3Me", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 20189, + "followers_count": 1192, + "friends_count": 3281, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 17, + "location": "London, England", + "media_count": 644, + "name": "Matt 🦕", + "normal_followers_count": 1192, + "pinned_tweet_ids_str": [ + "1267782736963686400" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/32416361/1586734030", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1597580569109581825/BEbrjGt0_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "mattjbones", + "statuses_count": 4063, + "translator_type": "regular", + "url": "https://t.co/Wzwf10Z3Me", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1462814454287118337", + "professional_type": "Creator", + "category": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-6453472", + "sortIndex": "1756309174033055695", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo2NDUzNDcy", + "rest_id": "6453472", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Wed May 30 20:52:05 +0000 2007", + "default_profile": false, + "default_profile_image": false, + "description": "Building indie software businesses in public.\n\n@BunniAI Chat with PDF.\n@PopInvoice Invoices for Notion.\n@DatePopApp Autofill dates in Notion.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linktr.ee/gofarez", + "expanded_url": "https://linktr.ee/gofarez", + "url": "https://t.co/3sorcSl7tK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 1622, + "followers_count": 2191, + "friends_count": 2422, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 122, + "location": "London 🇬🇧 & KL 🇲🇾", + "media_count": 692, + "name": "farez 🥕", + "normal_followers_count": 2191, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/6453472/1692521131", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1693458037997195264/OgtADjDk_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "farez", + "statuses_count": 10100, + "translator_type": "none", + "url": "https://t.co/3sorcSl7tK", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1561783913529344000", + "professional_type": "Creator", + "category": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-292670084", + "sortIndex": "1756309174033055694", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyOTI2NzAwODQ=", + "rest_id": "292670084", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Wed May 04 01:22:46 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "https://t.co/sYUZ6hSvUp\nhttps://t.co/xLg2f79TJs\n\n#PowerShell", + "entities": { + "description": { + "urls": [ + { + "display_url": "fosstodon.org/@thedavecarroll", + "expanded_url": "http://fosstodon.org/@thedavecarroll", + "url": "https://t.co/sYUZ6hSvUp", + "indices": [ + 0, + 23 + ] + }, + { + "display_url": "bsky.app/profile/thedav…", + "expanded_url": "http://bsky.app/profile/thedavecarroll.com", + "url": "https://t.co/xLg2f79TJs", + "indices": [ + 24, + 47 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "thedavecarroll.com", + "expanded_url": "http://thedavecarroll.com", + "url": "https://t.co/eF9j6nr1A3", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 15445, + "followers_count": 1197, + "friends_count": 1715, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 45, + "location": "", + "media_count": 529, + "name": "thedavecarroll.com", + "normal_followers_count": 1197, + "pinned_tweet_ids_str": [ + "1593484272614211584" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/292670084/1638298718", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1509519500219146242/LV6Du2YA_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "thedavecarroll", + "statuses_count": 8863, + "translator_type": "none", + "url": "https://t.co/eF9j6nr1A3", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1557457235441319939", + "professional_type": "Creator", + "category": [ + { + "id": 713, + "name": "Science & Technology", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1700547000", + "sortIndex": "1756309174033055693", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzAwNTQ3MDAw", + "rest_id": "1700547000", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Aug 26 01:07:06 +0000 2013", + "default_profile": false, + "default_profile_image": false, + "description": "Brazilian Zé Ruela. O único humilhado que ainda não foi exaltado.\n\nEstudando Física e tomando uma surra.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "instagram.com/sr_half", + "expanded_url": "https://instagram.com/sr_half", + "url": "https://t.co/mXBqEY25OF", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 7503, + "followers_count": 81, + "friends_count": 228, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 0, + "location": "Brésil", + "media_count": 71, + "name": "Flávio Santos 🇧🇷", + "normal_followers_count": 81, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1700547000/1446519267", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1316116274506854400/B1YXHXbb_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "Sr__Half", + "statuses_count": 2100, + "translator_type": "none", + "url": "https://t.co/mXBqEY25OF", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1478868370804064256", + "professional_type": "Creator", + "category": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-3347115521", + "sortIndex": "1756309174033055692", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozMzQ3MTE1NTIx", + "rest_id": "3347115521", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sat Jun 27 00:55:17 +0000 2015", + "default_profile": true, + "default_profile_image": false, + "description": "I love God, I believe in your existence😇❤️I love nature because in it I meet God💞\nKwai806198508💰💸👏😍https://t.co/taaxKCtjJU…", + "entities": { + "description": { + "urls": [ + { + "display_url": "ipsosisay.com/pt-br/referral", + "expanded_url": "http://ipsosisay.com/pt-br/referral", + "url": "https://t.co/taaxKCtjJU", + "indices": [ + 99, + 122 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "makepages.com.br/r/AFX13310309", + "expanded_url": "https://www.makepages.com.br/r/AFX13310309", + "url": "https://t.co/rzGn6ut0AX", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 248264, + "followers_count": 8913, + "friends_count": 10614, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 15, + "location": "Bauru, Brasil🇧🇷🇧🇷🇧🇷", + "media_count": 4342, + "name": "Elisabeth 🎵🎶🌍🔭🌌💫 Instagram @betymaisvc2010", + "normal_followers_count": 8913, + "pinned_tweet_ids_str": [ + "1594283867711541248" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3347115521/1701698631", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1731675676774670336/nMbcxC27_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "vice_elisabete", + "statuses_count": 228037, + "translator_type": "none", + "url": "https://t.co/rzGn6ut0AX", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-783677076951924739", + "sortIndex": "1756309174033055691", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo3ODM2NzcwNzY5NTE5MjQ3Mzk=", + "rest_id": "783677076951924739", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Wed Oct 05 14:35:49 +0000 2016", + "default_profile": false, + "default_profile_image": false, + "description": "status: Working a lot\nplaying: Monster Hunter Rise", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 78943, + "followers_count": 108, + "friends_count": 1195, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "Sao Paulo, Brazil", + "media_count": 996, + "name": "Luis Francisco", + "normal_followers_count": 108, + "pinned_tweet_ids_str": [ + "1015649961218838531" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/783677076951924739/1624961550", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1409817057328353283/YSssqFCL_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "_luisf02", + "statuses_count": 8380, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-88262421", + "sortIndex": "1756309174033055690", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4ODI2MjQyMQ==", + "rest_id": "88262421", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Nov 07 20:19:43 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Living my life on autopilot.. #BlackLivesMatter #bookworm #crimelover #istandwithUkraine", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 20120, + "followers_count": 386, + "friends_count": 4889, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 9, + "location": "Leeds, West Yorkshire", + "media_count": 1337, + "name": "Gibby", + "normal_followers_count": 386, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/88262421/1647029390", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1659528129998626818/CI5tTNcC_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "GibbyBlogger", + "statuses_count": 17960, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-3349202854", + "sortIndex": "1756309174033055689", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozMzQ5MjAyODU0", + "rest_id": "3349202854", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "protected": true, + "can_dm": false, + "can_media_tag": false, + "created_at": "Sun Jun 28 14:37:17 +0000 2015", + "default_profile": false, + "default_profile_image": false, + "description": "Palestine vivra, Palestine vaincra", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 37604, + "followers_count": 214, + "friends_count": 248, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1, + "location": "", + "media_count": 1683, + "name": "Sanji", + "normal_followers_count": 214, + "pinned_tweet_ids_str": [ + "1372296276029636609" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3349202854/1626121533", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1648463000888819712/C4ueFDPf_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "Sanji4579094169", + "statuses_count": 13954, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-14184976", + "sortIndex": "1756309174033055688", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDE4NDk3Ng==", + "rest_id": "14184976", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Mar 20 16:02:45 +0000 2008", + "default_profile": false, + "default_profile_image": false, + "description": "Photographer & videographer. Canoeist & Camper. Co-Founder of @Ptbo_Canada & Owner of @Traversing.\n\nLove tweeting out interesting articles.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "evanholt.ca", + "expanded_url": "http://www.evanholt.ca", + "url": "https://t.co/zTutrYxGt0", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 7002, + "followers_count": 1071, + "friends_count": 456, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 54, + "location": "Peterborough, Ontario, Canada", + "media_count": 374, + "name": "Evan Holt", + "normal_followers_count": 1071, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14184976/1411141202", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1498483193988665344/rWUsej1M_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "evanholt", + "statuses_count": 3633, + "translator_type": "none", + "url": "https://t.co/zTutrYxGt0", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-160348679", + "sortIndex": "1756309174033055687", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjAzNDg2Nzk=", + "rest_id": "160348679", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Jun 27 23:06:25 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "lore boy on duty", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "webtoons.com/en/challenge/b…", + "expanded_url": "http://www.webtoons.com/en/challenge/brainsick/list?title_no=90427", + "url": "https://t.co/yqd1ZoXtWP", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 34170, + "followers_count": 131, + "friends_count": 812, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 156, + "name": "Bene and the Gesserit", + "normal_followers_count": 131, + "pinned_tweet_ids_str": [ + "1311123719834742785" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/160348679/1588351419", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1424443498464522241/22rsIuEY_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "not_stin", + "statuses_count": 2077, + "translator_type": "none", + "url": "https://t.co/yqd1ZoXtWP", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-154236280", + "sortIndex": "1756309174033055686", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTQyMzYyODA=", + "rest_id": "154236280", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Thu Jun 10 18:42:19 +0000 2010", + "default_profile": true, + "default_profile_image": false, + "description": "Lifelong student of Yoga, Ayurveda and Vedic philosophy | Passionate about wellness and climate justice | Business Development @twitter | Founder http://tisya.l", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "in.linkedin.com/in/shagunchopra", + "expanded_url": "https://in.linkedin.com/in/shagunchopra", + "url": "https://t.co/MdNKsjY7JI", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 2839, + "followers_count": 979, + "friends_count": 1250, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 13, + "location": "San Francisco, CA", + "media_count": 41, + "name": "Shagun Chopra", + "normal_followers_count": 979, + "pinned_tweet_ids_str": [ + "745072899556442112" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/154236280/1354855342", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2942223751/2f0ecc3651f9b03328ad3a78def96652_normal.jpeg", + "profile_interstitial_type": "", + "screen_name": "Chopra_Shagun", + "statuses_count": 1545, + "translator_type": "none", + "url": "https://t.co/MdNKsjY7JI", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-948097629409263616", + "sortIndex": "1756309174033055685", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo5NDgwOTc2Mjk0MDkyNjM2MTY=", + "rest_id": "948097629409263616", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Jan 02 07:44:24 +0000 2018", + "default_profile": true, + "default_profile_image": false, + "description": "she/her | believe simplicity | ex Tweep🐦 | mostly 🎬 🎶 🌸 🌱🧘 | be kind and positive ❤️", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 4373, + "followers_count": 691, + "friends_count": 679, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 4, + "location": "Singapore", + "media_count": 126, + "name": "Tian Z", + "normal_followers_count": 691, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/948097629409263616/1560459865", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1354460646004277251/OQYDNmY2_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "tianz_zzz", + "statuses_count": 443, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-2469856424", + "sortIndex": "1756309174033055684", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyNDY5ODU2NDI0", + "rest_id": "2469856424", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Tue Apr 29 21:07:53 +0000 2014", + "default_profile": false, + "default_profile_image": false, + "description": "Product Designer @Twitter / Howard Alum.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 1264, + "followers_count": 2871, + "friends_count": 466, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 11, + "location": "Oakland, CA", + "media_count": 107, + "name": "Bolá", + "normal_followers_count": 2871, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2469856424/1636654351", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1459179963337347109/41r5ZRta_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "bolaboss", + "statuses_count": 2120, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1466602838969094144", + "professional_type": "Creator", + "category": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-866879520359448577", + "sortIndex": "1756309174033055683", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NjY4Nzk1MjAzNTk0NDg1Nzc=", + "rest_id": "866879520359448577", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Tue May 23 04:52:38 +0000 2017", + "default_profile": true, + "default_profile_image": false, + "description": "ㆍTechㆍMobileㆍSportsㆍArtㆍ𝕏 #LoveIsLove", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 2898, + "followers_count": 505, + "friends_count": 661, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3, + "location": "London, England", + "media_count": 271, + "name": "Wooju oppa👽 He/Him", + "normal_followers_count": 505, + "pinned_tweet_ids_str": [], + "possibly_sensitive": true, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/866879520359448577/1667309677", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1669267999658835969/e3hy-Wzg_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "WoojuGG", + "statuses_count": 1022, + "translator_type": "regular", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1140344288082944000", + "sortIndex": "1756309174033055682", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMTQwMzQ0Mjg4MDgyOTQ0MDAw", + "rest_id": "1140344288082944000", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Jun 16 19:43:59 +0000 2019", + "default_profile": true, + "default_profile_image": false, + "description": "she/her Body Neutrality ❤️, 🎠✨Disneyland, 🌺🦜Tiki🍹, and 🐶 cute pups. ex Twitter", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 21666, + "followers_count": 1325, + "friends_count": 2335, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 17, + "location": "", + "media_count": 508, + "name": "Lauren Pinnella Traylor", + "normal_followers_count": 1325, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1140344288082944000/1590810483", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1357118178673840128/RfDf_piX_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "laur_tray", + "statuses_count": 1327, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "user-1181081146227970049", + "sortIndex": "1756309174033055681", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMTgxMDgxMTQ2MjI3OTcwMDQ5", + "rest_id": "1181081146227970049", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Mon Oct 07 05:37:54 +0000 2019", + "default_profile": true, + "default_profile_image": false, + "description": "Product lead for Media Infra @Twitter (She/Her) - making media and media experiences possible everyday | thoughts and opinions are my own 💭", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 1734, + "followers_count": 501, + "friends_count": 313, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 12, + "location": "San Francisco, CA", + "media_count": 63, + "name": "Amber Brown", + "normal_followers_count": 501, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1181081146227970049/1573608041", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1512644959870107650/F-qw9EEJ_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "AmberAlBrown", + "statuses_count": 358, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "FollowingSgs", + "element": "user" + } + } + }, + { + "entryId": "cursor-bottom-1756309174033055680", + "sortIndex": "1756309174033055680", "content": { "entryType": "TimelineTimelineCursor", "__typename": "TimelineTimelineCursor", - "value": "1675027162258787096|1739819627556372412", + "value": "1672312144855022089|1756309174033055678", "cursorType": "Bottom" } }, { - "entryId": "cursor-top-1739819627556372481", - "sortIndex": "1739819627556372481", + "entryId": "cursor-top-1756309174033055745", + "sortIndex": "1756309174033055745", "content": { "entryType": "TimelineTimelineCursor", "__typename": "TimelineTimelineCursor", - "value": "-1|1739819627556372481", + "value": "-1|1756309174033055745", "cursorType": "Top" } } diff --git a/tests/mocked-data/raw_likes.json b/tests/mocked-data/raw_likes.json new file mode 100644 index 0000000..1f6fb2a --- /dev/null +++ b/tests/mocked-data/raw_likes.json @@ -0,0 +1,13195 @@ +{ + "data": { + "user": { + "result": { + "__typename": "User", + "timeline_v2": { + "timeline": { + "instructions": [ + { + "type": "TimelineAddEntries", + "entries": [ + { + "entryId": "tweet-1753758710076223869", + "sortIndex": "1756309225740435456", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1753758710076223869", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMTMwMDIxNjg1MzUxMDc5OTM4", + "rest_id": "1130021685351079938", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sun May 19 08:05:39 +0000 2019", + "default_profile": true, + "default_profile_image": false, + "description": "Welcome to the positive side of 𝕏. I’m Sander from the Netherlands. All copyrights belong to their respective owners! DM for credits/removal/submission!", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linktr.ee/buitengebieden", + "expanded_url": "https://linktr.ee/buitengebieden", + "url": "https://t.co/lcTxsIZCBL", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 23103, + "followers_count": 2740676, + "friends_count": 73, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 13869, + "location": "Nederland", + "media_count": 2924, + "name": "Buitengebieden", + "normal_followers_count": 2740676, + "pinned_tweet_ids_str": [ + "1534564404943106056" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1130021685351079938/1558253468", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1130022182971760640/FlbICzEn_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "buitengebieden", + "statuses_count": 3353, + "translator_type": "none", + "url": "https://t.co/lcTxsIZCBL", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1591178864939737089", + "professional_type": "Business", + "category": [ + { + "id": 1009, + "name": "Community", + "icon_name": "IconBriefcaseStroke" + } + ] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1753758710076223869" + ], + "editable_until_msecs": "1706967234000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "28193098", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 10616, + "bookmarked": false, + "created_at": "Sat Feb 03 12:33:54 +0000 2024", + "conversation_id_str": "1753758710076223869", + "display_text_range": [ + 0, + 75 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/lAHnTes03F", + "expanded_url": "https://twitter.com/buitengebieden/status/1753758710076223869/video/1", + "id_str": "1753758639402225664", + "indices": [ + 76, + 99 + ], + "media_key": "13_1753758639402225664", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1753758639402225664/img/u7UwgHjaUZKKlBg0.jpg", + "type": "video", + "url": "https://t.co/lAHnTes03F", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1080, + "w": 1080, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1080, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 1, + 1 + ], + "duration_millis": 37433, + "variants": [ + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1753758639402225664/vid/avc1/540x540/3XjppjXNGl-sQCoG.mp4?tag=14" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1753758639402225664/pl/cE_dSIlHmQO1_ekI.m3u8?tag=14&container=cmaf" + }, + { + "bitrate": 432000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1753758639402225664/vid/avc1/320x320/yBudhc3fq9IjMpHm.mp4?tag=14" + }, + { + "bitrate": 1280000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1753758639402225664/vid/avc1/720x720/tZ95_dSRTBpN9RWz.mp4?tag=14" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/lAHnTes03F", + "expanded_url": "https://twitter.com/buitengebieden/status/1753758710076223869/video/1", + "id_str": "1753758639402225664", + "indices": [ + 76, + 99 + ], + "media_key": "13_1753758639402225664", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1753758639402225664/img/u7UwgHjaUZKKlBg0.jpg", + "type": "video", + "url": "https://t.co/lAHnTes03F", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1080, + "w": 1080, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1080, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 1, + 1 + ], + "duration_millis": 37433, + "variants": [ + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1753758639402225664/vid/avc1/540x540/3XjppjXNGl-sQCoG.mp4?tag=14" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1753758639402225664/pl/cE_dSIlHmQO1_ekI.m3u8?tag=14&container=cmaf" + }, + { + "bitrate": 432000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1753758639402225664/vid/avc1/320x320/yBudhc3fq9IjMpHm.mp4?tag=14" + }, + { + "bitrate": 1280000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1753758639402225664/vid/avc1/720x720/tZ95_dSRTBpN9RWz.mp4?tag=14" + } + ] + } + } + ] + }, + "favorite_count": 179471, + "favorited": false, + "full_text": "Squirrel leaves a cookie as gratitude for the woman who daily feeds him.. 🥺 https://t.co/lAHnTes03F", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 842, + "reply_count": 704, + "retweet_count": 12969, + "retweeted": false, + "user_id_str": "1130021685351079938", + "id_str": "1753758710076223869" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1744822606535049619", + "sortIndex": "1756309225740435455", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1744822606535049619", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1744822606535049619" + ], + "editable_until_msecs": "1704836701000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "91431221", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 4930, + "bookmarked": false, + "created_at": "Tue Jan 09 20:45:01 +0000 2024", + "conversation_id_str": "1744822606535049619", + "display_text_range": [ + 0, + 23 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/SG3LlYNSUK", + "expanded_url": "https://twitter.com/teslaownersSV/status/1744820827877744958/video/1", + "id_str": "1744820806067306496", + "indices": [ + 0, + 23 + ], + "media_key": "7_1744820806067306496", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1744820806067306496/pu/img/yThlxigb6MZ07w6u.jpg", + "source_status_id_str": "1744820827877744958", + "source_user_id_str": "1016059981907386368", + "type": "video", + "url": "https://t.co/SG3LlYNSUK", + "additional_media_info": { + "monetizable": false, + "source_user": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMDE2MDU5OTgxOTA3Mzg2MzY4", + "rest_id": "1016059981907386368", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Square", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Jul 08 20:42:31 +0000 2018", + "default_profile": false, + "default_profile_image": false, + "description": "The most notorious Tesla club in the world. Creator of @thextakeover and run @tslabeatpodcast. Taking #teslatakeover global.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linktr.ee/Teslaownerssv", + "expanded_url": "https://linktr.ee/Teslaownerssv", + "url": "https://t.co/jL2WrOcJqz", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 129047, + "followers_count": 892587, + "friends_count": 515, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2652, + "location": "Silicon Valley", + "media_count": 38565, + "name": "Tesla Owners Silicon Valley", + "normal_followers_count": 892587, + "pinned_tweet_ids_str": [ + "1755985408394252565" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1016059981907386368/1691984286", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1694755043638140928/9EnIf30U_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "teslaownersSV", + "statuses_count": 136186, + "translator_type": "none", + "url": "https://t.co/jL2WrOcJqz", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1644547182144667650", + "professional_type": "Creator", + "category": [ + { + "id": 688, + "name": "Non-Governmental & Nonprofit Organization ", + "icon_name": "IconBriefcaseStroke" + } + ] + }, + "super_follow_eligible": true + } + } + } + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 1280, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 10767, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1744820806067306496/pu/pl/mHqE0LgR6-1A-c5o.m3u8?tag=12&container=cmaf" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1744820806067306496/pu/vid/avc1/1280x720/TELBpVUnGO7bShks.mp4?tag=12" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1744820806067306496/pu/vid/avc1/640x360/rmIKdH8ADnT870Cg.mp4?tag=12" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1744820806067306496/pu/vid/avc1/480x270/y2xFcSkMVJvNs6o7.mp4?tag=12" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/SG3LlYNSUK", + "expanded_url": "https://twitter.com/teslaownersSV/status/1744820827877744958/video/1", + "id_str": "1744820806067306496", + "indices": [ + 0, + 23 + ], + "media_key": "7_1744820806067306496", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1744820806067306496/pu/img/yThlxigb6MZ07w6u.jpg", + "source_status_id_str": "1744820827877744958", + "source_user_id_str": "1016059981907386368", + "type": "video", + "url": "https://t.co/SG3LlYNSUK", + "additional_media_info": { + "monetizable": false, + "source_user": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMDE2MDU5OTgxOTA3Mzg2MzY4", + "rest_id": "1016059981907386368", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Square", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Jul 08 20:42:31 +0000 2018", + "default_profile": false, + "default_profile_image": false, + "description": "The most notorious Tesla club in the world. Creator of @thextakeover and run @tslabeatpodcast. Taking #teslatakeover global.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linktr.ee/Teslaownerssv", + "expanded_url": "https://linktr.ee/Teslaownerssv", + "url": "https://t.co/jL2WrOcJqz", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 129047, + "followers_count": 892587, + "friends_count": 515, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2652, + "location": "Silicon Valley", + "media_count": 38565, + "name": "Tesla Owners Silicon Valley", + "normal_followers_count": 892587, + "pinned_tweet_ids_str": [ + "1755985408394252565" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1016059981907386368/1691984286", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1694755043638140928/9EnIf30U_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "teslaownersSV", + "statuses_count": 136186, + "translator_type": "none", + "url": "https://t.co/jL2WrOcJqz", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1644547182144667650", + "professional_type": "Creator", + "category": [ + { + "id": 688, + "name": "Non-Governmental & Nonprofit Organization ", + "icon_name": "IconBriefcaseStroke" + } + ] + }, + "super_follow_eligible": true + } + } + } + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 1280, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 10767, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1744820806067306496/pu/pl/mHqE0LgR6-1A-c5o.m3u8?tag=12&container=cmaf" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1744820806067306496/pu/vid/avc1/1280x720/TELBpVUnGO7bShks.mp4?tag=12" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1744820806067306496/pu/vid/avc1/640x360/rmIKdH8ADnT870Cg.mp4?tag=12" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1744820806067306496/pu/vid/avc1/480x270/y2xFcSkMVJvNs6o7.mp4?tag=12" + } + ] + } + } + ] + }, + "favorite_count": 158827, + "favorited": false, + "full_text": "https://t.co/SG3LlYNSUK", + "is_quote_status": false, + "lang": "zxx", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 18182, + "reply_count": 12648, + "retweet_count": 16112, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1744822606535049619" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1743028102446408026", + "sortIndex": "1756309225740435454", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1743028102446408026", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1743028102446408026" + ], + "editable_until_msecs": "1704408858000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "23109763", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 1764, + "bookmarked": false, + "created_at": "Thu Jan 04 21:54:18 +0000 2024", + "conversation_id_str": "1743028102446408026", + "display_text_range": [ + 0, + 48 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/zIOk0wNCsd", + "expanded_url": "https://twitter.com/elonmusk/status/1743028102446408026/photo/1", + "id_str": "1743028097866170368", + "indices": [ + 49, + 72 + ], + "media_key": "3_1743028097866170368", + "media_url_https": "https://pbs.twimg.com/media/GDB60e7WgAAZH2S.jpg", + "type": "photo", + "url": "https://t.co/zIOk0wNCsd", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 679, + "y": 877, + "h": 307, + "w": 307 + } + ] + }, + "medium": { + "faces": [ + { + "x": 596, + "y": 769, + "h": 269, + "w": 269 + } + ] + }, + "small": { + "faces": [ + { + "x": 337, + "y": 435, + "h": 152, + "w": 152 + } + ] + }, + "orig": { + "faces": [ + { + "x": 679, + "y": 877, + "h": 307, + "w": 307 + } + ] + } + }, + "sizes": { + "large": { + "h": 1367, + "w": 1179, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 1035, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 586, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1367, + "width": 1179, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1179, + "h": 660 + }, + { + "x": 0, + "y": 0, + "w": 1179, + "h": 1179 + }, + { + "x": 0, + "y": 0, + "w": 1179, + "h": 1344 + }, + { + "x": 102, + "y": 0, + "w": 684, + "h": 1367 + }, + { + "x": 0, + "y": 0, + "w": 1179, + "h": 1367 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/zIOk0wNCsd", + "expanded_url": "https://twitter.com/elonmusk/status/1743028102446408026/photo/1", + "id_str": "1743028097866170368", + "indices": [ + 49, + 72 + ], + "media_key": "3_1743028097866170368", + "media_url_https": "https://pbs.twimg.com/media/GDB60e7WgAAZH2S.jpg", + "type": "photo", + "url": "https://t.co/zIOk0wNCsd", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 679, + "y": 877, + "h": 307, + "w": 307 + } + ] + }, + "medium": { + "faces": [ + { + "x": 596, + "y": 769, + "h": 269, + "w": 269 + } + ] + }, + "small": { + "faces": [ + { + "x": 337, + "y": 435, + "h": 152, + "w": 152 + } + ] + }, + "orig": { + "faces": [ + { + "x": 679, + "y": 877, + "h": 307, + "w": 307 + } + ] + } + }, + "sizes": { + "large": { + "h": 1367, + "w": 1179, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 1035, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 586, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1367, + "width": 1179, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1179, + "h": 660 + }, + { + "x": 0, + "y": 0, + "w": 1179, + "h": 1179 + }, + { + "x": 0, + "y": 0, + "w": 1179, + "h": 1344 + }, + { + "x": 102, + "y": 0, + "w": 684, + "h": 1367 + }, + { + "x": 0, + "y": 0, + "w": 1179, + "h": 1367 + } + ] + } + } + ] + }, + "favorite_count": 105376, + "favorited": false, + "full_text": "This platform is seeing incredible usage growth! https://t.co/zIOk0wNCsd", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1179, + "reply_count": 11554, + "retweet_count": 12839, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1743028102446408026" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1741857233929945282", + "sortIndex": "1756309225740435453", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1741857233929945282", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1NDgyNjMyOTQ=", + "rest_id": "548263294", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Apr 08 08:36:04 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Driven by industry progress, inspired by provocative leadership, plus don't mind a good pair of shoes or a great @PennStateFball scoreboard either.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 6841, + "followers_count": 554654, + "friends_count": 1427, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 1880, + "location": "", + "media_count": 262, + "name": "Linda Yaccarino", + "normal_followers_count": 554654, + "pinned_tweet_ids_str": [ + "1755746656329302155" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/548263294/1690308383", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1659561668945354755/c5dthMBt_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "lindayaX", + "statuses_count": 2084, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "initial_tweet_id": "1741852067080159332", + "edit_control_initial": { + "edit_tweet_ids": [ + "1741852067080159332", + "1741857233929945282" + ], + "editable_until_msecs": "1704128469000", + "is_edit_eligible": true, + "edits_remaining": "4" + } + }, + "previous_counts": { + "bookmark_count": 9, + "favorite_count": 871, + "quote_count": 15, + "reply_count": 84, + "retweet_count": 81 + }, + "is_translatable": false, + "views": { + "count": "338114", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE3NDE4NTcyMzM4NDE4NzY5OTI=", + "text": "Our thoughts and efforts are with the people of Japan. Stay strong and know that you are not alone. X is connecting with local organizations to offer our help. And if there is something immediate we might not realize you need, please keep the X community updated on ways to help. \n\n私たちの思いと努力は、日本の皆さんとともにあります。我々もご支援して参りますので皆様は一人ではありません。Xは日本の様々な公共機関や組織と連携し、支援を提供していきます。また、私たちが気づいていないような緊急のご支援が必要な場合は、X社に最新の状況をご連絡ください。@BizJP にDMでご連絡下さい。", + "entity_set": { + "hashtags": [], + "symbols": [], + "urls": [], + "user_mentions": [ + { + "id_str": "2551015628", + "name": "Business Japan", + "screen_name": "BizJP", + "indices": [ + 415, + 421 + ] + } + ] + } + } + } + }, + "legacy": { + "bookmark_count": 75, + "bookmarked": false, + "created_at": "Mon Jan 01 16:21:41 +0000 2024", + "conversation_id_str": "1741857233929945282", + "display_text_range": [ + 0, + 280 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 4368, + "favorited": false, + "full_text": "Our thoughts and efforts are with the people of Japan. Stay strong and know that you are not alone. X is connecting with local organizations to offer our help. And if there is something immediate we might not realize you need, please keep the X community updated on ways to help.…", + "is_quote_status": false, + "lang": "en", + "quote_count": 86, + "reply_count": 248, + "retweet_count": 660, + "retweeted": false, + "user_id_str": "548263294", + "id_str": "1741857233929945282" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1739351512155906341", + "sortIndex": "1756309225740435452", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1739351512155906341", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1739351512155906341" + ], + "editable_until_msecs": "1703532290000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "26212354", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 1436, + "bookmarked": false, + "created_at": "Mon Dec 25 18:24:50 +0000 2023", + "conversation_id_str": "1739351512155906341", + "display_text_range": [ + 0, + 26 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/qFKgVipssI", + "expanded_url": "https://twitter.com/elonmusk/status/1739351512155906341/photo/1", + "id_str": "1739351508074807296", + "indices": [ + 27, + 50 + ], + "media_key": "3_1739351508074807296", + "media_url_https": "https://pbs.twimg.com/media/GCNq-ypWwAAP50a.jpg", + "type": "photo", + "url": "https://t.co/qFKgVipssI", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 320, + "w": 588, + "resize": "fit" + }, + "medium": { + "h": 320, + "w": 588, + "resize": "fit" + }, + "small": { + "h": 320, + "w": 588, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 320, + "width": 588, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 571, + "h": 320 + }, + { + "x": 119, + "y": 0, + "w": 320, + "h": 320 + }, + { + "x": 139, + "y": 0, + "w": 281, + "h": 320 + }, + { + "x": 199, + "y": 0, + "w": 160, + "h": 320 + }, + { + "x": 0, + "y": 0, + "w": 588, + "h": 320 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/qFKgVipssI", + "expanded_url": "https://twitter.com/elonmusk/status/1739351512155906341/photo/1", + "id_str": "1739351508074807296", + "indices": [ + 27, + 50 + ], + "media_key": "3_1739351508074807296", + "media_url_https": "https://pbs.twimg.com/media/GCNq-ypWwAAP50a.jpg", + "type": "photo", + "url": "https://t.co/qFKgVipssI", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 320, + "w": 588, + "resize": "fit" + }, + "medium": { + "h": 320, + "w": 588, + "resize": "fit" + }, + "small": { + "h": 320, + "w": 588, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 320, + "width": 588, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 571, + "h": 320 + }, + { + "x": 119, + "y": 0, + "w": 320, + "h": 320 + }, + { + "x": 139, + "y": 0, + "w": 281, + "h": 320 + }, + { + "x": 199, + "y": 0, + "w": 160, + "h": 320 + }, + { + "x": 0, + "y": 0, + "w": 588, + "h": 320 + } + ] + } + } + ] + }, + "favorite_count": 262906, + "favorited": false, + "full_text": "⛄️🎁🎄Merry Christmas! 🎄🎁 ⛄️ https://t.co/qFKgVipssI", + "is_quote_status": false, + "lang": "et", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1094, + "reply_count": 17448, + "retweet_count": 19809, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1739351512155906341" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1735440446749397299", + "sortIndex": "1756309225740435451", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1735440446749397299", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyNTMzMzQxODU0", + "rest_id": "2533341854", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Thu May 29 20:24:26 +0000 2014", + "default_profile": false, + "default_profile_image": false, + "description": "𝕏 | @X @API @XDevelopers", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 13297, + "followers_count": 2121, + "friends_count": 958, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 43, + "location": "New York, NY", + "media_count": 141, + "name": "Chris Park", + "normal_followers_count": 2121, + "pinned_tweet_ids_str": [ + "1668840247411761157" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2533341854/1638372155", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1466065189871235086/fF3Cc4x8_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "chrisparkX", + "statuses_count": 707, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1735440446749397299" + ], + "editable_until_msecs": "1702599820000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "976", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1735357096777138304", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyMjQ0OTk0OTQ1", + "rest_id": "2244994945", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Dec 14 04:35:55 +0000 2013", + "default_profile": false, + "default_profile_image": false, + "description": "The voice of the X Dev team and your official source for updates, news, and events, related to the X API.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "developer.twitter.com", + "expanded_url": "https://developer.twitter.com/", + "url": "https://t.co/RUXWsqdGk8", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2572, + "location": "127.0.0.1", + "media_count": 815, + "name": "Developers", + "normal_followers_count": 607490, + "pinned_tweet_ids_str": [ + "1661790253886177280" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2244994945/1690213128", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "XDevelopers", + "statuses_count": 4041, + "translator_type": "regular", + "url": "https://t.co/RUXWsqdGk8", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1516891231749517312", + "professional_type": "Business", + "category": [ + { + "id": 1009, + "name": "Community", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "card": { + "rest_id": "https://t.co/iWVHGMWojH", + "legacy": { + "binding_values": [ + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 144, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=144x144_2" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "We are excited to announce two new endpoints in the X API v2: Users Search Trends lookup These endpoints are available to all developers with the Pro access in the X API. The Users Search endpoint...", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "devcommunity.x.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 420, + "width": 420, + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=420x420_2" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 2453, + "width": 2400, + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 100, + "width": 100, + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=100x100_2" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 2048, + "width": 2004, + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "devcommunity.x.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 0, + "green": 0, + "red": 0 + }, + "percentage": 24.36 + }, + { + "rgb": { + "blue": 105, + "green": 105, + "red": 105 + }, + "percentage": 0.73 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Announcing the Users Search and Trends lookup endpoints in the X API v2", + "type": "STRING" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/iWVHGMWojH", + "type": "STRING" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary", + "url": "https://t.co/iWVHGMWojH", + "user_refs_results": [] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1735357096777138304" + ], + "editable_until_msecs": "1702579947000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "67511", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 28, + "bookmarked": false, + "created_at": "Thu Dec 14 17:52:27 +0000 2023", + "conversation_id_str": "1735357096777138304", + "display_text_range": [ + 0, + 202 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "bit.ly/xcommunity", + "expanded_url": "https://bit.ly/xcommunity", + "url": "https://t.co/iWVHGMWojH", + "indices": [ + 179, + 202 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 323, + "favorited": false, + "full_text": "Users search and Trends lookup endpoints are now available in X API v2 -- exclusively on Pro & Enterprise! \n\nWant to learn more about what these endpoints can do, visit here: https://t.co/iWVHGMWojH", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 16, + "reply_count": 56, + "retweet_count": 107, + "retweeted": false, + "user_id_str": "2244994945", + "id_str": "1735357096777138304" + } + } + }, + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "created_at": "Thu Dec 14 23:23:40 +0000 2023", + "conversation_id_str": "1735440446749397299", + "display_text_range": [ + 0, + 114 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 11, + "favorited": false, + "full_text": "We will be shipping many more features in the coming year and introducing dev community initiatives. Stay tuned! 🔥", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1735357096777138304", + "quoted_status_permalink": { + "url": "https://t.co/MQtQkLUqVY", + "expanded": "https://twitter.com/XDevelopers/status/1735357096777138304", + "display": "twitter.com/XDevelopers/st…" + }, + "reply_count": 1, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "2533341854", + "id_str": "1735440446749397299" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1735357096777138304", + "sortIndex": "1756309225740435450", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1735357096777138304", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyMjQ0OTk0OTQ1", + "rest_id": "2244994945", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Dec 14 04:35:55 +0000 2013", + "default_profile": false, + "default_profile_image": false, + "description": "The voice of the X Dev team and your official source for updates, news, and events, related to the X API.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "developer.twitter.com", + "expanded_url": "https://developer.twitter.com/", + "url": "https://t.co/RUXWsqdGk8", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2572, + "location": "127.0.0.1", + "media_count": 815, + "name": "Developers", + "normal_followers_count": 607490, + "pinned_tweet_ids_str": [ + "1661790253886177280" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2244994945/1690213128", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "XDevelopers", + "statuses_count": 4041, + "translator_type": "regular", + "url": "https://t.co/RUXWsqdGk8", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1516891231749517312", + "professional_type": "Business", + "category": [ + { + "id": 1009, + "name": "Community", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "card": { + "rest_id": "https://t.co/iWVHGMWojH", + "legacy": { + "binding_values": [ + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 144, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=144x144_2" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "We are excited to announce two new endpoints in the X API v2: Users Search Trends lookup These endpoints are available to all developers with the Pro access in the X API. The Users Search endpoint...", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "devcommunity.x.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 420, + "width": 420, + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=420x420_2" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 2453, + "width": 2400, + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 100, + "width": 100, + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=100x100_2" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 2048, + "width": 2004, + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "devcommunity.x.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 0, + "green": 0, + "red": 0 + }, + "percentage": 24.36 + }, + { + "rgb": { + "blue": 105, + "green": 105, + "red": 105 + }, + "percentage": 0.73 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Announcing the Users Search and Trends lookup endpoints in the X API v2", + "type": "STRING" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/iWVHGMWojH", + "type": "STRING" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary", + "url": "https://t.co/iWVHGMWojH", + "user_refs_results": [] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1735357096777138304" + ], + "editable_until_msecs": "1702579947000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "67511", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 28, + "bookmarked": false, + "created_at": "Thu Dec 14 17:52:27 +0000 2023", + "conversation_id_str": "1735357096777138304", + "display_text_range": [ + 0, + 202 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "bit.ly/xcommunity", + "expanded_url": "https://bit.ly/xcommunity", + "url": "https://t.co/iWVHGMWojH", + "indices": [ + 179, + 202 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 323, + "favorited": false, + "full_text": "Users search and Trends lookup endpoints are now available in X API v2 -- exclusively on Pro & Enterprise! \n\nWant to learn more about what these endpoints can do, visit here: https://t.co/iWVHGMWojH", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 16, + "reply_count": 56, + "retweet_count": 107, + "retweeted": false, + "user_id_str": "2244994945", + "id_str": "1735357096777138304" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1732773982875652503", + "sortIndex": "1756309225740435449", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1732773982875652503", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMDMzMDgxMDA=", + "rest_id": "103308100", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sat Jan 09 16:24:34 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "space pirate • engineering @x", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 2439, + "followers_count": 2260, + "friends_count": 1797, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 45, + "location": "London, England", + "media_count": 56, + "name": "jules", + "normal_followers_count": 2260, + "pinned_tweet_ids_str": [ + "1699699520618070380" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/103308100/1592590634", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1635345882915676176/QR7F5uVJ_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "iuliabaltoi", + "statuses_count": 493, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1455629879911849984", + "professional_type": "Creator", + "category": [ + { + "id": 557, + "name": "Magician", + "icon_name": "IconBriefcaseStroke" + } + ] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1732773982875652503" + ], + "editable_until_msecs": "1701964085000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "6995", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 2, + "bookmarked": false, + "created_at": "Thu Dec 07 14:48:05 +0000 2023", + "conversation_id_str": "1732773982875652503", + "display_text_range": [ + 0, + 55 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 107, + "favorited": false, + "full_text": "Grok is being released to premium+ users, how exciting!", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 12, + "retweet_count": 3, + "retweeted": false, + "user_id_str": "103308100", + "id_str": "1732773982875652503" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1732769973142003888", + "sortIndex": "1756309225740435448", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1732769973142003888", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1732769973142003888" + ], + "editable_until_msecs": "1701963129000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "27622004", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 1563, + "bookmarked": false, + "created_at": "Thu Dec 07 14:32:09 +0000 2023", + "conversation_id_str": "1732769973142003888", + "display_text_range": [ + 0, + 0 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/2LxB3FjZ2R", + "expanded_url": "https://twitter.com/elonmusk/status/1732769973142003888/photo/1", + "id_str": "1732769967567765504", + "indices": [ + 0, + 23 + ], + "media_key": "3_1732769967567765504", + "media_url_https": "https://pbs.twimg.com/media/GAwJGtpXgAA-mUd.jpg", + "type": "photo", + "url": "https://t.co/2LxB3FjZ2R", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 244, + "y": 361, + "h": 54, + "w": 54 + } + ] + }, + "medium": { + "faces": [ + { + "x": 244, + "y": 361, + "h": 54, + "w": 54 + } + ] + }, + "small": { + "faces": [ + { + "x": 244, + "y": 361, + "h": 54, + "w": 54 + } + ] + }, + "orig": { + "faces": [ + { + "x": 244, + "y": 361, + "h": 54, + "w": 54 + } + ] + } + }, + "sizes": { + "large": { + "h": 680, + "w": 674, + "resize": "fit" + }, + "medium": { + "h": 680, + "w": 674, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 674, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 680, + "width": 674, + "focus_rects": [ + { + "x": 0, + "y": 135, + "w": 674, + "h": 377 + }, + { + "x": 0, + "y": 0, + "w": 674, + "h": 674 + }, + { + "x": 0, + "y": 0, + "w": 596, + "h": 680 + }, + { + "x": 119, + "y": 0, + "w": 340, + "h": 680 + }, + { + "x": 0, + "y": 0, + "w": 674, + "h": 680 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/2LxB3FjZ2R", + "expanded_url": "https://twitter.com/elonmusk/status/1732769973142003888/photo/1", + "id_str": "1732769967567765504", + "indices": [ + 0, + 23 + ], + "media_key": "3_1732769967567765504", + "media_url_https": "https://pbs.twimg.com/media/GAwJGtpXgAA-mUd.jpg", + "type": "photo", + "url": "https://t.co/2LxB3FjZ2R", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 244, + "y": 361, + "h": 54, + "w": 54 + } + ] + }, + "medium": { + "faces": [ + { + "x": 244, + "y": 361, + "h": 54, + "w": 54 + } + ] + }, + "small": { + "faces": [ + { + "x": 244, + "y": 361, + "h": 54, + "w": 54 + } + ] + }, + "orig": { + "faces": [ + { + "x": 244, + "y": 361, + "h": 54, + "w": 54 + } + ] + } + }, + "sizes": { + "large": { + "h": 680, + "w": 674, + "resize": "fit" + }, + "medium": { + "h": 680, + "w": 674, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 674, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 680, + "width": 674, + "focus_rects": [ + { + "x": 0, + "y": 135, + "w": 674, + "h": 377 + }, + { + "x": 0, + "y": 0, + "w": 674, + "h": 674 + }, + { + "x": 0, + "y": 0, + "w": 596, + "h": 680 + }, + { + "x": 119, + "y": 0, + "w": 340, + "h": 680 + }, + { + "x": 0, + "y": 0, + "w": 674, + "h": 680 + } + ] + } + } + ] + }, + "favorite_count": 211636, + "favorited": false, + "full_text": "https://t.co/2LxB3FjZ2R", + "is_quote_status": false, + "lang": "zxx", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1233, + "reply_count": 8952, + "retweet_count": 16050, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1732769973142003888" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1732769629070655789", + "sortIndex": "1756309225740435447", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1732769629070655789", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1732769629070655789" + ], + "editable_until_msecs": "1701963047000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "14406145", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 516, + "bookmarked": false, + "created_at": "Thu Dec 07 14:30:47 +0000 2023", + "conversation_id_str": "1732769629070655789", + "display_text_range": [ + 0, + 86 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 38388, + "favorited": false, + "full_text": "Grok is rolling out to 𝕏 Premium+ subscribers with the latest app release. \n\nHave fun!", + "is_quote_status": false, + "lang": "en", + "quote_count": 502, + "reply_count": 4577, + "retweet_count": 4721, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1732769629070655789" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1720635518289908042", + "sortIndex": "1756309225740435446", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1720635518289908042", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1720635518289908042" + ], + "editable_until_msecs": "1699070050000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "33957065", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 2951, + "bookmarked": false, + "created_at": "Sat Nov 04 02:54:10 +0000 2023", + "conversation_id_str": "1720635518289908042", + "display_text_range": [ + 0, + 70 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/WqXxlwI6ef", + "expanded_url": "https://twitter.com/elonmusk/status/1720635518289908042/photo/1", + "id_str": "1720635513051230208", + "indices": [ + 71, + 94 + ], + "media_key": "3_1720635513051230208", + "media_url_https": "https://pbs.twimg.com/media/F-Ds4f9XMAAqpEs.jpg", + "type": "photo", + "url": "https://t.co/WqXxlwI6ef", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 84, + "y": 8, + "h": 53, + "w": 53 + } + ] + }, + "medium": { + "faces": [ + { + "x": 84, + "y": 8, + "h": 53, + "w": 53 + } + ] + }, + "small": { + "faces": [ + { + "x": 56, + "y": 5, + "h": 35, + "w": 35 + } + ] + }, + "orig": { + "faces": [ + { + "x": 84, + "y": 8, + "h": 53, + "w": 53 + } + ] + } + }, + "sizes": { + "large": { + "h": 518, + "w": 1008, + "resize": "fit" + }, + "medium": { + "h": 518, + "w": 1008, + "resize": "fit" + }, + "small": { + "h": 349, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 518, + "width": 1008, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 925, + "h": 518 + }, + { + "x": 0, + "y": 0, + "w": 518, + "h": 518 + }, + { + "x": 0, + "y": 0, + "w": 454, + "h": 518 + }, + { + "x": 47, + "y": 0, + "w": 259, + "h": 518 + }, + { + "x": 0, + "y": 0, + "w": 1008, + "h": 518 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/WqXxlwI6ef", + "expanded_url": "https://twitter.com/elonmusk/status/1720635518289908042/photo/1", + "id_str": "1720635513051230208", + "indices": [ + 71, + 94 + ], + "media_key": "3_1720635513051230208", + "media_url_https": "https://pbs.twimg.com/media/F-Ds4f9XMAAqpEs.jpg", + "type": "photo", + "url": "https://t.co/WqXxlwI6ef", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 84, + "y": 8, + "h": 53, + "w": 53 + } + ] + }, + "medium": { + "faces": [ + { + "x": 84, + "y": 8, + "h": 53, + "w": 53 + } + ] + }, + "small": { + "faces": [ + { + "x": 56, + "y": 5, + "h": 35, + "w": 35 + } + ] + }, + "orig": { + "faces": [ + { + "x": 84, + "y": 8, + "h": 53, + "w": 53 + } + ] + } + }, + "sizes": { + "large": { + "h": 518, + "w": 1008, + "resize": "fit" + }, + "medium": { + "h": 518, + "w": 1008, + "resize": "fit" + }, + "small": { + "h": 349, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 518, + "width": 1008, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 925, + "h": 518 + }, + { + "x": 0, + "y": 0, + "w": 518, + "h": 518 + }, + { + "x": 0, + "y": 0, + "w": 454, + "h": 518 + }, + { + "x": 47, + "y": 0, + "w": 259, + "h": 518 + }, + { + "x": 0, + "y": 0, + "w": 1008, + "h": 518 + } + ] + } + } + ] + }, + "favorite_count": 144040, + "favorited": false, + "full_text": "xAI’s Grok system is designed to have a little humor in its responses https://t.co/WqXxlwI6ef", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1897, + "reply_count": 8809, + "retweet_count": 12840, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1720635518289908042" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1717693915266990460", + "sortIndex": "1756309225740435445", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1717693915266990460", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1NDgyNjMyOTQ=", + "rest_id": "548263294", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Apr 08 08:36:04 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Driven by industry progress, inspired by provocative leadership, plus don't mind a good pair of shoes or a great @PennStateFball scoreboard either.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 6841, + "followers_count": 554654, + "friends_count": 1427, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 1880, + "location": "", + "media_count": 262, + "name": "Linda Yaccarino", + "normal_followers_count": 554654, + "pinned_tweet_ids_str": [ + "1755746656329302155" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/548263294/1690308383", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1659561668945354755/c5dthMBt_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "lindayaX", + "statuses_count": 2084, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/PbBSONctNw", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 402, + "width": 768, + "url": "https://pbs.twimg.com/card_img/1753501810176978944/IKzgppVY?format=png&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 147, + "width": 280, + "url": "https://pbs.twimg.com/card_img/1753501810176978944/IKzgppVY?format=png&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "October 27 marks the one-year anniversary of this platform under new ownership and management. I am incredibly proud of the work our team has been doing to accelerate the future of X.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "blog.twitter.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 315, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1753501810176978944/IKzgppVY?format=png&name=600x600" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1753501810176978944/IKzgppVY?format=png&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 403, + "width": 768, + "url": "https://pbs.twimg.com/card_img/1753501810176978944/IKzgppVY?format=png&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "1683696495198089217", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1753501810176978944/IKzgppVY?format=png&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 402, + "width": 768, + "url": "https://pbs.twimg.com/card_img/1753501810176978944/IKzgppVY?format=png&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 76, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1753501810176978944/IKzgppVY?format=png&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 403, + "width": 768, + "url": "https://pbs.twimg.com/card_img/1753501810176978944/IKzgppVY?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 403, + "width": 768, + "url": "https://pbs.twimg.com/card_img/1753501810176978944/IKzgppVY?format=png&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "blog.twitter.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1753501810176978944/IKzgppVY?format=png&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 1, + "green": 1, + "red": 1 + }, + "percentage": 96.48 + }, + { + "rgb": { + "blue": 235, + "green": 235, + "red": 235 + }, + "percentage": 2.8 + }, + { + "rgb": { + "blue": 115, + "green": 115, + "red": 115 + }, + "percentage": 1.08 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "One year in, the future of X is bright", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 1, + "green": 1, + "red": 1 + }, + "percentage": 96.48 + }, + { + "rgb": { + "blue": 235, + "green": 235, + "red": 235 + }, + "percentage": 2.8 + }, + { + "rgb": { + "blue": 115, + "green": 115, + "red": 115 + }, + "percentage": 1.08 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 403, + "width": 768, + "url": "https://pbs.twimg.com/card_img/1753501810176978944/IKzgppVY?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1753501810176978944/IKzgppVY?format=png&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 1, + "green": 1, + "red": 1 + }, + "percentage": 96.48 + }, + { + "rgb": { + "blue": 235, + "green": 235, + "red": 235 + }, + "percentage": 2.8 + }, + { + "rgb": { + "blue": 115, + "green": 115, + "red": 115 + }, + "percentage": 1.08 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 403, + "width": 768, + "url": "https://pbs.twimg.com/card_img/1753501810176978944/IKzgppVY?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/PbBSONctNw", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 403, + "width": 768, + "url": "https://pbs.twimg.com/card_img/1753501810176978944/IKzgppVY?format=png&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/PbBSONctNw", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjgzNjk2NDk1MTk4MDg5MjE3", + "rest_id": "1683696495198089217", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "protected": true, + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jul 25 04:31:50 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "This account is no longer active. Follow @x for updates.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 0, + "followers_count": 0, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "Twitter", + "normal_followers_count": 0, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683698521600565248/_R1r5HsQ_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "twitter", + "statuses_count": 0, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1717693915266990460" + ], + "editable_until_msecs": "1698368717000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "535756", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 108, + "bookmarked": false, + "created_at": "Fri Oct 27 00:05:17 +0000 2023", + "conversation_id_str": "1717693915266990460", + "display_text_range": [ + 0, + 249 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "blog.twitter.com/en_us/topics/c…", + "expanded_url": "https://blog.twitter.com/en_us/topics/company/2023/one-year-in", + "url": "https://t.co/PbBSONctNw", + "indices": [ + 226, + 249 + ] + } + ], + "user_mentions": [ + { + "id_str": "783214", + "name": "X", + "screen_name": "X", + "indices": [ + 80, + 82 + ] + } + ] + }, + "favorite_count": 3655, + "favorited": false, + "full_text": "One year into a bold vision. We have accelerated the future of this platform as @X. From promoting free expression to welcoming the creator economy to our incredible brand partnerships. Here's why the future of X is bright! 👇\nhttps://t.co/PbBSONctNw", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 122, + "reply_count": 833, + "retweet_count": 444, + "retweeted": false, + "user_id_str": "548263294", + "id_str": "1717693915266990460" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1717239924603159010", + "sortIndex": "1756309225740435444", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1717239924603159010", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo3ODMyMTQ=", + "rest_id": "783214", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Feb 20 14:35:54 +0000 2007", + "default_profile": false, + "default_profile_image": false, + "description": "what's happening?!", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.x.com", + "expanded_url": "https://about.x.com/", + "url": "https://t.co/bGcvaMApJO", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 5900, + "followers_count": 67508021, + "friends_count": 0, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 88701, + "location": "everywhere", + "media_count": 2416, + "name": "X", + "normal_followers_count": 67508021, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/783214/1690175171", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "X", + "statuses_count": 15158, + "translator_type": "regular", + "url": "https://t.co/bGcvaMApJO", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1717239924603159010" + ], + "editable_until_msecs": "1698260477000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "8660936", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 723, + "bookmarked": false, + "created_at": "Wed Oct 25 18:01:17 +0000 2023", + "conversation_id_str": "1717239924603159010", + "display_text_range": [ + 0, + 14 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 32920, + "favorited": false, + "full_text": "ready for it…?", + "is_quote_status": false, + "lang": "en", + "quote_count": 3625, + "reply_count": 8935, + "retweet_count": 4054, + "retweeted": false, + "user_id_str": "783214", + "id_str": "1717239924603159010" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1713333457147899998", + "sortIndex": "1756309225740435443", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1713333457147899998", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1713333457147899998" + ], + "editable_until_msecs": "1697329103000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "73932500", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1713317899769729261", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMzg5OTEzNTY3NjcxOTc1OTM3", + "rest_id": "1389913567671975937", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/MyDogeOfficial", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1656530956801523719/SC7nEKMa_bigger.png" + }, + "description": "MyDoge Wallet", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed May 05 12:03:43 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "UX/UI & Graphic Designer at Dogecoin & MyDoge Inc./ 𝕏 Creator", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "MyDoge.com", + "expanded_url": "http://MyDoge.com", + "url": "https://t.co/E0fsFaNdeI", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 69901, + "followers_count": 435732, + "friends_count": 855, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1441, + "location": "Dogecoin.com", + "media_count": 10853, + "name": "DogeDesigner", + "normal_followers_count": 435732, + "pinned_tweet_ids_str": [ + "1666836242330275841" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1389913567671975937/1707443905", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1498070100393754625/C2V-fbll_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "cb_doge", + "statuses_count": 24666, + "translator_type": "none", + "url": "https://t.co/E0fsFaNdeI", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1463329767675944960", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1713317899769729261" + ], + "editable_until_msecs": "1697325393000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "74432686", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 293, + "bookmarked": false, + "created_at": "Sat Oct 14 22:16:33 +0000 2023", + "conversation_id_str": "1713317899769729261", + "display_text_range": [ + 0, + 41 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/ep31DRC5e5", + "expanded_url": "https://twitter.com/cb_doge/status/1713317899769729261/photo/1", + "id_str": "1713317896372252672", + "indices": [ + 42, + 65 + ], + "media_key": "3_1713317896372252672", + "media_url_https": "https://pbs.twimg.com/media/F8btjJiWcAAL8T5.jpg", + "type": "photo", + "url": "https://t.co/ep31DRC5e5", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1017, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 763, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 432, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1017, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 72, + "w": 1600, + "h": 896 + }, + { + "x": 172, + "y": 0, + "w": 1017, + "h": 1017 + }, + { + "x": 234, + "y": 0, + "w": 892, + "h": 1017 + }, + { + "x": 426, + "y": 0, + "w": 509, + "h": 1017 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1017 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/ep31DRC5e5", + "expanded_url": "https://twitter.com/cb_doge/status/1713317899769729261/photo/1", + "id_str": "1713317896372252672", + "indices": [ + 42, + 65 + ], + "media_key": "3_1713317896372252672", + "media_url_https": "https://pbs.twimg.com/media/F8btjJiWcAAL8T5.jpg", + "type": "photo", + "url": "https://t.co/ep31DRC5e5", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1017, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 763, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 432, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1017, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 72, + "w": 1600, + "h": 896 + }, + { + "x": 172, + "y": 0, + "w": 1017, + "h": 1017 + }, + { + "x": 234, + "y": 0, + "w": 892, + "h": 1017 + }, + { + "x": 426, + "y": 0, + "w": 509, + "h": 1017 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1017 + } + ] + } + } + ] + }, + "favorite_count": 6591, + "favorited": false, + "full_text": "Everyone can be a citizen journalist on 𝕏 https://t.co/ep31DRC5e5", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 453, + "reply_count": 1129, + "retweet_count": 1097, + "retweeted": false, + "user_id_str": "1389913567671975937", + "id_str": "1713317899769729261" + } + } + }, + "legacy": { + "bookmark_count": 981, + "bookmarked": false, + "created_at": "Sat Oct 14 23:18:23 +0000 2023", + "conversation_id_str": "1713333457147899998", + "display_text_range": [ + 0, + 5 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 191057, + "favorited": false, + "full_text": "Yeah!", + "is_quote_status": true, + "lang": "en", + "quote_count": 1239, + "quoted_status_id_str": "1713317899769729261", + "quoted_status_permalink": { + "url": "https://t.co/sl5wouSItR", + "expanded": "https://twitter.com/cb_doge/status/1713317899769729261", + "display": "twitter.com/cb_doge/status…" + }, + "reply_count": 10451, + "retweet_count": 17850, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1713333457147899998" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1709575814860153234", + "sortIndex": "1756309225740435442", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1709575814860153234", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo3NTI1NjcyMjY=", + "rest_id": "752567226", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Sun Aug 12 06:01:46 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Your #1 News source on everything X + https://t.co/rn58CVV9pw | Hit Follow and sign up for notifications! 🔔 | Contributors: @HXMnCK, @512x512, @xUpdatesRadar and @swak_12", + "entities": { + "description": { + "urls": [ + { + "display_url": "x.AI", + "expanded_url": "http://x.AI", + "url": "https://t.co/rn58CVV9pw", + "indices": [ + 38, + 61 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 41321, + "followers_count": 271461, + "friends_count": 4109, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1470, + "location": "X HQ", + "media_count": 3285, + "name": "X News Daily", + "normal_followers_count": 271461, + "pinned_tweet_ids_str": [ + "1682849715862249472" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/752567226/1704781546", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1515124606583152648/4bZaW28-_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "xDaily", + "statuses_count": 11553, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1676343039281774593", + "professional_type": "Business", + "category": [ + { + "id": 579, + "name": "Media & News", + "icon_name": "IconBriefcaseStroke" + } + ] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1709575814860153234" + ], + "editable_until_msecs": "1696433211000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "812746", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE3MDk1NzU4MTQ3MTc1NjY5NzY=", + "text": "INSIGHT: @lindayaX shares insights at the Khanference regarding X. \n\n- People are spending 14% more time on X, with a 20% increase consuming video\n\n- Gen-Z is the largest and fastest growing segment --almost 200 million every month\n\n- There's a ton of activity on X-- with 100 billion impressions every day\n\n- A lot of content is created by its users -- with 500 million posts a day on X\n\n- Every single day 1.5 million people sign up (that's up 4% from last year)\n\n- Creators have 10x since June.\n\n- X has paid almost $20 million dollars to creators via its ad rev", + "entity_set": { + "hashtags": [], + "symbols": [], + "urls": [], + "user_mentions": [ + { + "id_str": "548263294", + "name": "Linda Yaccarino", + "screen_name": "lindayaX", + "indices": [ + 9, + 18 + ] + } + ] + } + } + } + }, + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1709564507972886681", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyNjE5MTYyMDc=", + "rest_id": "261916207", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Mar 06 23:56:18 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Co-Founder @Verishop; CIO of Proem Asset Management. Chairman @Alephholding. Former CSO @Snap. My tweets are my own opinion & not investment advice.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 1941, + "followers_count": 8855, + "friends_count": 714, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 97, + "location": "Dallas, TX", + "media_count": 103, + "name": "Imran Khan", + "normal_followers_count": 8855, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/926186569920159745/QTJmeG98_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "dottkhan", + "statuses_count": 1036, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1510415228357550096", + "professional_type": "Creator", + "category": [ + { + "id": 958, + "name": "Entrepreneur", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1709564507972886681" + ], + "editable_until_msecs": "1696430515000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "574942", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 20, + "bookmarked": false, + "created_at": "Wed Oct 04 13:41:55 +0000 2023", + "conversation_id_str": "1709564507972886681", + "display_text_range": [ + 0, + 190 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/OGEKwVYX1s", + "expanded_url": "https://twitter.com/dottkhan/status/1709564507972886681/photo/1", + "id_str": "1709564502600040448", + "indices": [ + 191, + 214 + ], + "media_key": "3_1709564502600040448", + "media_url_https": "https://pbs.twimg.com/media/F7mX24IXwAAMEak.jpg", + "type": "photo", + "url": "https://t.co/OGEKwVYX1s", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "all": { + "tags": [ + { + "user_id": "548263294", + "name": "Linda Yaccarino", + "screen_name": "lindayaX", + "type": "user" + }, + { + "user_id": "783214", + "name": "X", + "screen_name": "X", + "type": "user" + } + ] + }, + "large": { + "faces": [ + { + "x": 1280, + "y": 392, + "h": 214, + "w": 214 + } + ] + }, + "medium": { + "faces": [ + { + "x": 750, + "y": 229, + "h": 125, + "w": 125 + } + ] + }, + "small": { + "faces": [ + { + "x": 425, + "y": 130, + "h": 71, + "w": 71 + } + ] + }, + "orig": { + "faces": [ + { + "x": 1280, + "y": 392, + "h": 214, + "w": 214 + } + ] + } + }, + "sizes": { + "large": { + "h": 1536, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 900, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 510, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1536, + "width": 2048, + "focus_rects": [ + { + "x": 0, + "y": 195, + "w": 2048, + "h": 1147 + }, + { + "x": 0, + "y": 0, + "w": 1536, + "h": 1536 + }, + { + "x": 0, + "y": 0, + "w": 1347, + "h": 1536 + }, + { + "x": 281, + "y": 0, + "w": 768, + "h": 1536 + }, + { + "x": 0, + "y": 0, + "w": 2048, + "h": 1536 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "548263294", + "name": "Linda Yaccarino", + "screen_name": "lindayaX", + "indices": [ + 6, + 15 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/OGEKwVYX1s", + "expanded_url": "https://twitter.com/dottkhan/status/1709564507972886681/photo/1", + "id_str": "1709564502600040448", + "indices": [ + 191, + 214 + ], + "media_key": "3_1709564502600040448", + "media_url_https": "https://pbs.twimg.com/media/F7mX24IXwAAMEak.jpg", + "type": "photo", + "url": "https://t.co/OGEKwVYX1s", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "all": { + "tags": [ + { + "user_id": "548263294", + "name": "Linda Yaccarino", + "screen_name": "lindayaX", + "type": "user" + }, + { + "user_id": "783214", + "name": "X", + "screen_name": "X", + "type": "user" + } + ] + }, + "large": { + "faces": [ + { + "x": 1280, + "y": 392, + "h": 214, + "w": 214 + } + ] + }, + "medium": { + "faces": [ + { + "x": 750, + "y": 229, + "h": 125, + "w": 125 + } + ] + }, + "small": { + "faces": [ + { + "x": 425, + "y": 130, + "h": 71, + "w": 71 + } + ] + }, + "orig": { + "faces": [ + { + "x": 1280, + "y": 392, + "h": 214, + "w": 214 + } + ] + } + }, + "sizes": { + "large": { + "h": 1536, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 900, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 510, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1536, + "width": 2048, + "focus_rects": [ + { + "x": 0, + "y": 195, + "w": 2048, + "h": 1147 + }, + { + "x": 0, + "y": 0, + "w": 1536, + "h": 1536 + }, + { + "x": 0, + "y": 0, + "w": 1347, + "h": 1536 + }, + { + "x": 281, + "y": 0, + "w": 768, + "h": 1536 + }, + { + "x": 0, + "y": 0, + "w": 2048, + "h": 1536 + } + ] + } + } + ] + }, + "favorite_count": 299, + "favorited": false, + "full_text": "Today @lindayaX spent the morning with us at this year’s first Khanference and we had a wonderful conversation. Here are some facts that Linda shared straight from the heart of the platform: https://t.co/OGEKwVYX1s", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 23, + "reply_count": 30, + "retweet_count": 38, + "retweeted": false, + "user_id_str": "261916207", + "id_str": "1709564507972886681" + } + } + }, + "legacy": { + "bookmark_count": 44, + "bookmarked": false, + "created_at": "Wed Oct 04 14:26:51 +0000 2023", + "conversation_id_str": "1709575814860153234", + "display_text_range": [ + 0, + 277 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/wnuG4maQqi", + "expanded_url": "https://twitter.com/xDaily/status/1709575814860153234/photo/1", + "id_str": "1709575810959437824", + "indices": [ + 278, + 301 + ], + "media_key": "3_1709575810959437824", + "media_url_https": "https://pbs.twimg.com/media/F7miJHDWcAAiV09.jpg", + "type": "photo", + "url": "https://t.co/wnuG4maQqi", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 757, + "y": 533, + "h": 60, + "w": 60 + }, + { + "x": 615, + "y": 106, + "h": 263, + "w": 263 + } + ] + }, + "medium": { + "faces": [ + { + "x": 605, + "y": 426, + "h": 48, + "w": 48 + }, + { + "x": 492, + "y": 84, + "h": 210, + "w": 210 + } + ] + }, + "small": { + "faces": [ + { + "x": 343, + "y": 241, + "h": 27, + "w": 27 + }, + { + "x": 278, + "y": 48, + "h": 119, + "w": 119 + } + ] + }, + "orig": { + "faces": [ + { + "x": 757, + "y": 533, + "h": 60, + "w": 60 + }, + { + "x": 615, + "y": 106, + "h": 263, + "w": 263 + } + ] + } + }, + "sizes": { + "large": { + "h": 845, + "w": 1500, + "resize": "fit" + }, + "medium": { + "h": 676, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 845, + "width": 1500, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1500, + "h": 840 + }, + { + "x": 365, + "y": 0, + "w": 845, + "h": 845 + }, + { + "x": 417, + "y": 0, + "w": 741, + "h": 845 + }, + { + "x": 576, + "y": 0, + "w": 423, + "h": 845 + }, + { + "x": 0, + "y": 0, + "w": 1500, + "h": 845 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "548263294", + "name": "Linda Yaccarino", + "screen_name": "lindayaX", + "indices": [ + 9, + 18 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/wnuG4maQqi", + "expanded_url": "https://twitter.com/xDaily/status/1709575814860153234/photo/1", + "id_str": "1709575810959437824", + "indices": [ + 278, + 301 + ], + "media_key": "3_1709575810959437824", + "media_url_https": "https://pbs.twimg.com/media/F7miJHDWcAAiV09.jpg", + "type": "photo", + "url": "https://t.co/wnuG4maQqi", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 757, + "y": 533, + "h": 60, + "w": 60 + }, + { + "x": 615, + "y": 106, + "h": 263, + "w": 263 + } + ] + }, + "medium": { + "faces": [ + { + "x": 605, + "y": 426, + "h": 48, + "w": 48 + }, + { + "x": 492, + "y": 84, + "h": 210, + "w": 210 + } + ] + }, + "small": { + "faces": [ + { + "x": 343, + "y": 241, + "h": 27, + "w": 27 + }, + { + "x": 278, + "y": 48, + "h": 119, + "w": 119 + } + ] + }, + "orig": { + "faces": [ + { + "x": 757, + "y": 533, + "h": 60, + "w": 60 + }, + { + "x": 615, + "y": 106, + "h": 263, + "w": 263 + } + ] + } + }, + "sizes": { + "large": { + "h": 845, + "w": 1500, + "resize": "fit" + }, + "medium": { + "h": 676, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 845, + "width": 1500, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1500, + "h": 840 + }, + { + "x": 365, + "y": 0, + "w": 845, + "h": 845 + }, + { + "x": 417, + "y": 0, + "w": 741, + "h": 845 + }, + { + "x": 576, + "y": 0, + "w": 423, + "h": 845 + }, + { + "x": 0, + "y": 0, + "w": 1500, + "h": 845 + } + ] + } + } + ] + }, + "favorite_count": 989, + "favorited": false, + "full_text": "INSIGHT: @lindayaX shares insights at the Khanference regarding X. \n\n- People are spending 14% more time on X, with a 20% increase consuming video\n\n- Gen-Z is the largest and fastest growing segment --almost 200 million every month\n\n- There's a ton of activity on X-- with 100… https://t.co/wnuG4maQqi", + "is_quote_status": true, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 68, + "quoted_status_id_str": "1709564507972886681", + "quoted_status_permalink": { + "url": "https://t.co/jZNC61qvqE", + "expanded": "https://twitter.com/dottkhan/status/1709564507972886681", + "display": "twitter.com/dottkhan/statu…" + }, + "reply_count": 126, + "retweet_count": 109, + "retweeted": false, + "user_id_str": "752567226", + "id_str": "1709575814860153234" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1708195875510796673", + "sortIndex": "1756309225740435441", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1708195875510796673", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDQzNzcwNQ==", + "rest_id": "14437705", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Fri Apr 18 21:32:09 +0000 2008", + "default_profile": true, + "default_profile_image": false, + "description": "Blob of organized mud that likes to eat tacos. Engineering lead for media on here.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 1588, + "followers_count": 6904, + "friends_count": 1400, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 109, + "location": "San Francisco", + "media_count": 32, + "name": "Mark Kalman", + "normal_followers_count": 6904, + "pinned_tweet_ids_str": [ + "1708195875510796673" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14437705/1638926851", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1468391759554101253/OmlocAfz_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "marmars", + "statuses_count": 174, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1708195875510796673" + ], + "editable_until_msecs": "1696104208000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "37562353", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 5155, + "bookmarked": false, + "created_at": "Sat Sep 30 19:03:28 +0000 2023", + "conversation_id_str": "1708195875510796673", + "display_text_range": [ + 0, + 52 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/KwpQZRfXF9", + "expanded_url": "https://twitter.com/marmars/status/1708195875510796673/video/1", + "id_str": "1708195416200957952", + "indices": [ + 53, + 76 + ], + "media_key": "13_1708195416200957952", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1708195416200957952/img/W0MWk5fFd3HR_4MS.jpg", + "type": "video", + "url": "https://t.co/KwpQZRfXF9", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1920, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1920, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 245691, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1708195416200957952/pl/Ry9LITjweNGfre2v.m3u8?tag=14&container=cmaf&v=f4e" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1708195416200957952/vid/avc1/1280x720/kUZnGOsRru17O0Ns.mp4?tag=14" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1708195416200957952/vid/avc1/640x360/mV2AuQPht0-cbf06.mp4?tag=14" + }, + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1708195416200957952/vid/avc1/480x270/2A8dvCazvZs6ssw-.mp4?tag=14" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/KwpQZRfXF9", + "expanded_url": "https://twitter.com/marmars/status/1708195875510796673/video/1", + "id_str": "1708195416200957952", + "indices": [ + 53, + 76 + ], + "media_key": "13_1708195416200957952", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1708195416200957952/img/W0MWk5fFd3HR_4MS.jpg", + "type": "video", + "url": "https://t.co/KwpQZRfXF9", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1920, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1920, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 245691, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1708195416200957952/pl/Ry9LITjweNGfre2v.m3u8?tag=14&container=cmaf&v=f4e" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1708195416200957952/vid/avc1/1280x720/kUZnGOsRru17O0Ns.mp4?tag=14" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1708195416200957952/vid/avc1/640x360/mV2AuQPht0-cbf06.mp4?tag=14" + }, + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1708195416200957952/vid/avc1/480x270/2A8dvCazvZs6ssw-.mp4?tag=14" + } + ] + } + } + ] + }, + "favorite_count": 17731, + "favorited": false, + "full_text": "How to game stream on here (for Premium subscribers) https://t.co/KwpQZRfXF9", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 756, + "reply_count": 1527, + "retweet_count": 2882, + "retweeted": false, + "user_id_str": "14437705", + "id_str": "1708195875510796673" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1708197938969887018", + "sortIndex": "1756309225740435440", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1708197938969887018", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1708197938969887018" + ], + "editable_until_msecs": "1696104700000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "30173372", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1708195875510796673", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDQzNzcwNQ==", + "rest_id": "14437705", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Fri Apr 18 21:32:09 +0000 2008", + "default_profile": true, + "default_profile_image": false, + "description": "Blob of organized mud that likes to eat tacos. Engineering lead for media on here.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 1588, + "followers_count": 6904, + "friends_count": 1400, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 109, + "location": "San Francisco", + "media_count": 32, + "name": "Mark Kalman", + "normal_followers_count": 6904, + "pinned_tweet_ids_str": [ + "1708195875510796673" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14437705/1638926851", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1468391759554101253/OmlocAfz_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "marmars", + "statuses_count": 174, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1708195875510796673" + ], + "editable_until_msecs": "1696104208000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "37562353", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 5155, + "bookmarked": false, + "created_at": "Sat Sep 30 19:03:28 +0000 2023", + "conversation_id_str": "1708195875510796673", + "display_text_range": [ + 0, + 52 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/KwpQZRfXF9", + "expanded_url": "https://twitter.com/marmars/status/1708195875510796673/video/1", + "id_str": "1708195416200957952", + "indices": [ + 53, + 76 + ], + "media_key": "13_1708195416200957952", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1708195416200957952/img/W0MWk5fFd3HR_4MS.jpg", + "type": "video", + "url": "https://t.co/KwpQZRfXF9", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1920, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1920, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 245691, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1708195416200957952/pl/Ry9LITjweNGfre2v.m3u8?tag=14&container=cmaf&v=f4e" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1708195416200957952/vid/avc1/1280x720/kUZnGOsRru17O0Ns.mp4?tag=14" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1708195416200957952/vid/avc1/640x360/mV2AuQPht0-cbf06.mp4?tag=14" + }, + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1708195416200957952/vid/avc1/480x270/2A8dvCazvZs6ssw-.mp4?tag=14" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/KwpQZRfXF9", + "expanded_url": "https://twitter.com/marmars/status/1708195875510796673/video/1", + "id_str": "1708195416200957952", + "indices": [ + 53, + 76 + ], + "media_key": "13_1708195416200957952", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1708195416200957952/img/W0MWk5fFd3HR_4MS.jpg", + "type": "video", + "url": "https://t.co/KwpQZRfXF9", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1920, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1920, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 245691, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1708195416200957952/pl/Ry9LITjweNGfre2v.m3u8?tag=14&container=cmaf&v=f4e" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1708195416200957952/vid/avc1/1280x720/kUZnGOsRru17O0Ns.mp4?tag=14" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1708195416200957952/vid/avc1/640x360/mV2AuQPht0-cbf06.mp4?tag=14" + }, + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1708195416200957952/vid/avc1/480x270/2A8dvCazvZs6ssw-.mp4?tag=14" + } + ] + } + } + ] + }, + "favorite_count": 17731, + "favorited": false, + "full_text": "How to game stream on here (for Premium subscribers) https://t.co/KwpQZRfXF9", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 756, + "reply_count": 1527, + "retweet_count": 2882, + "retweeted": false, + "user_id_str": "14437705", + "id_str": "1708195875510796673" + } + } + }, + "legacy": { + "bookmark_count": 5577, + "bookmarked": false, + "created_at": "Sat Sep 30 19:11:40 +0000 2023", + "conversation_id_str": "1708197938969887018", + "display_text_range": [ + 0, + 228 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 106947, + "favorited": false, + "full_text": "How to stream games or anything you’d like on X!\n\nI will be streaming myself playing video games from time to time. Kids, friends & video games are how I spend my non-work waking hours. Sometimes, you can combine all three 😀", + "is_quote_status": true, + "lang": "en", + "quote_count": 1065, + "quoted_status_id_str": "1708195875510796673", + "quoted_status_permalink": { + "url": "https://t.co/ImNWbRtzR3", + "expanded": "https://twitter.com/marmars/status/1708195875510796673", + "display": "twitter.com/marmars/status…" + }, + "reply_count": 7230, + "retweet_count": 13365, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1708197938969887018" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1707518489584660992", + "sortIndex": "1756309225740435439", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1707518489584660992", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozNDc0MzI1MQ==", + "rest_id": "34743251", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Apr 23 21:53:30 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "SpaceX designs, manufactures and launches the world’s most advanced rockets and spacecraft", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "spacex.com", + "expanded_url": "http://spacex.com", + "url": "https://t.co/VOJ6qEctND", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 453, + "followers_count": 33240359, + "friends_count": 104, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 41695, + "location": "Earth", + "media_count": 2817, + "name": "SpaceX", + "normal_followers_count": 33240359, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/34743251/1681251194", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1697749409851985920/HbrI04tM_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "SpaceX", + "statuses_count": 7992, + "translator_type": "none", + "url": "https://t.co/VOJ6qEctND", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1681839322029502464", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1707518489584660992" + ], + "editable_until_msecs": "1695942706000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "21168036", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 926, + "bookmarked": false, + "created_at": "Thu Sep 28 22:11:46 +0000 2023", + "conversation_id_str": "1707518489584660992", + "display_text_range": [ + 0, + 102 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/04p7vKEoTu", + "expanded_url": "https://twitter.com/SpaceX/status/1707518489584660992/video/1", + "id_str": "1707515794308190208", + "indices": [ + 103, + 126 + ], + "media_key": "7_1707515794308190208", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1707515794308190208/pu/img/OtSxfv7ExKqYB476.jpg", + "type": "video", + "url": "https://t.co/04p7vKEoTu", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1920, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1920, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 151651, + "variants": [ + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1707515794308190208/pu/vid/avc1/1920x1080/CSEgJREpD8IvHvAN.mp4?tag=14" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1707515794308190208/pu/vid/avc1/640x360/WZLRqSHtYe0eneVE.mp4?tag=14" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1707515794308190208/pu/pl/WQwgOFORwBbc6Q5V.m3u8?tag=14&container=cmaf&v=e48" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1707515794308190208/pu/vid/avc1/1280x720/oOKhrIPAKxrrmJK7.mp4?tag=14" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1707515794308190208/pu/vid/avc1/480x270/TQQ3zIttZGmTLVJ5.mp4?tag=14" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/04p7vKEoTu", + "expanded_url": "https://twitter.com/SpaceX/status/1707518489584660992/video/1", + "id_str": "1707515794308190208", + "indices": [ + 103, + 126 + ], + "media_key": "7_1707515794308190208", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1707515794308190208/pu/img/OtSxfv7ExKqYB476.jpg", + "type": "video", + "url": "https://t.co/04p7vKEoTu", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1920, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1920, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 151651, + "variants": [ + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1707515794308190208/pu/vid/avc1/1920x1080/CSEgJREpD8IvHvAN.mp4?tag=14" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1707515794308190208/pu/vid/avc1/640x360/WZLRqSHtYe0eneVE.mp4?tag=14" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1707515794308190208/pu/pl/WQwgOFORwBbc6Q5V.m3u8?tag=14&container=cmaf&v=e48" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1707515794308190208/pu/vid/avc1/1280x720/oOKhrIPAKxrrmJK7.mp4?tag=14" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1707515794308190208/pu/vid/avc1/480x270/TQQ3zIttZGmTLVJ5.mp4?tag=14" + } + ] + } + } + ] + }, + "favorite_count": 24184, + "favorited": false, + "full_text": "15 years ago today, Falcon 1 was the first privately developed liquid fuel rocket to reach Earth orbit https://t.co/04p7vKEoTu", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 30755, + "reply_count": 817, + "retweet_count": 3883, + "retweeted": false, + "user_id_str": "34743251", + "id_str": "1707518489584660992" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1704445173080453477", + "sortIndex": "1756309225740435438", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1704445173080453477", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1704445173080453477" + ], + "editable_until_msecs": "1695209970000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "47769757", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1704341614213156910", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozNDc0MzI1MQ==", + "rest_id": "34743251", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Apr 23 21:53:30 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "SpaceX designs, manufactures and launches the world’s most advanced rockets and spacecraft", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "spacex.com", + "expanded_url": "http://spacex.com", + "url": "https://t.co/VOJ6qEctND", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 453, + "followers_count": 33240359, + "friends_count": 104, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 41695, + "location": "Earth", + "media_count": 2817, + "name": "SpaceX", + "normal_followers_count": 33240359, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/34743251/1681251194", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1697749409851985920/HbrI04tM_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "SpaceX", + "statuses_count": 7992, + "translator_type": "none", + "url": "https://t.co/VOJ6qEctND", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1681839322029502464", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1704341614213156910" + ], + "editable_until_msecs": "1695185280000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "50310287", + "state": "EnabledWithCount" + }, + "source": "Twitter Media Studio - LiveCut", + "legacy": { + "bookmark_count": 500, + "bookmarked": false, + "created_at": "Wed Sep 20 03:48:00 +0000 2023", + "conversation_id_str": "1704341614213156910", + "display_text_range": [ + 0, + 133 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/DFCw43FoVw", + "expanded_url": "https://twitter.com/SpaceX/status/1704341614213156910/video/1", + "id_str": "1704341523003740160", + "indices": [ + 134, + 157 + ], + "media_key": "13_1704341523003740160", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1704341523003740160/img/OngXP0ercbDRESTp.jpg", + "type": "video", + "url": "https://t.co/DFCw43FoVw", + "additional_media_info": { + "title": "", + "description": "", + "embeddable": true, + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1920, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1920, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 13740, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1704341523003740160/pl/Fdi1ZTzuVnaHiW5z.m3u8?tag=16&container=cmaf&v=e33" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1704341523003740160/vid/avc1/1280x720/kKybK6E3EdgC8FT4.mp4?tag=16" + }, + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1704341523003740160/vid/avc1/480x270/K__1IQtIQk10LYJG.mp4?tag=16" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1704341523003740160/vid/avc1/640x360/dui5yyL83E0wxaK9.mp4?tag=16" + }, + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1704341523003740160/vid/avc1/1920x1080/Jm6emUSsy67EXtvM.mp4?tag=16" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/DFCw43FoVw", + "expanded_url": "https://twitter.com/SpaceX/status/1704341614213156910/video/1", + "id_str": "1704341523003740160", + "indices": [ + 134, + 157 + ], + "media_key": "13_1704341523003740160", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1704341523003740160/img/OngXP0ercbDRESTp.jpg", + "type": "video", + "url": "https://t.co/DFCw43FoVw", + "additional_media_info": { + "title": "", + "description": "", + "embeddable": true, + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1920, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1920, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 13740, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1704341523003740160/pl/Fdi1ZTzuVnaHiW5z.m3u8?tag=16&container=cmaf&v=e33" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1704341523003740160/vid/avc1/1280x720/kKybK6E3EdgC8FT4.mp4?tag=16" + }, + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1704341523003740160/vid/avc1/480x270/K__1IQtIQk10LYJG.mp4?tag=16" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1704341523003740160/vid/avc1/640x360/dui5yyL83E0wxaK9.mp4?tag=16" + }, + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1704341523003740160/vid/avc1/1920x1080/Jm6emUSsy67EXtvM.mp4?tag=16" + } + ] + } + } + ] + }, + "favorite_count": 23110, + "favorited": false, + "full_text": "Falcon 9’s first stage has landed on the A Shortfall of Gravitas droneship, completing the first 17th launch and landing of a booster https://t.co/DFCw43FoVw", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 359, + "reply_count": 1092, + "retweet_count": 2943, + "retweeted": false, + "user_id_str": "34743251", + "id_str": "1704341614213156910" + } + } + }, + "legacy": { + "bookmark_count": 503, + "bookmarked": false, + "created_at": "Wed Sep 20 10:39:30 +0000 2023", + "conversation_id_str": "1704445173080453477", + "display_text_range": [ + 0, + 12 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 174635, + "favorited": false, + "full_text": "17th landing", + "is_quote_status": true, + "lang": "en", + "quote_count": 9148, + "quoted_status_id_str": "1704341614213156910", + "quoted_status_permalink": { + "url": "https://t.co/fw6enlgg03", + "expanded": "https://twitter.com/SpaceX/status/1704341614213156910", + "display": "twitter.com/SpaceX/status/…" + }, + "reply_count": 7272, + "retweet_count": 15626, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1704445173080453477" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1701778912907604282", + "sortIndex": "1756309225740435437", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1701778912907604282", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1701778912907604282" + ], + "editable_until_msecs": "1694574285000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "73226204", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1701634752661409933", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo3ODMyMTQ=", + "rest_id": "783214", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Feb 20 14:35:54 +0000 2007", + "default_profile": false, + "default_profile_image": false, + "description": "what's happening?!", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "about.x.com", + "expanded_url": "https://about.x.com/", + "url": "https://t.co/bGcvaMApJO", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 5900, + "followers_count": 67508021, + "friends_count": 0, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 88701, + "location": "everywhere", + "media_count": 2416, + "name": "X", + "normal_followers_count": 67508021, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/783214/1690175171", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "X", + "statuses_count": 15158, + "translator_type": "regular", + "url": "https://t.co/bGcvaMApJO", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1701634752661409933" + ], + "editable_until_msecs": "1694539914000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "76986035", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 306, + "bookmarked": false, + "created_at": "Tue Sep 12 16:31:54 +0000 2023", + "conversation_id_str": "1701634752661409933", + "display_text_range": [ + 0, + 58 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 14357, + "favorited": false, + "full_text": "swipe up on a video to watch content recommended for you 🎥", + "is_quote_status": false, + "lang": "en", + "quote_count": 415, + "reply_count": 2522, + "retweet_count": 1694, + "retweeted": false, + "user_id_str": "783214", + "id_str": "1701634752661409933" + } + } + }, + "legacy": { + "bookmark_count": 633, + "bookmarked": false, + "created_at": "Wed Sep 13 02:04:45 +0000 2023", + "conversation_id_str": "1701778912907604282", + "display_text_range": [ + 0, + 10 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 126095, + "favorited": false, + "full_text": "Swipe up 🧻", + "is_quote_status": true, + "lang": "en", + "quote_count": 579, + "quoted_status_id_str": "1701634752661409933", + "quoted_status_permalink": { + "url": "https://t.co/8Q3hEE12VC", + "expanded": "https://twitter.com/X/status/1701634752661409933", + "display": "twitter.com/X/status/17016…" + }, + "reply_count": 7985, + "retweet_count": 9018, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1701778912907604282" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1699282206475288643", + "sortIndex": "1756309225740435436", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1699282206475288643", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo3NTI1NjcyMjY=", + "rest_id": "752567226", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Sun Aug 12 06:01:46 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Your #1 News source on everything X + https://t.co/rn58CVV9pw | Hit Follow and sign up for notifications! 🔔 | Contributors: @HXMnCK, @512x512, @xUpdatesRadar and @swak_12", + "entities": { + "description": { + "urls": [ + { + "display_url": "x.AI", + "expanded_url": "http://x.AI", + "url": "https://t.co/rn58CVV9pw", + "indices": [ + 38, + 61 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 41321, + "followers_count": 271461, + "friends_count": 4109, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1470, + "location": "X HQ", + "media_count": 3285, + "name": "X News Daily", + "normal_followers_count": 271461, + "pinned_tweet_ids_str": [ + "1682849715862249472" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/752567226/1704781546", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1515124606583152648/4bZaW28-_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "xDaily", + "statuses_count": 11553, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1676343039281774593", + "professional_type": "Business", + "category": [ + { + "id": 579, + "name": "Media & News", + "icon_name": "IconBriefcaseStroke" + } + ] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1699282206475288643" + ], + "editable_until_msecs": "1693979023000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "26671", + "state": "EnabledWithCount" + }, + "source": "Typefully", + "legacy": { + "bookmark_count": 9, + "bookmarked": false, + "created_at": "Wed Sep 06 04:43:43 +0000 2023", + "conversation_id_str": "1699282206475288643", + "display_text_range": [ + 0, + 196 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/BQwzaZTFB7", + "expanded_url": "https://twitter.com/xDaily/status/1699282206475288643/photo/1", + "id_str": "1699282202717270016", + "indices": [ + 197, + 220 + ], + "media_key": "3_1699282202717270016", + "media_url_https": "https://pbs.twimg.com/media/F5UQKQIbMAA_vJC.jpg", + "type": "photo", + "url": "https://t.co/BQwzaZTFB7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 506, + "y": 386, + "h": 53, + "w": 53 + }, + { + "x": 264, + "y": 313, + "h": 156, + "w": 156 + } + ] + }, + "medium": { + "faces": [ + { + "x": 506, + "y": 386, + "h": 53, + "w": 53 + }, + { + "x": 264, + "y": 313, + "h": 156, + "w": 156 + } + ] + }, + "small": { + "faces": [ + { + "x": 348, + "y": 265, + "h": 36, + "w": 36 + }, + { + "x": 181, + "y": 215, + "h": 107, + "w": 107 + } + ] + }, + "orig": { + "faces": [ + { + "x": 506, + "y": 386, + "h": 53, + "w": 53 + }, + { + "x": 264, + "y": 313, + "h": 156, + "w": 156 + } + ] + } + }, + "sizes": { + "large": { + "h": 862, + "w": 988, + "resize": "fit" + }, + "medium": { + "h": 862, + "w": 988, + "resize": "fit" + }, + "small": { + "h": 593, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 862, + "width": 988, + "focus_rects": [ + { + "x": 0, + "y": 94, + "w": 988, + "h": 553 + }, + { + "x": 126, + "y": 0, + "w": 862, + "h": 862 + }, + { + "x": 232, + "y": 0, + "w": 756, + "h": 862 + }, + { + "x": 402, + "y": 0, + "w": 431, + "h": 862 + }, + { + "x": 0, + "y": 0, + "w": 988, + "h": 862 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "2244994945", + "name": "Developers", + "screen_name": "XDevelopers", + "indices": [ + 6, + 18 + ] + }, + { + "id_str": "765154003852390400", + "name": "Asmaa | اسماء", + "screen_name": "ALadyInKuwait", + "indices": [ + 182, + 196 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/BQwzaZTFB7", + "expanded_url": "https://twitter.com/xDaily/status/1699282206475288643/photo/1", + "id_str": "1699282202717270016", + "indices": [ + 197, + 220 + ], + "media_key": "3_1699282202717270016", + "media_url_https": "https://pbs.twimg.com/media/F5UQKQIbMAA_vJC.jpg", + "type": "photo", + "url": "https://t.co/BQwzaZTFB7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 506, + "y": 386, + "h": 53, + "w": 53 + }, + { + "x": 264, + "y": 313, + "h": 156, + "w": 156 + } + ] + }, + "medium": { + "faces": [ + { + "x": 506, + "y": 386, + "h": 53, + "w": 53 + }, + { + "x": 264, + "y": 313, + "h": 156, + "w": 156 + } + ] + }, + "small": { + "faces": [ + { + "x": 348, + "y": 265, + "h": 36, + "w": 36 + }, + { + "x": 181, + "y": 215, + "h": 107, + "w": 107 + } + ] + }, + "orig": { + "faces": [ + { + "x": 506, + "y": 386, + "h": 53, + "w": 53 + }, + { + "x": 264, + "y": 313, + "h": 156, + "w": 156 + } + ] + } + }, + "sizes": { + "large": { + "h": 862, + "w": 988, + "resize": "fit" + }, + "medium": { + "h": 862, + "w": 988, + "resize": "fit" + }, + "small": { + "h": 593, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 862, + "width": 988, + "focus_rects": [ + { + "x": 0, + "y": 94, + "w": 988, + "h": 553 + }, + { + "x": 126, + "y": 0, + "w": 862, + "h": 862 + }, + { + "x": 232, + "y": 0, + "w": 756, + "h": 862 + }, + { + "x": 402, + "y": 0, + "w": 431, + "h": 862 + }, + { + "x": 0, + "y": 0, + "w": 988, + "h": 862 + } + ] + } + } + ] + }, + "favorite_count": 207, + "favorited": false, + "full_text": "NEWS: @XDevelopers is running ads for the X API.\n\nWith X's new ad targetting features it is likely the platform can target this to its relevant audience much better than before. Via @ALadyInKuwait https://t.co/BQwzaZTFB7", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 3, + "reply_count": 26, + "retweet_count": 19, + "retweeted": false, + "user_id_str": "752567226", + "id_str": "1699282206475288643" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1698413251892011401", + "sortIndex": "1756309225740435435", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1698413251892011401", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1NDgyNjMyOTQ=", + "rest_id": "548263294", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Apr 08 08:36:04 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Driven by industry progress, inspired by provocative leadership, plus don't mind a good pair of shoes or a great @PennStateFball scoreboard either.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 6841, + "followers_count": 554654, + "friends_count": 1427, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 1880, + "location": "", + "media_count": 262, + "name": "Linda Yaccarino", + "normal_followers_count": 554654, + "pinned_tweet_ids_str": [ + "1755746656329302155" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/548263294/1690308383", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1659561668945354755/c5dthMBt_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "lindayaX", + "statuses_count": 2084, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1698413251892011401" + ], + "editable_until_msecs": "1693771848000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "22272700", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1698357217991479414", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo2OTAwODU2Mw==", + "rest_id": "69008563", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed Aug 26 15:19:37 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "The home of risk takers, late brakers and history makers 💫 \n\n2024 BEGINS: BAHRAIN 🇧🇭 29 FEBRUARY - 2 MARCH", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "F1.com", + "expanded_url": "https://www.F1.com", + "url": "https://t.co/GumNgQuzik", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 5864, + "followers_count": 10006459, + "friends_count": 94, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 37432, + "location": "", + "media_count": 59002, + "name": "Formula 1", + "normal_followers_count": 10006459, + "pinned_tweet_ids_str": [ + "1753136622625784284" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/69008563/1701706135", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1612433922733887489/7f5XFklA_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "F1", + "statuses_count": 87023, + "translator_type": "regular", + "url": "https://t.co/GumNgQuzik", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1698357217991479414" + ], + "editable_until_msecs": "1693758489000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1428161", + "state": "EnabledWithCount" + }, + "source": "Twitter Media Studio", + "legacy": { + "bookmark_count": 80, + "bookmarked": false, + "created_at": "Sun Sep 03 15:28:09 +0000 2023", + "conversation_id_str": "1698357217991479414", + "display_text_range": [ + 0, + 169 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 155, + 165 + ], + "text": "ItalianGP" + }, + { + "indices": [ + 166, + 169 + ], + "text": "F1" + } + ], + "media": [ + { + "display_url": "pic.twitter.com/rZLikpbMfK", + "expanded_url": "https://twitter.com/F1/status/1698357217991479414/video/1", + "id_str": "1698356139606626304", + "indices": [ + 170, + 193 + ], + "media_key": "13_1698356139606626304", + "media_url_https": "https://pbs.twimg.com/media/F5HGJhibkAEnZcw.jpg", + "type": "video", + "url": "https://t.co/rZLikpbMfK", + "additional_media_info": { + "title": "", + "description": "", + "embeddable": false, + "monetizable": true + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 720, + "resize": "fit" + }, + "medium": { + "h": 720, + "w": 720, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 720, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 1, + 1 + ], + "duration_millis": 36520, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1698356139606626304/pl/Bv6teVmAisIHuTpg.m3u8?tag=14&container=cmaf&v=a4b" + }, + { + "bitrate": 1280000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1698356139606626304/vid/720x720/djWLhD2dhmaBBcTZ.mp4?tag=14" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1698356139606626304/vid/540x540/MUEFgx5Ku5URdDU2.mp4?tag=14" + }, + { + "bitrate": 432000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1698356139606626304/vid/320x320/4dTgdNrVlxPSSEvI.mp4?tag=14" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "556260847", + "name": "Max Verstappen", + "screen_name": "Max33Verstappen", + "indices": [ + 103, + 119 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/rZLikpbMfK", + "expanded_url": "https://twitter.com/F1/status/1698357217991479414/video/1", + "id_str": "1698356139606626304", + "indices": [ + 170, + 193 + ], + "media_key": "13_1698356139606626304", + "media_url_https": "https://pbs.twimg.com/media/F5HGJhibkAEnZcw.jpg", + "type": "video", + "url": "https://t.co/rZLikpbMfK", + "additional_media_info": { + "title": "", + "description": "", + "embeddable": false, + "monetizable": true + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 720, + "resize": "fit" + }, + "medium": { + "h": 720, + "w": 720, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 720, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 1, + 1 + ], + "duration_millis": 36520, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1698356139606626304/pl/Bv6teVmAisIHuTpg.m3u8?tag=14&container=cmaf&v=a4b" + }, + { + "bitrate": 1280000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1698356139606626304/vid/720x720/djWLhD2dhmaBBcTZ.mp4?tag=14" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1698356139606626304/vid/540x540/MUEFgx5Ku5URdDU2.mp4?tag=14" + }, + { + "bitrate": 432000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1698356139606626304/vid/320x320/4dTgdNrVlxPSSEvI.mp4?tag=14" + } + ] + } + } + ] + }, + "favorite_count": 7306, + "favorited": false, + "full_text": "Max: Sets dominant, all-time Formula 1 record\nAlso Max: \"Not too bad!\" 😅\n\nAnother record to add to the @Max33Verstappen collection, with victory in Monza\n\n#ItalianGP #F1 https://t.co/rZLikpbMfK", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 92, + "reply_count": 179, + "retweet_count": 773, + "retweeted": false, + "user_id_str": "69008563", + "id_str": "1698357217991479414" + } + } + }, + "legacy": { + "bookmark_count": 87, + "bookmarked": false, + "created_at": "Sun Sep 03 19:10:48 +0000 2023", + "conversation_id_str": "1698413251892011401", + "display_text_range": [ + 0, + 81 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 4611, + "favorited": false, + "full_text": "Records all around: Verstappen. F1. X video views up 90% compared to last year 💪📈", + "is_quote_status": true, + "lang": "en", + "quote_count": 84, + "quoted_status_id_str": "1698357217991479414", + "quoted_status_permalink": { + "url": "https://t.co/nGLf4ffpAI", + "expanded": "https://twitter.com/F1/status/1698357217991479414", + "display": "twitter.com/F1/status/1698…" + }, + "reply_count": 528, + "retweet_count": 557, + "retweeted": false, + "user_id_str": "548263294", + "id_str": "1698413251892011401" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1695180996696756559", + "sortIndex": "1756309225740435434", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1695180996696756559", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1695180996696756559" + ], + "editable_until_msecs": "1693001219000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "85710851", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 2490, + "bookmarked": false, + "created_at": "Fri Aug 25 21:06:59 +0000 2023", + "conversation_id_str": "1695180996696756559", + "display_text_range": [ + 0, + 0 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/gcSXLMwsua", + "expanded_url": "https://twitter.com/elonmusk/status/1695180996696756559/photo/1", + "id_str": "1695180994368917507", + "indices": [ + 0, + 23 + ], + "media_key": "3_1695180994368917507", + "media_url_https": "https://pbs.twimg.com/media/F4Z-IgdaUAMeT68.jpg", + "type": "photo", + "url": "https://t.co/gcSXLMwsua", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 402, + "y": 835, + "h": 90, + "w": 90 + } + ] + }, + "medium": { + "faces": [ + { + "x": 328, + "y": 682, + "h": 73, + "w": 73 + } + ] + }, + "small": { + "faces": [ + { + "x": 186, + "y": 386, + "h": 41, + "w": 41 + } + ] + }, + "orig": { + "faces": [ + { + "x": 402, + "y": 835, + "h": 90, + "w": 90 + } + ] + } + }, + "sizes": { + "large": { + "h": 1468, + "w": 1158, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 947, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 536, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1468, + "width": 1158, + "focus_rects": [ + { + "x": 0, + "y": 593, + "w": 1158, + "h": 648 + }, + { + "x": 0, + "y": 310, + "w": 1158, + "h": 1158 + }, + { + "x": 0, + "y": 148, + "w": 1158, + "h": 1320 + }, + { + "x": 110, + "y": 0, + "w": 734, + "h": 1468 + }, + { + "x": 0, + "y": 0, + "w": 1158, + "h": 1468 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/gcSXLMwsua", + "expanded_url": "https://twitter.com/elonmusk/status/1695180996696756559/photo/1", + "id_str": "1695180994368917507", + "indices": [ + 0, + 23 + ], + "media_key": "3_1695180994368917507", + "media_url_https": "https://pbs.twimg.com/media/F4Z-IgdaUAMeT68.jpg", + "type": "photo", + "url": "https://t.co/gcSXLMwsua", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 402, + "y": 835, + "h": 90, + "w": 90 + } + ] + }, + "medium": { + "faces": [ + { + "x": 328, + "y": 682, + "h": 73, + "w": 73 + } + ] + }, + "small": { + "faces": [ + { + "x": 186, + "y": 386, + "h": 41, + "w": 41 + } + ] + }, + "orig": { + "faces": [ + { + "x": 402, + "y": 835, + "h": 90, + "w": 90 + } + ] + } + }, + "sizes": { + "large": { + "h": 1468, + "w": 1158, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 947, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 536, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1468, + "width": 1158, + "focus_rects": [ + { + "x": 0, + "y": 593, + "w": 1158, + "h": 648 + }, + { + "x": 0, + "y": 310, + "w": 1158, + "h": 1158 + }, + { + "x": 0, + "y": 148, + "w": 1158, + "h": 1320 + }, + { + "x": 110, + "y": 0, + "w": 734, + "h": 1468 + }, + { + "x": 0, + "y": 0, + "w": 1158, + "h": 1468 + } + ] + } + } + ] + }, + "favorite_count": 1102278, + "favorited": false, + "full_text": "https://t.co/gcSXLMwsua", + "is_quote_status": false, + "lang": "zxx", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 4218, + "reply_count": 31798, + "retweet_count": 47615, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1695180996696756559" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1691547357299585024", + "sortIndex": "1756309225740435433", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1691547357299585024", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0MjcwODk2Mjg=", + "rest_id": "427089628", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Sat Dec 03 03:06:19 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "Host of Lex Fridman Podcast.\nInterested in robots and humans.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "lexfridman.com/podcast", + "expanded_url": "https://lexfridman.com/podcast", + "url": "https://t.co/7AZXIxZ0sh", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 7582, + "followers_count": 3359187, + "friends_count": 102, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 9979, + "location": "Austin and Boston", + "media_count": 1024, + "name": "Lex Fridman", + "normal_followers_count": 3359187, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/427089628/1641354050", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/956331551435960322/OaqR8pAB_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "lexfridman", + "statuses_count": 3130, + "translator_type": "none", + "url": "https://t.co/7AZXIxZ0sh", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1691547357299585024" + ], + "editable_until_msecs": "1692134892000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3813033", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE2OTE1NDczNTcyMTE0MjY4MTg=", + "text": "Thank you for the birthday wishes! I got to celebrate it with amazing friends, including @elonmusk @joerogan and @hubermanlab, all who have brought so much fun, wisdom, and joy into my life. I'm truly grateful for this beautiful journey, and the love & kindness I've gotten along the way. Thank you for everything. I love you all!", + "entity_set": { + "hashtags": [], + "symbols": [], + "urls": [], + "user_mentions": [ + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 89, + 98 + ] + }, + { + "id_str": "18208354", + "name": "Joe Rogan", + "screen_name": "joerogan", + "indices": [ + 99, + 108 + ] + }, + { + "id_str": "4416456732", + "name": "Andrew D. Huberman, Ph.D.", + "screen_name": "hubermanlab", + "indices": [ + 113, + 125 + ] + } + ] + }, + "richtext": { + "richtext_tags": [] + }, + "media": { + "inline_media": [] + } + } + } + }, + "legacy": { + "bookmark_count": 609, + "bookmarked": false, + "created_at": "Tue Aug 15 20:28:12 +0000 2023", + "conversation_id_str": "1691547357299585024", + "display_text_range": [ + 0, + 284 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/9HuZa8WiEV", + "expanded_url": "https://twitter.com/lexfridman/status/1691547357299585024/photo/1", + "id_str": "1691546619630546946", + "indices": [ + 285, + 308 + ], + "media_key": "3_1691546619630546946", + "media_url_https": "https://pbs.twimg.com/media/F3mUsDgXcAIwvJh.jpg", + "type": "photo", + "url": "https://t.co/9HuZa8WiEV", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 1161, + "y": 333, + "h": 267, + "w": 267 + }, + { + "x": 595, + "y": 323, + "h": 333, + "w": 333 + } + ] + }, + "medium": { + "faces": [ + { + "x": 680, + "y": 195, + "h": 156, + "w": 156 + }, + { + "x": 348, + "y": 189, + "h": 195, + "w": 195 + } + ] + }, + "small": { + "faces": [ + { + "x": 385, + "y": 110, + "h": 88, + "w": 88 + }, + { + "x": 197, + "y": 107, + "h": 110, + "w": 110 + } + ] + }, + "orig": { + "faces": [ + { + "x": 1243, + "y": 357, + "h": 286, + "w": 286 + }, + { + "x": 637, + "y": 346, + "h": 357, + "w": 357 + } + ] + } + }, + "sizes": { + "large": { + "h": 2048, + "w": 1992, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 1167, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 661, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2192, + "width": 2132, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 2132, + "h": 1194 + }, + { + "x": 0, + "y": 0, + "w": 2132, + "h": 2132 + }, + { + "x": 209, + "y": 0, + "w": 1923, + "h": 2192 + }, + { + "x": 822, + "y": 0, + "w": 1096, + "h": 2192 + }, + { + "x": 0, + "y": 0, + "w": 2132, + "h": 2192 + } + ] + } + }, + { + "display_url": "pic.twitter.com/9HuZa8WiEV", + "expanded_url": "https://twitter.com/lexfridman/status/1691547357299585024/photo/1", + "id_str": "1691546619668254721", + "indices": [ + 285, + 308 + ], + "media_key": "3_1691546619668254721", + "media_url_https": "https://pbs.twimg.com/media/F3mUsDpW0AEoK57.jpg", + "type": "photo", + "url": "https://t.co/9HuZa8WiEV", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 477, + "y": 533, + "h": 227, + "w": 227 + }, + { + "x": 1415, + "y": 539, + "h": 251, + "w": 251 + } + ] + }, + "medium": { + "faces": [ + { + "x": 280, + "y": 312, + "h": 133, + "w": 133 + }, + { + "x": 829, + "y": 316, + "h": 147, + "w": 147 + } + ] + }, + "small": { + "faces": [ + { + "x": 158, + "y": 177, + "h": 75, + "w": 75 + }, + { + "x": 470, + "y": 179, + "h": 83, + "w": 83 + } + ] + }, + "orig": { + "faces": [ + { + "x": 662, + "y": 739, + "h": 315, + "w": 315 + }, + { + "x": 1961, + "y": 748, + "h": 349, + "w": 349 + } + ] + } + }, + "sizes": { + "large": { + "h": 1444, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 846, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 479, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2000, + "width": 2837, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 2837, + "h": 1589 + }, + { + "x": 345, + "y": 0, + "w": 2000, + "h": 2000 + }, + { + "x": 468, + "y": 0, + "w": 1754, + "h": 2000 + }, + { + "x": 845, + "y": 0, + "w": 1000, + "h": 2000 + }, + { + "x": 0, + "y": 0, + "w": 2837, + "h": 2000 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 89, + 98 + ] + }, + { + "id_str": "18208354", + "name": "Joe Rogan", + "screen_name": "joerogan", + "indices": [ + 99, + 108 + ] + }, + { + "id_str": "4416456732", + "name": "Andrew D. Huberman, Ph.D.", + "screen_name": "hubermanlab", + "indices": [ + 113, + 125 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/9HuZa8WiEV", + "expanded_url": "https://twitter.com/lexfridman/status/1691547357299585024/photo/1", + "id_str": "1691546619630546946", + "indices": [ + 285, + 308 + ], + "media_key": "3_1691546619630546946", + "media_url_https": "https://pbs.twimg.com/media/F3mUsDgXcAIwvJh.jpg", + "type": "photo", + "url": "https://t.co/9HuZa8WiEV", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 1161, + "y": 333, + "h": 267, + "w": 267 + }, + { + "x": 595, + "y": 323, + "h": 333, + "w": 333 + } + ] + }, + "medium": { + "faces": [ + { + "x": 680, + "y": 195, + "h": 156, + "w": 156 + }, + { + "x": 348, + "y": 189, + "h": 195, + "w": 195 + } + ] + }, + "small": { + "faces": [ + { + "x": 385, + "y": 110, + "h": 88, + "w": 88 + }, + { + "x": 197, + "y": 107, + "h": 110, + "w": 110 + } + ] + }, + "orig": { + "faces": [ + { + "x": 1243, + "y": 357, + "h": 286, + "w": 286 + }, + { + "x": 637, + "y": 346, + "h": 357, + "w": 357 + } + ] + } + }, + "sizes": { + "large": { + "h": 2048, + "w": 1992, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 1167, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 661, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2192, + "width": 2132, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 2132, + "h": 1194 + }, + { + "x": 0, + "y": 0, + "w": 2132, + "h": 2132 + }, + { + "x": 209, + "y": 0, + "w": 1923, + "h": 2192 + }, + { + "x": 822, + "y": 0, + "w": 1096, + "h": 2192 + }, + { + "x": 0, + "y": 0, + "w": 2132, + "h": 2192 + } + ] + } + }, + { + "display_url": "pic.twitter.com/9HuZa8WiEV", + "expanded_url": "https://twitter.com/lexfridman/status/1691547357299585024/photo/1", + "id_str": "1691546619668254721", + "indices": [ + 285, + 308 + ], + "media_key": "3_1691546619668254721", + "media_url_https": "https://pbs.twimg.com/media/F3mUsDpW0AEoK57.jpg", + "type": "photo", + "url": "https://t.co/9HuZa8WiEV", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 477, + "y": 533, + "h": 227, + "w": 227 + }, + { + "x": 1415, + "y": 539, + "h": 251, + "w": 251 + } + ] + }, + "medium": { + "faces": [ + { + "x": 280, + "y": 312, + "h": 133, + "w": 133 + }, + { + "x": 829, + "y": 316, + "h": 147, + "w": 147 + } + ] + }, + "small": { + "faces": [ + { + "x": 158, + "y": 177, + "h": 75, + "w": 75 + }, + { + "x": 470, + "y": 179, + "h": 83, + "w": 83 + } + ] + }, + "orig": { + "faces": [ + { + "x": 662, + "y": 739, + "h": 315, + "w": 315 + }, + { + "x": 1961, + "y": 748, + "h": 349, + "w": 349 + } + ] + } + }, + "sizes": { + "large": { + "h": 1444, + "w": 2048, + "resize": "fit" + }, + "medium": { + "h": 846, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 479, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2000, + "width": 2837, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 2837, + "h": 1589 + }, + { + "x": 345, + "y": 0, + "w": 2000, + "h": 2000 + }, + { + "x": 468, + "y": 0, + "w": 1754, + "h": 2000 + }, + { + "x": 845, + "y": 0, + "w": 1000, + "h": 2000 + }, + { + "x": 0, + "y": 0, + "w": 2837, + "h": 2000 + } + ] + } + } + ] + }, + "favorite_count": 45423, + "favorited": false, + "full_text": "Thank you for the birthday wishes! I got to celebrate it with amazing friends, including @elonmusk @joerogan and @hubermanlab, all who have brought so much fun, wisdom, and joy into my life. I'm truly grateful for this beautiful journey, and the love & kindness I've gotten along… https://t.co/9HuZa8WiEV", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 239, + "reply_count": 2248, + "retweet_count": 1300, + "retweeted": false, + "user_id_str": "427089628", + "id_str": "1691547357299585024" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1691718754948764033", + "sortIndex": "1756309225740435432", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1691718754948764033", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1691718754948764033" + ], + "editable_until_msecs": "1692175756000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "30825560", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 658, + "bookmarked": false, + "created_at": "Wed Aug 16 07:49:16 +0000 2023", + "conversation_id_str": "1691718754948764033", + "display_text_range": [ + 0, + 75 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 134726, + "favorited": false, + "full_text": "Immersive video on X is starting to get good. Just swipe up for next video.", + "is_quote_status": false, + "lang": "en", + "quote_count": 1064, + "reply_count": 8557, + "retweet_count": 9336, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1691718754948764033" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1687910092606242816", + "sortIndex": "1756309225740435431", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1687910092606242816", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyNTMzMzQxODU0", + "rest_id": "2533341854", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Thu May 29 20:24:26 +0000 2014", + "default_profile": false, + "default_profile_image": false, + "description": "𝕏 | @X @API @XDevelopers", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 13297, + "followers_count": 2121, + "friends_count": 958, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 43, + "location": "New York, NY", + "media_count": 141, + "name": "Chris Park", + "normal_followers_count": 2121, + "pinned_tweet_ids_str": [ + "1668840247411761157" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2533341854/1638372155", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1466065189871235086/fF3Cc4x8_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "chrisparkX", + "statuses_count": 707, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1687910092606242816" + ], + "editable_until_msecs": "1691267700000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1073", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Aug 05 19:35:00 +0000 2023", + "conversation_id_str": "1687909219574468608", + "display_text_range": [ + 10, + 41 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "548263294", + "name": "Linda Yaccarino", + "screen_name": "lindayaX", + "indices": [ + 0, + 9 + ] + } + ] + }, + "favorite_count": 6, + "favorited": false, + "full_text": "@lindayaX My bracket — X, Linda, E, USA 📈", + "in_reply_to_screen_name": "lindayaX", + "in_reply_to_status_id_str": "1687909219574468608", + "in_reply_to_user_id_str": "548263294", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 1, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "2533341854", + "id_str": "1687910092606242816" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1687909219574468608", + "sortIndex": "1756309225740435430", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1687909219574468608", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1NDgyNjMyOTQ=", + "rest_id": "548263294", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Apr 08 08:36:04 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Driven by industry progress, inspired by provocative leadership, plus don't mind a good pair of shoes or a great @PennStateFball scoreboard either.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 6841, + "followers_count": 554654, + "friends_count": 1427, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 1880, + "location": "", + "media_count": 262, + "name": "Linda Yaccarino", + "normal_followers_count": 554654, + "pinned_tweet_ids_str": [ + "1755746656329302155" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/548263294/1690308383", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1659561668945354755/c5dthMBt_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "lindayaX", + "statuses_count": 2084, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1687909219574468608" + ], + "editable_until_msecs": "1691267492000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "324580", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1687496502912897024", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozMDAzOTI5NTA=", + "rest_id": "300392950", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue May 17 17:54:29 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "wake up, watch sports, eat, sleep and repeat", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 14937, + "followers_count": 14766620, + "friends_count": 2208, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 8990, + "location": "", + "media_count": 3698, + "name": "Sports", + "normal_followers_count": 14766620, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/300392950/1707508295", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1756043218523680768/Ei2jfSIa_normal.png", + "profile_interstitial_type": "", + "screen_name": "Sports", + "statuses_count": 20597, + "translator_type": "none", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1446304510134169604", + "category": [ + { + "id": 920, + "name": "Other", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1687496502912897024" + ], + "editable_until_msecs": "1691169093000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "372362", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "quotedRefResult": { + "result": { + "__typename": "Tweet", + "rest_id": "1687389410222874625" + } + }, + "legacy": { + "bookmark_count": 4, + "bookmarked": false, + "created_at": "Fri Aug 04 16:11:33 +0000 2023", + "conversation_id_str": "1687496502912897024", + "display_text_range": [ + 0, + 44 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 36, + 44 + ], + "text": "FIFAWWC" + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 102, + "favorited": false, + "full_text": "We're all set for the Round of 16!\n\n#FIFAWWC", + "is_quote_status": true, + "lang": "en", + "quote_count": 2, + "quoted_status_id_str": "1687389410222874625", + "quoted_status_permalink": { + "url": "https://t.co/75zXP6lca0", + "expanded": "https://twitter.com/FIFAWWC/status/1687389410222874625", + "display": "twitter.com/FIFAWWC/status…" + }, + "reply_count": 10, + "retweet_count": 13, + "retweeted": false, + "user_id_str": "300392950", + "id_str": "1687496502912897024" + } + } + }, + "legacy": { + "bookmark_count": 4, + "bookmarked": false, + "created_at": "Sat Aug 05 19:31:32 +0000 2023", + "conversation_id_str": "1687909219574468608", + "display_text_range": [ + 0, + 57 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 921, + "favorited": false, + "full_text": "The pressure is on!\nWho’s rounding out your bracket?\n⚽️ 🥅", + "is_quote_status": true, + "lang": "en", + "quote_count": 13, + "quoted_status_id_str": "1687496502912897024", + "quoted_status_permalink": { + "url": "https://t.co/sPgz6kaPi9", + "expanded": "https://twitter.com/Sports/status/1687496502912897024", + "display": "twitter.com/Sports/status/…" + }, + "reply_count": 140, + "retweet_count": 56, + "retweeted": false, + "user_id_str": "548263294", + "id_str": "1687909219574468608" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1687617123647111168", + "sortIndex": "1756309225740435429", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1687617123647111168", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1687617123647111168" + ], + "editable_until_msecs": "1691197851000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "15587585", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1687551185509888000", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozNDc0MzI1MQ==", + "rest_id": "34743251", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Apr 23 21:53:30 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "SpaceX designs, manufactures and launches the world’s most advanced rockets and spacecraft", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "spacex.com", + "expanded_url": "http://spacex.com", + "url": "https://t.co/VOJ6qEctND", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 453, + "followers_count": 33240359, + "friends_count": 104, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 41695, + "location": "Earth", + "media_count": 2817, + "name": "SpaceX", + "normal_followers_count": 33240359, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/34743251/1681251194", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1697749409851985920/HbrI04tM_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "SpaceX", + "statuses_count": 7992, + "translator_type": "none", + "url": "https://t.co/VOJ6qEctND", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1681839322029502464", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1687551185509888000" + ], + "editable_until_msecs": "1691182130000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "22563668", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 166, + "bookmarked": false, + "created_at": "Fri Aug 04 19:48:50 +0000 2023", + "conversation_id_str": "1687551185509888000", + "display_text_range": [ + 0, + 101 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/wO1ZQ9aiao", + "expanded_url": "https://twitter.com/SpaceX/status/1687551185509888000/photo/1", + "id_str": "1687550992190160898", + "indices": [ + 102, + 125 + ], + "media_key": "3_1687550992190160898", + "media_url_https": "https://pbs.twimg.com/media/F2tir7XaQAI6bn-.jpg", + "type": "photo", + "url": "https://t.co/wO1ZQ9aiao", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 2048, + "w": 1582, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 927, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 525, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2154, + "width": 1664, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1664, + "h": 932 + }, + { + "x": 0, + "y": 0, + "w": 1664, + "h": 1664 + }, + { + "x": 0, + "y": 0, + "w": 1664, + "h": 1897 + }, + { + "x": 485, + "y": 0, + "w": 1077, + "h": 2154 + }, + { + "x": 0, + "y": 0, + "w": 1664, + "h": 2154 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/wO1ZQ9aiao", + "expanded_url": "https://twitter.com/SpaceX/status/1687551185509888000/photo/1", + "id_str": "1687550992190160898", + "indices": [ + 102, + 125 + ], + "media_key": "3_1687550992190160898", + "media_url_https": "https://pbs.twimg.com/media/F2tir7XaQAI6bn-.jpg", + "type": "photo", + "url": "https://t.co/wO1ZQ9aiao", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 2048, + "w": 1582, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 927, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 525, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 2154, + "width": 1664, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1664, + "h": 932 + }, + { + "x": 0, + "y": 0, + "w": 1664, + "h": 1664 + }, + { + "x": 0, + "y": 0, + "w": 1664, + "h": 1897 + }, + { + "x": 485, + "y": 0, + "w": 1077, + "h": 2154 + }, + { + "x": 0, + "y": 0, + "w": 1664, + "h": 2154 + } + ] + } + } + ] + }, + "favorite_count": 41668, + "favorited": false, + "full_text": "Booster 9 completed a flight-like chill and spin of the Raptor engine pumps in advance of static fire https://t.co/wO1ZQ9aiao", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 273, + "reply_count": 1297, + "retweet_count": 3992, + "retweeted": false, + "user_id_str": "34743251", + "id_str": "1687551185509888000" + } + } + }, + "legacy": { + "bookmark_count": 298, + "bookmarked": false, + "created_at": "Sat Aug 05 00:10:51 +0000 2023", + "conversation_id_str": "1687617123647111168", + "display_text_range": [ + 0, + 166 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 67278, + "favorited": false, + "full_text": "Preparing for next Starship flight! This time, I think we have ~50% probability of reaching orbital velocity, however even getting to stage separation would be a win.", + "is_quote_status": true, + "lang": "en", + "quote_count": 395, + "quoted_status_id_str": "1687551185509888000", + "quoted_status_permalink": { + "url": "https://t.co/MUS8EZtyYy", + "expanded": "https://twitter.com/SpaceX/status/1687551185509888000", + "display": "twitter.com/SpaceX/status/…" + }, + "reply_count": 3679, + "retweet_count": 7567, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1687617123647111168" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1683719485595721729", + "sortIndex": "1756309225740435428", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1683719485595721729", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo5Njc3MDQ3NA==", + "rest_id": "96770474", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Dec 14 14:29:20 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "The Nothing", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "undream.net", + "expanded_url": "http://undream.net", + "url": "https://t.co/p66w7Qb4Cq", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 42592, + "followers_count": 373726, + "friends_count": 1807, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2823, + "location": "Meta", + "media_count": 1734, + "name": "Pak", + "normal_followers_count": 373726, + "pinned_tweet_ids_str": [ + "516363882978619393" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/96770474/1632673062", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1499888704718000128/5yERu3hS_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "muratpak", + "statuses_count": 23144, + "translator_type": "regular", + "url": "https://t.co/p66w7Qb4Cq", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1683719485595721729" + ], + "editable_until_msecs": "1690268582000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "153150", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 2, + "bookmarked": false, + "created_at": "Tue Jul 25 06:03:02 +0000 2023", + "conversation_id_str": "1683719485595721729", + "display_text_range": [ + 0, + 11 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 255, + "favorited": false, + "full_text": "GM Xeeters.", + "is_quote_status": false, + "lang": "en", + "quote_count": 5, + "reply_count": 86, + "retweet_count": 39, + "retweeted": false, + "user_id_str": "96770474", + "id_str": "1683719485595721729" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1681696989962989569", + "sortIndex": "1756309225740435427", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1681696989962989569", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1681696989962989569" + ], + "editable_until_msecs": "1689786381000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "24381574", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1681420576286466049", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo2Mzc5NjgyOA==", + "rest_id": "63796828", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Fri Aug 07 18:41:45 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Individuals can get a blue checkmark with @Premium. \n\nOrganizations can sign up for Verified Organizations here: https://t.co/mIt8n1qdTe", + "entities": { + "description": { + "urls": [ + { + "display_url": "verified.x.com", + "expanded_url": "http://verified.x.com", + "url": "https://t.co/mIt8n1qdTe", + "indices": [ + 113, + 136 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "verified.x.com", + "expanded_url": "https://verified.x.com/", + "url": "https://t.co/v95b1uZwP9", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 506, + "followers_count": 4185079, + "friends_count": 1, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 9269, + "location": "San Francisco", + "media_count": 4, + "name": "Verified", + "normal_followers_count": 4185079, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/63796828/1690180226", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683364031921356800/lC0xkPJZ_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "verified", + "statuses_count": 2509, + "translator_type": "regular", + "url": "https://t.co/v95b1uZwP9", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1681420576286466049" + ], + "editable_until_msecs": "1689720479000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "26254642", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 264, + "bookmarked": false, + "created_at": "Tue Jul 18 21:47:59 +0000 2023", + "conversation_id_str": "1681420576286466049", + "display_text_range": [ + 0, + 249 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "twitter.com/i/verified-org…", + "expanded_url": "https://twitter.com/i/verified-orgs-signup", + "url": "https://t.co/scBfvzsezi", + "indices": [ + 226, + 249 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 2507, + "favorited": false, + "full_text": "Did you know Verified Organizations with affiliated accounts receive 2x more reach on Twitter?\n\nVerified Organizations allows forward-thinking businesses to reach their customers organically and authentically.\n\nSign up today: https://t.co/scBfvzsezi", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 134, + "reply_count": 490, + "retweet_count": 550, + "retweeted": false, + "user_id_str": "63796828", + "id_str": "1681420576286466049" + } + } + }, + "legacy": { + "bookmark_count": 384, + "bookmarked": false, + "created_at": "Wed Jul 19 16:06:21 +0000 2023", + "conversation_id_str": "1681696989962989569", + "display_text_range": [ + 0, + 94 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 60099, + "favorited": false, + "full_text": "Important for companies to sign up to fight impersonation and false organizational affiliation", + "is_quote_status": true, + "lang": "en", + "quote_count": 565, + "quoted_status_id_str": "1681420576286466049", + "quoted_status_permalink": { + "url": "https://t.co/lFuThssQLX", + "expanded": "https://twitter.com/verified/status/1681420576286466049", + "display": "twitter.com/verified/statu…" + }, + "reply_count": 7940, + "retweet_count": 7321, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1681696989962989569" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1681730148846977054", + "sortIndex": "1756309225740435426", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1681730148846977054", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo5NDEyOTA1MA==", + "rest_id": "94129050", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed Dec 02 17:06:41 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "We move the region that moves the world.\n\nFor real-time updates, sign up for MTA Service Alerts: https://t.co/OhUg7IMT46", + "entities": { + "description": { + "urls": [ + { + "display_url": "bit.ly/3QuYQNZ", + "expanded_url": "https://bit.ly/3QuYQNZ", + "url": "https://t.co/OhUg7IMT46", + "indices": [ + 97, + 120 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "mta.info", + "expanded_url": "http://www.mta.info/", + "url": "https://t.co/xjzXC6ZOwJ", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 1255, + "followers_count": 1357736, + "friends_count": 236, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 3799, + "location": "New York Metro Region", + "media_count": 1579, + "name": "MTA", + "normal_followers_count": 1357736, + "pinned_tweet_ids_str": [ + "1756018177861939329" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/94129050/1631547568", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1719712033816383488/j0y-LHI8_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "MTA", + "statuses_count": 12255, + "translator_type": "none", + "url": "https://t.co/xjzXC6ZOwJ", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/aB4kGhinCr", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 418, + "width": 799, + "url": "https://pbs.twimg.com/card_img/1754754103077711872/jGnRH6D5?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 150, + "width": 201, + "url": "https://pbs.twimg.com/card_img/1754754103077711872/jGnRH6D5?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Learn about the MTA's fare and toll changes for New York City Transit, Long Island Rail Road, Metro-North Railroad, and MTA Bridges and Tunnels.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "new.mta.info", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 298, + "width": 400, + "url": "https://pbs.twimg.com/card_img/1754754103077711872/jGnRH6D5?format=jpg&name=400x400" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1754754103077711872/jGnRH6D5?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 596, + "width": 799, + "url": "https://pbs.twimg.com/card_img/1754754103077711872/jGnRH6D5?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "94129050", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1754754103077711872/jGnRH6D5?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 418, + "width": 799, + "url": "https://pbs.twimg.com/card_img/1754754103077711872/jGnRH6D5?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 75, + "width": 100, + "url": "https://pbs.twimg.com/card_img/1754754103077711872/jGnRH6D5?format=jpg&name=100x100" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 596, + "width": 799, + "url": "https://pbs.twimg.com/card_img/1754754103077711872/jGnRH6D5?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 596, + "width": 799, + "url": "https://pbs.twimg.com/card_img/1754754103077711872/jGnRH6D5?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "new.mta.info", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1754754103077711872/jGnRH6D5?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 111, + "green": 110, + "red": 113 + }, + "percentage": 50.76 + }, + { + "rgb": { + "blue": 62, + "green": 54, + "red": 53 + }, + "percentage": 39.97 + }, + { + "rgb": { + "blue": 210, + "green": 208, + "red": 211 + }, + "percentage": 5.24 + }, + { + "rgb": { + "blue": 74, + "green": 70, + "red": 139 + }, + "percentage": 0.98 + }, + { + "rgb": { + "blue": 42, + "green": 48, + "red": 156 + }, + "percentage": 0.86 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Changes to MTA fares and tolls in 2023", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 111, + "green": 110, + "red": 113 + }, + "percentage": 50.76 + }, + { + "rgb": { + "blue": 62, + "green": 54, + "red": 53 + }, + "percentage": 39.97 + }, + { + "rgb": { + "blue": 210, + "green": 208, + "red": 211 + }, + "percentage": 5.24 + }, + { + "rgb": { + "blue": 74, + "green": 70, + "red": 139 + }, + "percentage": 0.98 + }, + { + "rgb": { + "blue": 42, + "green": 48, + "red": 156 + }, + "percentage": 0.86 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 596, + "width": 799, + "url": "https://pbs.twimg.com/card_img/1754754103077711872/jGnRH6D5?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1754754103077711872/jGnRH6D5?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 111, + "green": 110, + "red": 113 + }, + "percentage": 50.76 + }, + { + "rgb": { + "blue": 62, + "green": 54, + "red": 53 + }, + "percentage": 39.97 + }, + { + "rgb": { + "blue": 210, + "green": 208, + "red": 211 + }, + "percentage": 5.24 + }, + { + "rgb": { + "blue": 74, + "green": 70, + "red": 139 + }, + "percentage": 0.98 + }, + { + "rgb": { + "blue": 42, + "green": 48, + "red": 156 + }, + "percentage": 0.86 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 596, + "width": 799, + "url": "https://pbs.twimg.com/card_img/1754754103077711872/jGnRH6D5?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/aB4kGhinCr", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 596, + "width": 799, + "url": "https://pbs.twimg.com/card_img/1754754103077711872/jGnRH6D5?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/aB4kGhinCr", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjo5NDEyOTA1MA==", + "rest_id": "94129050", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed Dec 02 17:06:41 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "We move the region that moves the world.\n\nFor real-time updates, sign up for MTA Service Alerts: https://t.co/OhUg7IMT46", + "entities": { + "description": { + "urls": [ + { + "display_url": "bit.ly/3QuYQNZ", + "expanded_url": "https://bit.ly/3QuYQNZ", + "url": "https://t.co/OhUg7IMT46", + "indices": [ + 97, + 120 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "mta.info", + "expanded_url": "http://www.mta.info/", + "url": "https://t.co/xjzXC6ZOwJ", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 1255, + "followers_count": 1357736, + "friends_count": 236, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 3799, + "location": "New York Metro Region", + "media_count": 1579, + "name": "MTA", + "normal_followers_count": 1357736, + "pinned_tweet_ids_str": [ + "1756018177861939329" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/94129050/1631547568", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1719712033816383488/j0y-LHI8_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "MTA", + "statuses_count": 12255, + "translator_type": "none", + "url": "https://t.co/xjzXC6ZOwJ", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1681730148846977054" + ], + "editable_until_msecs": "1689794287000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "228729", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 36, + "bookmarked": false, + "created_at": "Wed Jul 19 18:18:07 +0000 2023", + "conversation_id_str": "1681730148846977054", + "display_text_range": [ + 0, + 256 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "new.mta.info/transparency/m…", + "expanded_url": "https://new.mta.info/transparency/mta-fares-tolls-2023", + "url": "https://t.co/aB4kGhinCr", + "indices": [ + 233, + 256 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 264, + "favorited": false, + "full_text": "On Sunday, August 20, new fares & tolls take effect:\n\n🔵The base fare for subway, local bus, and paratransit is changing to $2.90\n\n🔵Tap with OMNY to save money with our new rolling fare cap\n\n🔵Rail fares are changing\n\n🔵Learn more👇\nhttps://t.co/aB4kGhinCr", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 364, + "reply_count": 282, + "retweet_count": 142, + "retweeted": false, + "user_id_str": "94129050", + "id_str": "1681730148846977054" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1681691639922806784", + "sortIndex": "1756309225740435425", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1681691639922806784", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1681691639922806784" + ], + "editable_until_msecs": "1689785105000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "60274776", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 7300, + "bookmarked": false, + "created_at": "Wed Jul 19 15:45:05 +0000 2023", + "conversation_id_str": "1681691639922806784", + "display_text_range": [ + 0, + 9 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/bl0trQ7BdU", + "expanded_url": "https://twitter.com/elonmusk/status/1681691639922806784/photo/1", + "id_str": "1681691637737562112", + "indices": [ + 10, + 33 + ], + "media_key": "3_1681691637737562112", + "media_url_https": "https://pbs.twimg.com/media/F1aRonEXoAA8Tnq.jpg", + "type": "photo", + "url": "https://t.co/bl0trQ7BdU", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 102, + "y": 361, + "h": 114, + "w": 114 + }, + { + "x": 59, + "y": 33, + "h": 175, + "w": 175 + } + ] + }, + "medium": { + "faces": [ + { + "x": 102, + "y": 361, + "h": 114, + "w": 114 + }, + { + "x": 59, + "y": 33, + "h": 175, + "w": 175 + } + ] + }, + "small": { + "faces": [ + { + "x": 77, + "y": 272, + "h": 86, + "w": 86 + }, + { + "x": 44, + "y": 24, + "h": 132, + "w": 132 + } + ] + }, + "orig": { + "faces": [ + { + "x": 102, + "y": 361, + "h": 114, + "w": 114 + }, + { + "x": 59, + "y": 33, + "h": 175, + "w": 175 + } + ] + } + }, + "sizes": { + "large": { + "h": 900, + "w": 719, + "resize": "fit" + }, + "medium": { + "h": 900, + "w": 719, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 543, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 900, + "width": 719, + "focus_rects": [ + { + "x": 0, + "y": 497, + "w": 719, + "h": 403 + }, + { + "x": 0, + "y": 181, + "w": 719, + "h": 719 + }, + { + "x": 0, + "y": 80, + "w": 719, + "h": 820 + }, + { + "x": 269, + "y": 0, + "w": 450, + "h": 900 + }, + { + "x": 0, + "y": 0, + "w": 719, + "h": 900 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/bl0trQ7BdU", + "expanded_url": "https://twitter.com/elonmusk/status/1681691639922806784/photo/1", + "id_str": "1681691637737562112", + "indices": [ + 10, + 33 + ], + "media_key": "3_1681691637737562112", + "media_url_https": "https://pbs.twimg.com/media/F1aRonEXoAA8Tnq.jpg", + "type": "photo", + "url": "https://t.co/bl0trQ7BdU", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 102, + "y": 361, + "h": 114, + "w": 114 + }, + { + "x": 59, + "y": 33, + "h": 175, + "w": 175 + } + ] + }, + "medium": { + "faces": [ + { + "x": 102, + "y": 361, + "h": 114, + "w": 114 + }, + { + "x": 59, + "y": 33, + "h": 175, + "w": 175 + } + ] + }, + "small": { + "faces": [ + { + "x": 77, + "y": 272, + "h": 86, + "w": 86 + }, + { + "x": 44, + "y": 24, + "h": 132, + "w": 132 + } + ] + }, + "orig": { + "faces": [ + { + "x": 102, + "y": 361, + "h": 114, + "w": 114 + }, + { + "x": 59, + "y": 33, + "h": 175, + "w": 175 + } + ] + } + }, + "sizes": { + "large": { + "h": 900, + "w": 719, + "resize": "fit" + }, + "medium": { + "h": 900, + "w": 719, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 543, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 900, + "width": 719, + "focus_rects": [ + { + "x": 0, + "y": 497, + "w": 719, + "h": 403 + }, + { + "x": 0, + "y": 181, + "w": 719, + "h": 719 + }, + { + "x": 0, + "y": 80, + "w": 719, + "h": 820 + }, + { + "x": 269, + "y": 0, + "w": 450, + "h": 900 + }, + { + "x": 0, + "y": 0, + "w": 719, + "h": 900 + } + ] + } + } + ] + }, + "favorite_count": 728496, + "favorited": false, + "full_text": "Doges ftw https://t.co/bl0trQ7BdU", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 3955, + "reply_count": 16433, + "retweet_count": 75396, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1681691639922806784" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1681715032579506193", + "sortIndex": "1756309225740435424", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1681715032579506193", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1681715032579506193" + ], + "editable_until_msecs": "1689790683000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "47325705", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 2437, + "bookmarked": false, + "created_at": "Wed Jul 19 17:18:03 +0000 2023", + "conversation_id_str": "1681715032579506193", + "display_text_range": [ + 0, + 73 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/DqcKAJd85B", + "expanded_url": "https://twitter.com/elonmusk/status/1681715032579506193/photo/1", + "id_str": "1681715025667293185", + "indices": [ + 74, + 97 + ], + "media_key": "3_1681715025667293185", + "media_url_https": "https://pbs.twimg.com/media/F1am595WAAEgtEH.jpg", + "type": "photo", + "url": "https://t.co/DqcKAJd85B", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 1221, + "y": 287, + "h": 87, + "w": 87 + }, + { + "x": 1295, + "y": 217, + "h": 105, + "w": 105 + } + ] + }, + "medium": { + "faces": [ + { + "x": 716, + "y": 168, + "h": 51, + "w": 51 + }, + { + "x": 759, + "y": 127, + "h": 61, + "w": 61 + } + ] + }, + "small": { + "faces": [ + { + "x": 405, + "y": 95, + "h": 29, + "w": 29 + }, + { + "x": 430, + "y": 72, + "h": 35, + "w": 35 + } + ] + }, + "orig": { + "faces": [ + { + "x": 2141, + "y": 504, + "h": 154, + "w": 154 + }, + { + "x": 2271, + "y": 382, + "h": 185, + "w": 185 + } + ] + } + }, + "sizes": { + "large": { + "h": 2048, + "w": 1682, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 986, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 559, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 3589, + "width": 2948, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 2948, + "h": 1651 + }, + { + "x": 0, + "y": 0, + "w": 2948, + "h": 2948 + }, + { + "x": 0, + "y": 0, + "w": 2948, + "h": 3361 + }, + { + "x": 1153, + "y": 0, + "w": 1795, + "h": 3589 + }, + { + "x": 0, + "y": 0, + "w": 2948, + "h": 3589 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/DqcKAJd85B", + "expanded_url": "https://twitter.com/elonmusk/status/1681715032579506193/photo/1", + "id_str": "1681715025667293185", + "indices": [ + 74, + 97 + ], + "media_key": "3_1681715025667293185", + "media_url_https": "https://pbs.twimg.com/media/F1am595WAAEgtEH.jpg", + "type": "photo", + "url": "https://t.co/DqcKAJd85B", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 1221, + "y": 287, + "h": 87, + "w": 87 + }, + { + "x": 1295, + "y": 217, + "h": 105, + "w": 105 + } + ] + }, + "medium": { + "faces": [ + { + "x": 716, + "y": 168, + "h": 51, + "w": 51 + }, + { + "x": 759, + "y": 127, + "h": 61, + "w": 61 + } + ] + }, + "small": { + "faces": [ + { + "x": 405, + "y": 95, + "h": 29, + "w": 29 + }, + { + "x": 430, + "y": 72, + "h": 35, + "w": 35 + } + ] + }, + "orig": { + "faces": [ + { + "x": 2141, + "y": 504, + "h": 154, + "w": 154 + }, + { + "x": 2271, + "y": 382, + "h": 185, + "w": 185 + } + ] + } + }, + "sizes": { + "large": { + "h": 2048, + "w": 1682, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 986, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 559, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 3589, + "width": 2948, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 2948, + "h": 1651 + }, + { + "x": 0, + "y": 0, + "w": 2948, + "h": 2948 + }, + { + "x": 0, + "y": 0, + "w": 2948, + "h": 3361 + }, + { + "x": 1153, + "y": 0, + "w": 1795, + "h": 3589 + }, + { + "x": 0, + "y": 0, + "w": 2948, + "h": 3589 + } + ] + } + } + ] + }, + "favorite_count": 390126, + "favorited": false, + "full_text": "Found this old photo where I’m trying to get my body weight under 225 lbs https://t.co/DqcKAJd85B", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1470, + "reply_count": 14154, + "retweet_count": 18919, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1681715032579506193" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1681845508535468033", + "sortIndex": "1756309225740435423", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1681845508535468033", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyNTMzMzQxODU0", + "rest_id": "2533341854", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Thu May 29 20:24:26 +0000 2014", + "default_profile": false, + "default_profile_image": false, + "description": "𝕏 | @X @API @XDevelopers", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 13297, + "followers_count": 2121, + "friends_count": 958, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 43, + "location": "New York, NY", + "media_count": 141, + "name": "Chris Park", + "normal_followers_count": 2121, + "pinned_tweet_ids_str": [ + "1668840247411761157" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2533341854/1638372155", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1466065189871235086/fF3Cc4x8_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "chrisparkX", + "statuses_count": 707, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1681845508535468033" + ], + "editable_until_msecs": "1689821791000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1560", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Thu Jul 20 01:56:31 +0000 2023", + "conversation_id_str": "1681845508535468033", + "display_text_range": [ + 0, + 91 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 8, + "favorited": false, + "full_text": "Powerball jackpot at $1 Billion. 🤯\n\nIf you won, what would your first meal be and with who?", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 1, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "2533341854", + "id_str": "1681845508535468033" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1681847213943578626", + "sortIndex": "1756309225740435422", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1681847213943578626", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyNTMzMzQxODU0", + "rest_id": "2533341854", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Thu May 29 20:24:26 +0000 2014", + "default_profile": false, + "default_profile_image": false, + "description": "𝕏 | @X @API @XDevelopers", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 13297, + "followers_count": 2121, + "friends_count": 958, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 43, + "location": "New York, NY", + "media_count": 141, + "name": "Chris Park", + "normal_followers_count": 2121, + "pinned_tweet_ids_str": [ + "1668840247411761157" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2533341854/1638372155", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1466065189871235086/fF3Cc4x8_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "chrisparkX", + "statuses_count": 707, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1681847213943578626" + ], + "editable_until_msecs": "1689822197000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "375", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Thu Jul 20 02:03:17 +0000 2023", + "conversation_id_str": "1681845508535468033", + "display_text_range": [ + 20, + 81 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "872695783", + "name": "Jordan Daley", + "screen_name": "JDaIey", + "indices": [ + 0, + 7 + ] + } + ] + }, + "favorite_count": 2, + "favorited": false, + "full_text": "@JDaIey @TwitterDev @TwitterDev is also pretty cool also. We’ll invite them too 🤝", + "in_reply_to_screen_name": "JDaIey", + "in_reply_to_status_id_str": "1681846091656855552", + "in_reply_to_user_id_str": "872695783", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 1, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "2533341854", + "id_str": "1681847213943578626" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1681846091656855552", + "sortIndex": "1756309225740435421", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1681846091656855552", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NzI2OTU3ODM=", + "rest_id": "872695783", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed Oct 10 23:54:25 +0000 2012", + "default_profile": false, + "default_profile_image": false, + "description": "Founder of @484LTD | #ALLCAPS #VamosUnited #SpiritRules #BallOnOurTerms | The Truth Is Madder Than Fiction.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linktr.ee/jdaiey", + "expanded_url": "http://linktr.ee/jdaiey", + "url": "https://t.co/Hmd99Nezp1", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 137696, + "followers_count": 1242042, + "friends_count": 1014852, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 860, + "location": "Hidden Hills, CA", + "media_count": 2438, + "name": "Jordan Daley", + "normal_followers_count": 1242042, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/872695783/1687192403", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1689496672890396673/OSC4QTdb_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "JDaIey", + "statuses_count": 43775, + "translator_type": "regular", + "url": "https://t.co/Hmd99Nezp1", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1456392398511251460", + "professional_type": "Creator", + "category": [ + { + "id": 958, + "name": "Entrepreneur", + "icon_name": "IconBriefcaseStroke" + } + ] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1681846091656855552" + ], + "editable_until_msecs": "1689821930000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "240", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Thu Jul 20 01:58:50 +0000 2023", + "conversation_id_str": "1681845508535468033", + "display_text_range": [ + 8, + 75 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 2, + "favorited": false, + "full_text": "@CP3nyc Chris Park... I heard from @TwitterDev that he's a pretty cool guy.", + "in_reply_to_screen_name": "chrisparkX", + "in_reply_to_status_id_str": "1681845508535468033", + "in_reply_to_user_id_str": "2533341854", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 1, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "872695783", + "id_str": "1681846091656855552" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1679782941428203521", + "sortIndex": "1756309225740435420", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1679782941428203521", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo5Njc3MDQ3NA==", + "rest_id": "96770474", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Dec 14 14:29:20 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "The Nothing", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "undream.net", + "expanded_url": "http://undream.net", + "url": "https://t.co/p66w7Qb4Cq", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 42592, + "followers_count": 373726, + "friends_count": 1807, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2823, + "location": "Meta", + "media_count": 1734, + "name": "Pak", + "normal_followers_count": 373726, + "pinned_tweet_ids_str": [ + "516363882978619393" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/96770474/1632673062", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1499888704718000128/5yERu3hS_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "muratpak", + "statuses_count": 23144, + "translator_type": "regular", + "url": "https://t.co/p66w7Qb4Cq", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1679782941428203521" + ], + "editable_until_msecs": "1689330036000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "46784", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 2, + "bookmarked": false, + "created_at": "Fri Jul 14 09:20:36 +0000 2023", + "conversation_id_str": "1679782941428203521", + "display_text_range": [ + 0, + 33 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 327, + "favorited": false, + "full_text": "Gm, creators of beautiful things!", + "is_quote_status": false, + "lang": "en", + "quote_count": 3, + "reply_count": 130, + "retweet_count": 30, + "retweeted": false, + "user_id_str": "96770474", + "id_str": "1679782941428203521" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1676254702772670465", + "sortIndex": "1756309225740435419", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1676254702772670465", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1676254702772670465" + ], + "editable_until_msecs": "1688488839000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "102086503", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1676209566214770689", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozMDcyMTYwMTY0", + "rest_id": "3072160164", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Wed Mar 11 01:59:41 +0000 2015", + "default_profile": false, + "default_profile_image": false, + "description": "Spaceflight photographer. Content Director @PolarisProgram. Prints available to order at my website below:", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "johnkrausphotos.com", + "expanded_url": "http://www.johnkrausphotos.com", + "url": "https://t.co/gfDxFryFZI", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 154265, + "followers_count": 241893, + "friends_count": 454, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1664, + "location": "Earth", + "media_count": 4790, + "name": "John Kraus", + "normal_followers_count": 241893, + "pinned_tweet_ids_str": [ + "1755696156418494800" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3072160164/1706536931", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1493351002208043008/JeWVCY2-_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "johnkrausphotos", + "statuses_count": 28245, + "translator_type": "none", + "url": "https://t.co/gfDxFryFZI", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1476623038678450182", + "professional_type": "Creator", + "category": [ + { + "id": 552, + "name": "Photographer", + "icon_name": "IconBriefcaseStroke" + } + ] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1676209566214770689" + ], + "editable_until_msecs": "1688478077000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "102552059", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 273, + "bookmarked": false, + "created_at": "Tue Jul 04 12:41:17 +0000 2023", + "conversation_id_str": "1676209566214770689", + "display_text_range": [ + 0, + 0 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/Zz5zsGZIph", + "expanded_url": "https://twitter.com/johnkrausphotos/status/1676209566214770689/photo/1", + "id_str": "1676209557993926656", + "indices": [ + 0, + 23 + ], + "media_key": "3_1676209557993926656", + "media_url_https": "https://pbs.twimg.com/media/F0MXtklXsAAvttH.jpg", + "type": "photo", + "url": "https://t.co/Zz5zsGZIph", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1250, + "w": 833, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 800, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 453, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1250, + "width": 833, + "focus_rects": [ + { + "x": 0, + "y": 610, + "w": 833, + "h": 466 + }, + { + "x": 0, + "y": 417, + "w": 833, + "h": 833 + }, + { + "x": 0, + "y": 300, + "w": 833, + "h": 950 + }, + { + "x": 0, + "y": 0, + "w": 625, + "h": 1250 + }, + { + "x": 0, + "y": 0, + "w": 833, + "h": 1250 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/Zz5zsGZIph", + "expanded_url": "https://twitter.com/johnkrausphotos/status/1676209566214770689/photo/1", + "id_str": "1676209557993926656", + "indices": [ + 0, + 23 + ], + "media_key": "3_1676209557993926656", + "media_url_https": "https://pbs.twimg.com/media/F0MXtklXsAAvttH.jpg", + "type": "photo", + "url": "https://t.co/Zz5zsGZIph", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1250, + "w": 833, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 800, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 453, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1250, + "width": 833, + "focus_rects": [ + { + "x": 0, + "y": 610, + "w": 833, + "h": 466 + }, + { + "x": 0, + "y": 417, + "w": 833, + "h": 833 + }, + { + "x": 0, + "y": 300, + "w": 833, + "h": 950 + }, + { + "x": 0, + "y": 0, + "w": 625, + "h": 1250 + }, + { + "x": 0, + "y": 0, + "w": 833, + "h": 1250 + } + ] + } + } + ] + }, + "favorite_count": 18103, + "favorited": false, + "full_text": "https://t.co/Zz5zsGZIph", + "is_quote_status": false, + "lang": "zxx", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 452, + "reply_count": 760, + "retweet_count": 2331, + "retweeted": false, + "user_id_str": "3072160164", + "id_str": "1676209566214770689" + } + } + }, + "legacy": { + "bookmark_count": 1403, + "bookmarked": false, + "created_at": "Tue Jul 04 15:40:39 +0000 2023", + "conversation_id_str": "1676254702772670465", + "display_text_range": [ + 0, + 33 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 629464, + "favorited": false, + "full_text": "🇺🇸🇺🇸 Happy Independence Day! 🇺🇸🇺🇸", + "is_quote_status": true, + "lang": "en", + "quote_count": 3438, + "quoted_status_id_str": "1676209566214770689", + "quoted_status_permalink": { + "url": "https://t.co/XJrU36jBZb", + "expanded": "https://twitter.com/johnkrausphotos/status/1676209566214770689", + "display": "twitter.com/johnkrausphoto…" + }, + "reply_count": 22479, + "retweet_count": 51883, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1676254702772670465" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1676565163594448896", + "sortIndex": "1756309225740435418", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1676565163594448896", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NDE5NjM5Nw==", + "rest_id": "44196397", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/X", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" + }, + "description": "X", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Jun 02 20:12:29 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 42036, + "followers_count": 172086164, + "friends_count": 536, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 147283, + "location": "", + "media_count": 1987, + "name": "Elon Musk", + "normal_followers_count": 172086164, + "pinned_tweet_ids_str": [ + "1755851825054433784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/44196397/1690621312", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683325380441128960/yRsRRjGO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "elonmusk", + "statuses_count": 37684, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679729435447275522", + "professional_type": "Creator", + "category": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1676565163594448896" + ], + "editable_until_msecs": "1688562858000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "85237163", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 1572, + "bookmarked": false, + "created_at": "Wed Jul 05 12:14:18 +0000 2023", + "conversation_id_str": "1676565163594448896", + "display_text_range": [ + 0, + 17 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 641047, + "favorited": false, + "full_text": "God Bless America", + "is_quote_status": false, + "lang": "en", + "quote_count": 8340, + "reply_count": 42139, + "retweet_count": 47730, + "retweeted": false, + "user_id_str": "44196397", + "id_str": "1676565163594448896" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "tweet-1675208730869383168", + "sortIndex": "1756309225740435417", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1675208730869383168", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjcyODkwNA==", + "rest_id": "16728904", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Oct 13 22:24:46 +0000 2008", + "default_profile": false, + "default_profile_image": false, + "description": "iOS developer, creator of @ApolloReddit, @PixelPalsApp. Previously at . he/him. i love aminals. 🌱", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "christianselig.com", + "expanded_url": "http://christianselig.com", + "url": "https://t.co/ibEGxrVNUa", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 50682, + "followers_count": 68584, + "friends_count": 2324, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 620, + "location": "Halifax, Nova Scotia", + "media_count": 2598, + "name": "Christian Selig", + "normal_followers_count": 68584, + "pinned_tweet_ids_str": [ + "1675235178300469253" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16728904/1641525152", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1352325963628109827/8RkeP_nk_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ChristianSelig", + "statuses_count": 45800, + "translator_type": "none", + "url": "https://t.co/ibEGxrVNUa", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1675208730869383168" + ], + "editable_until_msecs": "1688239459000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "960807", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 395, + "bookmarked": false, + "created_at": "Sat Jul 01 18:24:19 +0000 2023", + "conversation_id_str": "1675208730869383168", + "display_text_range": [ + 0, + 83 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/z62vgQEHUZ", + "expanded_url": "https://twitter.com/ChristianSelig/status/1675208730869383168/photo/1", + "ext_alt_text": "Reddit app dashboard where you can register API tokens for apps, and this is a screen recording of deleting Apollo's after 9 years", + "id_str": "1675208088385667074", + "indices": [ + 84, + 107 + ], + "media_key": "16_1675208088385667074", + "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/Fz-I4XkWwAIMOlf.jpg", + "type": "animated_gif", + "url": "https://t.co/z62vgQEHUZ", + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 508, + "w": 720, + "resize": "fit" + }, + "medium": { + "h": 508, + "w": 720, + "resize": "fit" + }, + "small": { + "h": 480, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 508, + "width": 720, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 180, + 127 + ], + "variants": [ + { + "bitrate": 0, + "content_type": "video/mp4", + "url": "https://video.twimg.com/tweet_video/Fz-I4XkWwAIMOlf.mp4" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/z62vgQEHUZ", + "expanded_url": "https://twitter.com/ChristianSelig/status/1675208730869383168/photo/1", + "ext_alt_text": "Reddit app dashboard where you can register API tokens for apps, and this is a screen recording of deleting Apollo's after 9 years", + "id_str": "1675208088385667074", + "indices": [ + 84, + 107 + ], + "media_key": "16_1675208088385667074", + "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/Fz-I4XkWwAIMOlf.jpg", + "type": "animated_gif", + "url": "https://t.co/z62vgQEHUZ", + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 508, + "w": 720, + "resize": "fit" + }, + "medium": { + "h": 508, + "w": 720, + "resize": "fit" + }, + "small": { + "h": 480, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 508, + "width": 720, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 180, + 127 + ], + "variants": [ + { + "bitrate": 0, + "content_type": "video/mp4", + "url": "https://video.twimg.com/tweet_video/Fz-I4XkWwAIMOlf.mp4" + } + ] + } + } + ] + }, + "favorite_count": 14260, + "favorited": false, + "full_text": "Thought I'd record deleting Apollo and its API token from the Reddit dashboard 🥹 ow https://t.co/z62vgQEHUZ", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 112, + "reply_count": 232, + "retweet_count": 668, + "retweeted": false, + "user_id_str": "16728904", + "id_str": "1675208730869383168" + } + } + }, + "tweetDisplayType": "Tweet" + } + } + }, + { + "entryId": "cursor-top-1756309225740435457", + "sortIndex": "1756309225740435457", + "content": { + "entryType": "TimelineTimelineCursor", + "__typename": "TimelineTimelineCursor", + "value": "DAAHCgABGF-p73wAAAELAAIAAAATMTc4OTkyNjE5NDk3ODUwNjAzNQgAAwAAAAEAAA", + "cursorType": "Top" + } + }, + { + "entryId": "cursor-bottom-1756309225740435416", + "sortIndex": "1756309225740435416", + "content": { + "entryType": "TimelineTimelineCursor", + "__typename": "TimelineTimelineCursor", + "value": "DAAHCgABGF-p73v__9gLAAIAAAATMTc3MDM2Nzk2ODQ2NDcwOTU5MggAAwAAAAIAAA", + "cursorType": "Bottom" + } + } + ] + } + ], + "metadata": { + "scribeConfig": { + "page": "favorites" + } + } + } + } + } + } + } +} diff --git a/tests/mocked-data/list_timeline_raw.json b/tests/mocked-data/raw_list_timeline.json similarity index 60% rename from tests/mocked-data/list_timeline_raw.json rename to tests/mocked-data/raw_list_timeline.json index ad0485f..b2e5cc8 100644 --- a/tests/mocked-data/list_timeline_raw.json +++ b/tests/mocked-data/raw_list_timeline.json @@ -8,4376 +8,14 @@ "type": "TimelineAddEntries", "entries": [ { - "entryId": "tweet-1739816722725589224", - "sortIndex": "1739819664587882496", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739816722725589224", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo3MDY2NDM3MQ==", - "rest_id": "70664371", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Sep 01 12:13:17 +0000 2009", - "default_profile": true, - "default_profile_image": false, - "description": "Two decades of reporting in more than 20 countries. Foreign correspondent @TheDailyBeast;@TheAtlantic,@USAToday @RollingStone. Courage in Journalism Award @IWMF", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 4113, - "followers_count": 18943, - "friends_count": 2220, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 952, - "location": "", - "media_count": 1217, - "name": "Anna Nemtsova", - "normal_followers_count": 18943, - "pinned_tweet_ids_str": [ - "1729932755713077531" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/70664371/1658767939", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1321538376961531904/AlUu6-aU_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "annanemtsova", - "statuses_count": 7725, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/LbIjDJ3bMl", - "legacy": { - "binding_values": [ - { - "key": "description", - "value": { - "string_value": "Доверие россиян к информации из соцсетей и блогов постепенно растет.", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "wciom.ru", - "type": "STRING" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "wciom.ru", - "type": "STRING" - } - }, - { - "key": "title", - "value": { - "string_value": "Новости, достойные доверия", - "type": "STRING" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/LbIjDJ3bMl", - "type": "STRING" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary", - "url": "https://t.co/LbIjDJ3bMl", - "user_refs_results": [] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739816722725589224" - ], - "editable_until_msecs": "1703643205000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "180", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Wed Dec 27 01:13:25 +0000 2023", - "conversation_id_str": "1739816722725589224", - "display_text_range": [ - 0, - 223 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "wciom.ru/analytical-rev…", - "expanded_url": "https://wciom.ru/analytical-reviews/analiticheskii-obzor/novosti-dostoinye-doverija", - "url": "https://t.co/LbIjDJ3bMl", - "indices": [ - 200, - 223 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 2, - "favorited": false, - "full_text": "Fewer and fewer Russians trust state propaganda. Only 26 percent of Russians trust the Kremlin-controlled television, 4 percent less than in 2019, according to Russian Public Opinion Research Center: https://t.co/LbIjDJ3bMl", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 0, - "retweet_count": 1, - "retweeted": false, - "user_id_str": "70664371", - "id_str": "1739816722725589224" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739814733971091715", - "sortIndex": "1739819664587882495", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739814733971091715", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo3MDY2NDM3MQ==", - "rest_id": "70664371", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Sep 01 12:13:17 +0000 2009", - "default_profile": true, - "default_profile_image": false, - "description": "Two decades of reporting in more than 20 countries. Foreign correspondent @TheDailyBeast;@TheAtlantic,@USAToday @RollingStone. Courage in Journalism Award @IWMF", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 4113, - "followers_count": 18943, - "friends_count": 2220, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 952, - "location": "", - "media_count": 1217, - "name": "Anna Nemtsova", - "normal_followers_count": 18943, - "pinned_tweet_ids_str": [ - "1729932755713077531" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/70664371/1658767939", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1321538376961531904/AlUu6-aU_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "annanemtsova", - "statuses_count": 7725, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739814733971091715" - ], - "editable_until_msecs": "1703642731000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "419", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1735726759872475624", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTg5NjY3NDk0MTA0NTM5MTM5", - "rest_id": "1589667494104539139", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Nov 07 17:14:06 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "🇬🇪20% of my country is occupied by Russia. #PapakhaParty", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 13, - "followers_count": 2256, - "friends_count": 776, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 3, - "location": "Tbilisi", - "media_count": 380, - "name": "GeorgiaPhoto 🇬🇪", - "normal_followers_count": 2256, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1589667494104539139/1693759012", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1589669550861213696/qhLF-IjX_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "GeorgiaPhoto", - "statuses_count": 386, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1597624984159002627", - "professional_type": "Creator", - "category": [ - { - "id": 1009, - "name": "Community", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1735726759872475624" - ], - "editable_until_msecs": "1702668082000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "331917", - "state": "EnabledWithCount" - }, - "source": "Twitter for Android", - "legacy": { - "bookmark_count": 95, - "bookmarked": false, - "created_at": "Fri Dec 15 18:21:22 +0000 2023", - "conversation_id_str": "1735726759872475624", - "display_text_range": [ - 0, - 12 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/7YVsDALYlh", - "expanded_url": "https://twitter.com/GeorgiaPhoto/status/1735726759872475624/video/1", - "id_str": "1735726723797278720", - "indices": [ - 13, - 36 - ], - "media_key": "7_1735726723797278720", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1735726723797278720/pu/img/-M0bU7RjBGjsk6g7.jpg", - "type": "video", - "url": "https://t.co/7YVsDALYlh", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 1280, - "w": 720, - "resize": "fit" - }, - "medium": { - "h": 1200, - "w": 675, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 383, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1280, - "width": 720, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 9, - 16 - ], - "duration_millis": 24275, - "variants": [ - { - "bitrate": 950000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1735726723797278720/pu/vid/avc1/480x852/HdUsK9EVTfkVjKUa.mp4?tag=12" - }, - { - "bitrate": 632000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1735726723797278720/pu/vid/avc1/320x568/r6jb-xhNEBV69tn7.mp4?tag=12" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1735726723797278720/pu/pl/k2caFcOgGG85X2jz.m3u8?tag=12&container=fmp4" - }, - { - "bitrate": 2176000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1735726723797278720/pu/vid/avc1/720x1280/PSsneuJmpTH5wyyc.mp4?tag=12" - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/7YVsDALYlh", - "expanded_url": "https://twitter.com/GeorgiaPhoto/status/1735726759872475624/video/1", - "id_str": "1735726723797278720", - "indices": [ - 13, - 36 - ], - "media_key": "7_1735726723797278720", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1735726723797278720/pu/img/-M0bU7RjBGjsk6g7.jpg", - "type": "video", - "url": "https://t.co/7YVsDALYlh", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 1280, - "w": 720, - "resize": "fit" - }, - "medium": { - "h": 1200, - "w": 675, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 383, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1280, - "width": 720, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 9, - 16 - ], - "duration_millis": 24275, - "variants": [ - { - "bitrate": 950000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1735726723797278720/pu/vid/avc1/480x852/HdUsK9EVTfkVjKUa.mp4?tag=12" - }, - { - "bitrate": 632000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1735726723797278720/pu/vid/avc1/320x568/r6jb-xhNEBV69tn7.mp4?tag=12" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1735726723797278720/pu/pl/k2caFcOgGG85X2jz.m3u8?tag=12&container=fmp4" - }, - { - "bitrate": 2176000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1735726723797278720/pu/vid/avc1/720x1280/PSsneuJmpTH5wyyc.mp4?tag=12" - } - ] - } - } - ] - }, - "favorite_count": 5342, - "favorited": false, - "full_text": "Tbilisi 🇬🇪🇪🇺 https://t.co/7YVsDALYlh", - "is_quote_status": false, - "lang": "tr", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 102, - "reply_count": 143, - "retweet_count": 823, - "retweeted": false, - "user_id_str": "1589667494104539139", - "id_str": "1735726759872475624" - } - } - }, - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Wed Dec 27 01:05:31 +0000 2023", - "conversation_id_str": "1739814733971091715", - "display_text_range": [ - 0, - 24 - ], - "entities": { - "hashtags": [ - { - "indices": [ - 10, - 21 - ], - "text": "Sakartvelo" - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 4, - "favorited": false, - "full_text": "Beautiful #Sakartvelo 🇬🇪", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1735726759872475624", - "quoted_status_permalink": { - "url": "https://t.co/MUn3EZo6tu", - "expanded": "https://twitter.com/georgiaphoto/status/1735726759872475624", - "display": "twitter.com/georgiaphoto/s…" - }, - "reply_count": 0, - "retweet_count": 1, - "retweeted": false, - "user_id_str": "70664371", - "id_str": "1739814733971091715" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739809786458214714", - "sortIndex": "1739819664587882494", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739809786458214714", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo0NzQ1NTExMg==", - "rest_id": "47455112", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Mon Jun 15 21:50:27 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Reporting on foreign policy. Current: Diplomatic Substack, Just Security ed bd. Al-Monitor Politico Foreign Policy alum. lkrozen threads, lkrozen.bsky, at gmail", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "diplomatic.substack.com", - "expanded_url": "https://diplomatic.substack.com/", - "url": "https://t.co/VBjgdai1Rl", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 228, - "followers_count": 174650, - "friends_count": 10007, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 4559, - "location": "Washington, D.C.", - "media_count": 6748, - "name": "Laura Rozen", - "normal_followers_count": 174650, - "pinned_tweet_ids_str": [ - "994000925793628160" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/47455112/1688651088", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/472902811630333952/hvAbmRyN_normal.jpeg", - "profile_interstitial_type": "", - "screen_name": "lrozen", - "statuses_count": 546276, - "translator_type": "none", - "url": "https://t.co/VBjgdai1Rl", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1587536294372155392", - "professional_type": "Creator", - "category": [ - { - "id": 955, - "name": "Journalist", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739809786458214714" - ], - "editable_until_msecs": "1703641551000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "4710", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPad", - "legacy": { - "bookmark_count": 1, - "bookmarked": false, - "created_at": "Wed Dec 27 00:45:51 +0000 2023", - "conversation_id_str": "1739809786458214714", - "display_text_range": [ - 0, - 283 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/pqOwgTx8jl", - "expanded_url": "https://twitter.com/lrozen/status/1739809786458214714/photo/1", - "id_str": "1739809783970930688", - "indices": [ - 284, - 307 - ], - "media_key": "3_1739809783970930688", - "media_url_https": "https://pbs.twimg.com/media/GCULx9ZWIAAxfDk.jpg", - "type": "photo", - "url": "https://t.co/pqOwgTx8jl", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 1536, - "w": 2048, - "resize": "fit" - }, - "medium": { - "h": 900, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 510, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1536, - "width": 2048, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 2048, - "h": 1147 - }, - { - "x": 256, - "y": 0, - "w": 1536, - "h": 1536 - }, - { - "x": 351, - "y": 0, - "w": 1347, - "h": 1536 - }, - { - "x": 640, - "y": 0, - "w": 768, - "h": 1536 - }, - { - "x": 0, - "y": 0, - "w": 2048, - "h": 1536 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/pqOwgTx8jl", - "expanded_url": "https://twitter.com/lrozen/status/1739809786458214714/photo/1", - "id_str": "1739809783970930688", - "indices": [ - 284, - 307 - ], - "media_key": "3_1739809783970930688", - "media_url_https": "https://pbs.twimg.com/media/GCULx9ZWIAAxfDk.jpg", - "type": "photo", - "url": "https://t.co/pqOwgTx8jl", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 1536, - "w": 2048, - "resize": "fit" - }, - "medium": { - "h": 900, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 510, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1536, - "width": 2048, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 2048, - "h": 1147 - }, - { - "x": 256, - "y": 0, - "w": 1536, - "h": 1536 - }, - { - "x": 351, - "y": 0, - "w": 1347, - "h": 1536 - }, - { - "x": 640, - "y": 0, - "w": 768, - "h": 1536 - }, - { - "x": 0, - "y": 0, - "w": 2048, - "h": 1536 - } - ] - } - } - ] - }, - "favorite_count": 35, - "favorited": false, - "full_text": "Biden call with Qatari Amir. WH: The 2 leaders discussed the urgent effort to secure the release of all remaining hostages held by Hamas, including American citizens. ..ongoing efforts to facilitate increased & sustained flows of life-saving access to humanitarian aid into Gaza. https://t.co/pqOwgTx8jl", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 2, - "reply_count": 0, - "retweet_count": 23, - "retweeted": false, - "user_id_str": "47455112", - "id_str": "1739809786458214714" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739807370643919057", - "sortIndex": "1739819664587882493", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739807370643919057", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNTE5MDQ0NjI4", - "rest_id": "2519044628", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sat May 24 00:38:04 +0000 2014", - "default_profile": true, - "default_profile_image": false, - "description": "@nytimes Visual Investigations,\nPreviously @bellingcat\nTips, questions, etc. - DMs are open, aric.toler@nytimes.com\nSignal/Telegram/WhatsApp: +1 913-209-0215", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nytimes.com/by/aric-toler", - "expanded_url": "https://www.nytimes.com/by/aric-toler", - "url": "https://t.co/gCpSztaGJ4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 23791, - "followers_count": 139221, - "friends_count": 1358, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 3304, - "location": "Kansas City", - "media_count": 4602, - "name": "Aric Toler", - "normal_followers_count": 139221, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2519044628/1470773317", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1703423707874496512/r9rbeRNV_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "AricToler", - "statuses_count": 31544, - "translator_type": "none", - "url": "https://t.co/gCpSztaGJ4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739807370643919057" - ], - "editable_until_msecs": "1703640975876", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for Android", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Wed Dec 27 00:36:15 +0000 2023", - "conversation_id_str": "1739807370643919057", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [ - { - "indices": [ - 52, - 57 - ], - "text": "Gaza" - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1168475760", - "name": "Wim Zwijnenburg", - "screen_name": "wammezz", - "indices": [ - 3, - 11 - ] - }, - { - "id_str": "18576537", - "name": "Israel Defense Forces", - "screen_name": "IDF", - "indices": [ - 130, - 134 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @wammezz: Ongoing Israeli operations in southern #Gaza show the level of the destruction of build-up and agricultural areas by @IDF mili…", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 6, - "retweeted": false, - "user_id_str": "2519044628", - "id_str": "1739807370643919057", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739802241312211184", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMTY4NDc1NzYw", - "rest_id": "1168475760", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Mon Feb 11 10:14:27 +0000 2013", - "default_profile": false, - "default_profile_image": false, - "description": "Military Drones/ Robots| Conflict, Climate & Environment| UN Green Star Award | Contributor @bellingcat | views are my own.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "paxforpeace.nl", - "expanded_url": "http://www.paxforpeace.nl", - "url": "https://t.co/qz1d1UBGwq", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 22324, - "followers_count": 16132, - "friends_count": 4409, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 523, - "location": "", - "media_count": 4736, - "name": "Wim Zwijnenburg", - "normal_followers_count": 16132, - "pinned_tweet_ids_str": [ - "1736754236203946345" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1168475760/1676719947", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1345063383599558658/Qe4iJtIo_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "wammezz", - "statuses_count": 26384, - "translator_type": "none", - "url": "https://t.co/qz1d1UBGwq", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739802241312211184" - ], - "editable_until_msecs": "1703639752000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "4606", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 2, - "bookmarked": false, - "created_at": "Wed Dec 27 00:15:52 +0000 2023", - "conversation_id_str": "1739802241312211184", - "display_text_range": [ - 0, - 232 - ], - "entities": { - "hashtags": [ - { - "indices": [ - 39, - 44 - ], - "text": "Gaza" - } - ], - "media": [ - { - "display_url": "pic.twitter.com/1glXF9ctKJ", - "expanded_url": "https://twitter.com/wammezz/status/1739802241312211184/photo/1", - "id_str": "1739802181916622848", - "indices": [ - 233, - 256 - ], - "media_key": "16_1739802181916622848", - "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/GCUE3diXAAAKCgj.jpg", - "type": "animated_gif", - "url": "https://t.co/1glXF9ctKJ", - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 338, - "w": 600, - "resize": "fit" - }, - "medium": { - "h": 338, - "w": 600, - "resize": "fit" - }, - "small": { - "h": 338, - "w": 600, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 338, - "width": 600, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 300, - 169 - ], - "variants": [ - { - "bitrate": 0, - "content_type": "video/mp4", - "url": "https://video.twimg.com/tweet_video/GCUE3diXAAAKCgj.mp4" - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "18576537", - "name": "Israel Defense Forces", - "screen_name": "IDF", - "indices": [ - 117, - 121 - ] - }, - { - "id_str": "17663776", - "name": "Planet", - "screen_name": "planet", - "indices": [ - 179, - 186 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/1glXF9ctKJ", - "expanded_url": "https://twitter.com/wammezz/status/1739802241312211184/photo/1", - "id_str": "1739802181916622848", - "indices": [ - 233, - 256 - ], - "media_key": "16_1739802181916622848", - "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/GCUE3diXAAAKCgj.jpg", - "type": "animated_gif", - "url": "https://t.co/1glXF9ctKJ", - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 338, - "w": 600, - "resize": "fit" - }, - "medium": { - "h": 338, - "w": 600, - "resize": "fit" - }, - "small": { - "h": 338, - "w": 600, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 338, - "width": 600, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 300, - 169 - ], - "variants": [ - { - "bitrate": 0, - "content_type": "video/mp4", - "url": "https://video.twimg.com/tweet_video/GCUE3diXAAAKCgj.mp4" - } - ] - } - } - ] - }, - "favorite_count": 14, - "favorited": false, - "full_text": "Ongoing Israeli operations in southern #Gaza show the level of the destruction of build-up and agricultural areas by @IDF military vehicles/ bulldozers is clearly visible on this @planet comparison between November and December 2023 https://t.co/1glXF9ctKJ", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 2, - "reply_count": 3, - "retweet_count": 6, - "retweeted": false, - "user_id_str": "1168475760", - "id_str": "1739802241312211184" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739807090758283702", - "sortIndex": "1739819664587882492", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739807090758283702", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjgyNzE0OA==", - "rest_id": "16827148", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Fri Oct 17 16:55:19 +0000 2008", - "default_profile": false, - "default_profile_image": false, - "description": "Ukraine correspondent @FT. 13+ years reporting in Ukraine. Author of THE WAR CAME TO US, published by @BloomsburyBooks, out now: https://t.co/Vfr0Qg7iIt", - "entities": { - "description": { - "urls": [ - { - "display_url": "linktr.ee/thewarcametous", - "expanded_url": "http://linktr.ee/thewarcametous", - "url": "https://t.co/Vfr0Qg7iIt", - "indices": [ - 129, - 152 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "ft.com/christopher-mi…", - "expanded_url": "https://www.ft.com/christopher-miller", - "url": "https://t.co/gCKlU6Hspj", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 54164, - "followers_count": 412997, - "friends_count": 4339, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 10748, - "location": "Kyiv via Bakhmut; also NYC", - "media_count": 8235, - "name": "Christopher Miller", - "normal_followers_count": 412997, - "pinned_tweet_ids_str": [ - "1681278741144633344" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16827148/1679318245", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1530061394619600896/GR0eYnkX_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "ChristopherJM", - "statuses_count": 73513, - "translator_type": "none", - "url": "https://t.co/gCKlU6Hspj", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1504925671306534915", - "professional_type": "Creator", - "category": [ - { - "id": 955, - "name": "Journalist", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739807090758283702" - ], - "editable_until_msecs": "1703640909000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "12766", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739800425295905166", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxODk0OTQ1Mg==", - "rest_id": "18949452", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Jan 13 19:28:24 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Big stories and breaking news headlines as they are published on https://t.co/EYmAcRLBHv. Register here to access free articles: https://t.co/NRg2hritkA", - "entities": { - "description": { - "urls": [ - { - "display_url": "FT.com", - "expanded_url": "http://FT.com", - "url": "https://t.co/EYmAcRLBHv", - "indices": [ - 65, - 88 - ] - }, - { - "display_url": "ft.com/register?segme…", - "expanded_url": "https://www.ft.com/register?segmentid=88c4a000-9", - "url": "https://t.co/NRg2hritkA", - "indices": [ - 129, - 152 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "ft.com", - "expanded_url": "http://www.ft.com/", - "url": "https://t.co/pAkU7GeWJx", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 39, - "followers_count": 5822654, - "friends_count": 1049, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 47297, - "location": "London", - "media_count": 51932, - "name": "Financial Times", - "normal_followers_count": 5822654, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18949452/1685967419", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/931156393108885504/EqEMtLhM_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "FT", - "statuses_count": 317879, - "translator_type": "none", - "url": "https://t.co/pAkU7GeWJx", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739800425295905166" - ], - "editable_until_msecs": "1703639319000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "33826", - "state": "EnabledWithCount" - }, - "source": "SocialFlow", - "legacy": { - "bookmark_count": 2, - "bookmarked": false, - "created_at": "Wed Dec 27 00:08:39 +0000 2023", - "conversation_id_str": "1739800425295905166", - "display_text_range": [ - 0, - 119 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/g9Icntixpt", - "expanded_url": "https://twitter.com/FT/status/1739800425295905166/photo/1", - "id_str": "1739800420409593857", - "indices": [ - 120, - 143 - ], - "media_key": "3_1739800420409593857", - "media_url_https": "https://pbs.twimg.com/media/GCUDQ7aW0AEtbE5.jpg", - "type": "photo", - "url": "https://t.co/g9Icntixpt", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 919, - "y": 909, - "h": 133, - "w": 133 - } - ] - }, - "medium": { - "faces": [ - { - "x": 538, - "y": 533, - "h": 78, - "w": 78 - } - ] - }, - "small": { - "faces": [ - { - "x": 305, - "y": 302, - "h": 44, - "w": 44 - } - ] - }, - "orig": { - "faces": [ - { - "x": 1592, - "y": 1575, - "h": 231, - "w": 231 - } - ] - } - }, - "sizes": { - "large": { - "h": 2048, - "w": 1268, - "resize": "fit" - }, - "medium": { - "h": 1200, - "w": 743, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 421, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 3545, - "width": 2195, - "focus_rects": [ - { - "x": 0, - "y": 892, - "w": 2195, - "h": 1229 - }, - { - "x": 0, - "y": 409, - "w": 2195, - "h": 2195 - }, - { - "x": 0, - "y": 255, - "w": 2195, - "h": 2502 - }, - { - "x": 422, - "y": 0, - "w": 1773, - "h": 3545 - }, - { - "x": 0, - "y": 0, - "w": 2195, - "h": 3545 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "on.ft.com/3RTLDhQ", - "expanded_url": "https://on.ft.com/3RTLDhQ", - "url": "https://t.co/57IUKubESo", - "indices": [ - 96, - 119 - ] - } - ], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/g9Icntixpt", - "expanded_url": "https://twitter.com/FT/status/1739800425295905166/photo/1", - "id_str": "1739800420409593857", - "indices": [ - 120, - 143 - ], - "media_key": "3_1739800420409593857", - "media_url_https": "https://pbs.twimg.com/media/GCUDQ7aW0AEtbE5.jpg", - "type": "photo", - "url": "https://t.co/g9Icntixpt", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 919, - "y": 909, - "h": 133, - "w": 133 - } - ] - }, - "medium": { - "faces": [ - { - "x": 538, - "y": 533, - "h": 78, - "w": 78 - } - ] - }, - "small": { - "faces": [ - { - "x": 305, - "y": 302, - "h": 44, - "w": 44 - } - ] - }, - "orig": { - "faces": [ - { - "x": 1592, - "y": 1575, - "h": 231, - "w": 231 - } - ] - } - }, - "sizes": { - "large": { - "h": 2048, - "w": 1268, - "resize": "fit" - }, - "medium": { - "h": 1200, - "w": 743, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 421, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 3545, - "width": 2195, - "focus_rects": [ - { - "x": 0, - "y": 892, - "w": 2195, - "h": 1229 - }, - { - "x": 0, - "y": 409, - "w": 2195, - "h": 2195 - }, - { - "x": 0, - "y": 255, - "w": 2195, - "h": 2502 - }, - { - "x": 422, - "y": 0, - "w": 1773, - "h": 3545 - }, - { - "x": 0, - "y": 0, - "w": 2195, - "h": 3545 - } - ] - } - } - ] - }, - "favorite_count": 43, - "favorited": false, - "full_text": "Just published: front page of the Financial Times, international edition, Wednesday 27 December https://t.co/57IUKubESo https://t.co/g9Icntixpt", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 7, - "reply_count": 9, - "retweet_count": 15, - "retweeted": false, - "user_id_str": "18949452", - "id_str": "1739800425295905166" - } - } - }, - "legacy": { - "bookmark_count": 3, - "bookmarked": false, - "created_at": "Wed Dec 27 00:35:09 +0000 2023", - "conversation_id_str": "1739807090758283702", - "display_text_range": [ - 0, - 44 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "18949452", - "name": "Financial Times", - "screen_name": "FT", - "indices": [ - 38, - 41 - ] - } - ] - }, - "favorite_count": 51, - "favorited": false, - "full_text": "Great front page photo in Wednesday’s @FT. 🔥", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1739800425295905166", - "quoted_status_permalink": { - "url": "https://t.co/tekIIPIfm7", - "expanded": "https://twitter.com/ft/status/1739800425295905166", - "display": "twitter.com/ft/status/1739…" - }, - "reply_count": 2, - "retweet_count": 7, - "retweeted": false, - "user_id_str": "16827148", - "id_str": "1739807090758283702" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739801694379118994", - "sortIndex": "1739819664587882491", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739801694379118994", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNjIyMTkxNjg=", - "rest_id": "262219168", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Mar 07 16:23:56 +0000 2011", - "default_profile": false, - "default_profile_image": false, - "description": "Live straight out of Bucha\nBuy Me a Coffee: https://t.co/2jsZNdSj2u\nAlso find me on BlueSky: https://t.co/rqus6D0CZd", - "entities": { - "description": { - "urls": [ - { - "display_url": "buymeacoffee.com/saintanger", - "expanded_url": "http://buymeacoffee.com/saintanger", - "url": "https://t.co/2jsZNdSj2u", - "indices": [ - 44, - 67 - ] - }, - { - "display_url": "bsky.app/profile/iopono…", - "expanded_url": "https://bsky.app/profile/ioponomarenko.bsky.social", - "url": "https://t.co/rqus6D0CZd", - "indices": [ - 93, - 116 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 29175, - "followers_count": 1269378, - "friends_count": 1608, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 16879, - "location": "Bucha, Ukraine", - "media_count": 3541, - "name": "Illia Ponomarenko 🇺🇦", - "normal_followers_count": 1269378, - "pinned_tweet_ids_str": [ - "1718549466830000457" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/262219168/1688741071", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683257804381908992/Oy5wj8wI_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "IAPonomarenko", - "statuses_count": 20674, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1473057187006234626", - "professional_type": "Creator", - "category": [ - { - "id": 955, - "name": "Journalist", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739801694379118994" - ], - "editable_until_msecs": "1703639622000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "69143", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 12, - "bookmarked": false, - "created_at": "Wed Dec 27 00:13:42 +0000 2023", - "conversation_id_str": "1739801694379118994", - "display_text_range": [ - 0, - 135 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/pzTcKjpOJ0", - "expanded_url": "https://twitter.com/IAPonomarenko/status/1739801694379118994/photo/1", - "id_str": "1739801690679787521", - "indices": [ - 136, - 159 - ], - "media_key": "3_1739801690679787521", - "media_url_https": "https://pbs.twimg.com/media/GCUEa3iXwAE9hDt.jpg", - "type": "photo", - "url": "https://t.co/pzTcKjpOJ0", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 522, - "w": 1160, - "resize": "fit" - }, - "medium": { - "h": 522, - "w": 1160, - "resize": "fit" - }, - "small": { - "h": 306, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 522, - "width": 1160, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 932, - "h": 522 - }, - { - "x": 58, - "y": 0, - "w": 522, - "h": 522 - }, - { - "x": 90, - "y": 0, - "w": 458, - "h": 522 - }, - { - "x": 189, - "y": 0, - "w": 261, - "h": 522 - }, - { - "x": 0, - "y": 0, - "w": 1160, - "h": 522 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/pzTcKjpOJ0", - "expanded_url": "https://twitter.com/IAPonomarenko/status/1739801694379118994/photo/1", - "id_str": "1739801690679787521", - "indices": [ - 136, - 159 - ], - "media_key": "3_1739801690679787521", - "media_url_https": "https://pbs.twimg.com/media/GCUEa3iXwAE9hDt.jpg", - "type": "photo", - "url": "https://t.co/pzTcKjpOJ0", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 522, - "w": 1160, - "resize": "fit" - }, - "medium": { - "h": 522, - "w": 1160, - "resize": "fit" - }, - "small": { - "h": 306, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 522, - "width": 1160, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 932, - "h": 522 - }, - { - "x": 58, - "y": 0, - "w": 522, - "h": 522 - }, - { - "x": 90, - "y": 0, - "w": 458, - "h": 522 - }, - { - "x": 189, - "y": 0, - "w": 261, - "h": 522 - }, - { - "x": 0, - "y": 0, - "w": 1160, - "h": 522 - } - ] - } - } - ] - }, - "favorite_count": 2054, - "favorited": false, - "full_text": "By the way, how are things with that World War III that was supposed to flare up if, god forbid, Ukraine strikes back at Russia’s navy? https://t.co/pzTcKjpOJ0", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 11, - "reply_count": 62, - "retweet_count": 241, - "retweeted": false, - "user_id_str": "262219168", - "id_str": "1739801694379118994" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739799427215147487", - "sortIndex": "1739819664587882490", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739799427215147487", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDA1ODQ2NTAwNTgzMzIxNjAx", - "rest_id": "1005846500583321601", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sun Jun 10 16:17:48 +0000 2018", - "default_profile": true, - "default_profile_image": false, - "description": "Dad. Spouse to @natsechobbyist. Vet. NYT Best-selling Author. Ex NSC/WH Staff. Senior Advisor @votevets. Dr. & Senior Fellow, SAIS, JHU. 🧵 @alexander_s_vindman", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "alexandervindman.substack.com", - "expanded_url": "https://alexandervindman.substack.com", - "url": "https://t.co/vyo9QsFIcu", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 14442, - "followers_count": 927419, - "friends_count": 1642, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5737, - "location": "Florida, USA", - "media_count": 309, - "name": "Alexander S. Vindman ❎", - "normal_followers_count": 927419, - "pinned_tweet_ids_str": [ - "1725146404589334755" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1005846500583321601/1682038223", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1438653431837872135/6170zRMd_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "AVindman", - "statuses_count": 6286, - "translator_type": "none", - "url": "https://t.co/vyo9QsFIcu", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1469829466885132297", - "professional_type": "Business", - "category": [ - { - "id": 956, - "name": "Writer", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "card": { - "rest_id": "https://t.co/RWfL5PoNxl", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 347, - "width": 662, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 144, - "width": 240, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=240x240" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "Show your support with a contribution.", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "secure.actblue.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 320, - "width": 535, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 396, - "width": 662, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "8223542", - "path": [] - } - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 347, - "width": 662, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 60, - "width": 100, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=100x100" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 396, - "width": 662, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 396, - "width": 662, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "secure.actblue.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 255, - "green": 255, - "red": 255 - }, - "percentage": 58.13 - }, - { - "rgb": { - "blue": 52, - "green": 47, - "red": 165 - }, - "percentage": 26.32 - }, - { - "rgb": { - "blue": 111, - "green": 61, - "red": 62 - }, - "percentage": 12.43 - }, - { - "rgb": { - "blue": 145, - "green": 141, - "red": 205 - }, - "percentage": 3.09 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "I just gave to Eugene Vindman!", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 255, - "green": 255, - "red": 255 - }, - "percentage": 58.13 - }, - { - "rgb": { - "blue": 52, - "green": 47, - "red": 165 - }, - "percentage": 26.32 - }, - { - "rgb": { - "blue": 111, - "green": 61, - "red": 62 - }, - "percentage": 12.43 - }, - { - "rgb": { - "blue": 145, - "green": 141, - "red": 205 - }, - "percentage": 3.09 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 396, - "width": 662, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 255, - "green": 255, - "red": 255 - }, - "percentage": 58.13 - }, - { - "rgb": { - "blue": 52, - "green": 47, - "red": 165 - }, - "percentage": 26.32 - }, - { - "rgb": { - "blue": 111, - "green": 61, - "red": 62 - }, - "percentage": 12.43 - }, - { - "rgb": { - "blue": 145, - "green": 141, - "red": 205 - }, - "percentage": 3.09 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 396, - "width": 662, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/RWfL5PoNxl", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 396, - "width": 662, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/RWfL5PoNxl", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjo4MjIzNTQy", - "rest_id": "8223542", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Thu Aug 16 13:39:10 +0000 2007", - "default_profile": false, - "default_profile_image": false, - "description": "We're a nonprofit fundraising platform for campaigns and organizations and the small-dollar donors who support them! #SmallDollarDonorPower", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.actblue.com", - "expanded_url": "https://blog.actblue.com", - "url": "https://t.co/3amAnpymfL", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 5102, - "followers_count": 38236, - "friends_count": 1639, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 510, - "location": "Somerville, MA", - "media_count": 749, - "name": "ActBlue", - "normal_followers_count": 38236, - "pinned_tweet_ids_str": [ - "1540375416250060800" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8223542/1678471453", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1634253837316784129/UHKXake0_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "actblue", - "statuses_count": 11581, - "translator_type": "none", - "url": "https://t.co/3amAnpymfL", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739799427215147487" - ], - "editable_until_msecs": "1703639082015", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Wed Dec 27 00:04:42 +0000 2023", - "conversation_id_str": "1739799427215147487", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1225929222839046144", - "name": "Eugene Vindman", - "screen_name": "YVindman", - "indices": [ - 3, - 12 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @YVindman: The end of the year is days away, which means it is our first major fundraising deadline. \n\nI am an Army veteran, father, and…", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 0, - "retweet_count": 284, - "retweeted": false, - "user_id_str": "1005846500583321601", - "id_str": "1739799427215147487", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739779257742639419", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMjI1OTI5MjIyODM5MDQ2MTQ0", - "rest_id": "1225929222839046144", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Fri Feb 07 23:48:16 +0000 2020", - "default_profile": true, - "default_profile_image": false, - "description": "Democrat candidate for Virginia's 7th District. Dad. Army combat vet. Fmr Colonel fired by Trump for doing my job. New mission: preserve democracy.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "vindmanforcongress.com", - "expanded_url": "http://vindmanforcongress.com/", - "url": "https://t.co/rqF2iwFkEx", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 2807, - "followers_count": 116480, - "friends_count": 356, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 905, - "location": "Virginia 7th Cong. Dist.", - "media_count": 207, - "name": "Eugene Vindman", - "normal_followers_count": 116480, - "pinned_tweet_ids_str": [ - "1725136837495202165" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1225929222839046144/1700136168", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1725122238674882560/7XYq6Xpv_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "YVindman", - "statuses_count": 2338, - "translator_type": "none", - "url": "https://t.co/rqF2iwFkEx", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/RWfL5PoNxl", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 347, - "width": 662, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 144, - "width": 240, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=240x240" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "Show your support with a contribution.", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "secure.actblue.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 320, - "width": 535, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 396, - "width": 662, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "8223542", - "path": [] - } - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 347, - "width": 662, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 60, - "width": 100, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=100x100" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 396, - "width": 662, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 396, - "width": 662, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "secure.actblue.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 255, - "green": 255, - "red": 255 - }, - "percentage": 58.13 - }, - { - "rgb": { - "blue": 52, - "green": 47, - "red": 165 - }, - "percentage": 26.32 - }, - { - "rgb": { - "blue": 111, - "green": 61, - "red": 62 - }, - "percentage": 12.43 - }, - { - "rgb": { - "blue": 145, - "green": 141, - "red": 205 - }, - "percentage": 3.09 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "I just gave to Eugene Vindman!", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 255, - "green": 255, - "red": 255 - }, - "percentage": 58.13 - }, - { - "rgb": { - "blue": 52, - "green": 47, - "red": 165 - }, - "percentage": 26.32 - }, - { - "rgb": { - "blue": 111, - "green": 61, - "red": 62 - }, - "percentage": 12.43 - }, - { - "rgb": { - "blue": 145, - "green": 141, - "red": 205 - }, - "percentage": 3.09 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 396, - "width": 662, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 255, - "green": 255, - "red": 255 - }, - "percentage": 58.13 - }, - { - "rgb": { - "blue": 52, - "green": 47, - "red": 165 - }, - "percentage": 26.32 - }, - { - "rgb": { - "blue": 111, - "green": 61, - "red": 62 - }, - "percentage": 12.43 - }, - { - "rgb": { - "blue": 145, - "green": 141, - "red": 205 - }, - "percentage": 3.09 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 396, - "width": 662, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/RWfL5PoNxl", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 396, - "width": 662, - "url": "https://pbs.twimg.com/card_img/1737816272660787201/vEQ56ZXd?format=png&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/RWfL5PoNxl", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjo4MjIzNTQy", - "rest_id": "8223542", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Thu Aug 16 13:39:10 +0000 2007", - "default_profile": false, - "default_profile_image": false, - "description": "We're a nonprofit fundraising platform for campaigns and organizations and the small-dollar donors who support them! #SmallDollarDonorPower", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "blog.actblue.com", - "expanded_url": "https://blog.actblue.com", - "url": "https://t.co/3amAnpymfL", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 5102, - "followers_count": 38236, - "friends_count": 1639, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 510, - "location": "Somerville, MA", - "media_count": 749, - "name": "ActBlue", - "normal_followers_count": 38236, - "pinned_tweet_ids_str": [ - "1540375416250060800" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/8223542/1678471453", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1634253837316784129/UHKXake0_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "actblue", - "statuses_count": 11581, - "translator_type": "none", - "url": "https://t.co/3amAnpymfL", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739779257742639419" - ], - "editable_until_msecs": "1703634273000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "41239", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:44:33 +0000 2023", - "conversation_id_str": "1739779257742639419", - "display_text_range": [ - 0, - 272 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "secure.actblue.com/donate/ev-soci…", - "expanded_url": "https://secure.actblue.com/donate/ev-social", - "url": "https://t.co/RWfL5PoNxl", - "indices": [ - 249, - 272 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 843, - "favorited": false, - "full_text": "The end of the year is days away, which means it is our first major fundraising deadline. \n\nI am an Army veteran, father, and Democrat who will keep Virginia’s 7th blue to preserve our democracy. \n\nShare this, chip in $7, and let’s win this race. \n\nhttps://t.co/RWfL5PoNxl", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 9, - "reply_count": 141, - "retweet_count": 284, - "retweeted": false, - "user_id_str": "1225929222839046144", - "id_str": "1739779257742639419" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739795113797136516", - "sortIndex": "1739819664587882489", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739795113797136516", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNjIyMTkxNjg=", - "rest_id": "262219168", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Mar 07 16:23:56 +0000 2011", - "default_profile": false, - "default_profile_image": false, - "description": "Live straight out of Bucha\nBuy Me a Coffee: https://t.co/2jsZNdSj2u\nAlso find me on BlueSky: https://t.co/rqus6D0CZd", - "entities": { - "description": { - "urls": [ - { - "display_url": "buymeacoffee.com/saintanger", - "expanded_url": "http://buymeacoffee.com/saintanger", - "url": "https://t.co/2jsZNdSj2u", - "indices": [ - 44, - 67 - ] - }, - { - "display_url": "bsky.app/profile/iopono…", - "expanded_url": "https://bsky.app/profile/ioponomarenko.bsky.social", - "url": "https://t.co/rqus6D0CZd", - "indices": [ - 93, - 116 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 29175, - "followers_count": 1269378, - "friends_count": 1608, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 16879, - "location": "Bucha, Ukraine", - "media_count": 3541, - "name": "Illia Ponomarenko 🇺🇦", - "normal_followers_count": 1269378, - "pinned_tweet_ids_str": [ - "1718549466830000457" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/262219168/1688741071", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683257804381908992/Oy5wj8wI_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "IAPonomarenko", - "statuses_count": 20674, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1473057187006234626", - "professional_type": "Creator", - "category": [ - { - "id": 955, - "name": "Journalist", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739795113797136516" - ], - "editable_until_msecs": "1703638053000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "78497", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1738162266975961308", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTM0NjI5NzgyOTg5NzE3NTA0", - "rest_id": "1534629782989717504", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed Jun 08 20:14:13 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Все для городских сумасшедших. Донати можна кидати сюди:", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "buymeacoffee.com/vsheredega", - "expanded_url": "https://www.buymeacoffee.com/vsheredega", - "url": "https://t.co/3sOdqttTng", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 40944, - "followers_count": 38047, - "friends_count": 297, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 138, - "location": "Украина", - "media_count": 1565, - "name": "пан шаміль", - "normal_followers_count": 38047, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1534629782989717504/1654773953", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1534634686072365056/ct4YG4o9_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "vsheredeha", - "statuses_count": 15700, - "translator_type": "none", - "url": "https://t.co/3sOdqttTng", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1738162266975961308" - ], - "editable_until_msecs": "1703248752000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": true, - "views": { - "count": "194573", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "note_tweet": { - "is_expandable": true, - "note_tweet_results": { - "result": { - "id": "Tm90ZVR3ZWV0OjE3MzgxNjIyNjY4Mzc0OTU4MDk=", - "text": "це Сергій. його мобілізували в травні 23 року. у ході нашого наступу отримав важкі поранення під селищем Новодонецьке.\n\nзараз вже місяць хлопець лікується в Києві, попереду в нього ще складні операції.\n\nщоб лікарі змогли ефективніше допомагати Сергію та іншим нашим пораненим наш фонд RELY FOUNDATION продовжує збір на медобладнання.\n\nпрошу усіх вас допомогти нам донатом та репостом.\n\nбанка:\n\nhttps://t.co/pwcCmYUe8A\n\nPayPal:\n\nvsheredega@gmail.com", - "entity_set": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "send.monobank.ua/jar/6xMN81zH6p", - "expanded_url": "http://send.monobank.ua/jar/6xMN81zH6p", - "url": "https://t.co/pwcCmYUe8A", - "indices": [ - 394, - 417 - ] - } - ], - "user_mentions": [] - } - } - } - }, - "legacy": { - "bookmark_count": 27, - "bookmarked": false, - "created_at": "Fri Dec 22 11:39:12 +0000 2023", - "conversation_id_str": "1738162266975961308", - "display_text_range": [ - 0, - 280 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/HgmPaJvj4f", - "expanded_url": "https://twitter.com/vsheredeha/status/1738162266975961308/photo/1", - "id_str": "1738162259845607424", - "indices": [ - 281, - 304 - ], - "media_key": "3_1738162259845607424", - "media_url_https": "https://pbs.twimg.com/media/GB8xXbwWcAAPeWo.jpg", - "type": "photo", - "url": "https://t.co/HgmPaJvj4f", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 462, - "y": 188, - "h": 190, - "w": 190 - } - ] - }, - "medium": { - "faces": [ - { - "x": 433, - "y": 176, - "h": 178, - "w": 178 - } - ] - }, - "small": { - "faces": [ - { - "x": 245, - "y": 99, - "h": 100, - "w": 100 - } - ] - }, - "orig": { - "faces": [ - { - "x": 462, - "y": 188, - "h": 190, - "w": 190 - } - ] - } - }, - "sizes": { - "large": { - "h": 1280, - "w": 960, - "resize": "fit" - }, - "medium": { - "h": 1200, - "w": 900, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 510, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1280, - "width": 960, - "focus_rects": [ - { - "x": 0, - "y": 19, - "w": 960, - "h": 538 - }, - { - "x": 0, - "y": 0, - "w": 960, - "h": 960 - }, - { - "x": 0, - "y": 0, - "w": 960, - "h": 1094 - }, - { - "x": 224, - "y": 0, - "w": 640, - "h": 1280 - }, - { - "x": 0, - "y": 0, - "w": 960, - "h": 1280 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/HgmPaJvj4f", - "expanded_url": "https://twitter.com/vsheredeha/status/1738162266975961308/photo/1", - "id_str": "1738162259845607424", - "indices": [ - 281, - 304 - ], - "media_key": "3_1738162259845607424", - "media_url_https": "https://pbs.twimg.com/media/GB8xXbwWcAAPeWo.jpg", - "type": "photo", - "url": "https://t.co/HgmPaJvj4f", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 462, - "y": 188, - "h": 190, - "w": 190 - } - ] - }, - "medium": { - "faces": [ - { - "x": 433, - "y": 176, - "h": 178, - "w": 178 - } - ] - }, - "small": { - "faces": [ - { - "x": 245, - "y": 99, - "h": 100, - "w": 100 - } - ] - }, - "orig": { - "faces": [ - { - "x": 462, - "y": 188, - "h": 190, - "w": 190 - } - ] - } - }, - "sizes": { - "large": { - "h": 1280, - "w": 960, - "resize": "fit" - }, - "medium": { - "h": 1200, - "w": 900, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 510, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1280, - "width": 960, - "focus_rects": [ - { - "x": 0, - "y": 19, - "w": 960, - "h": 538 - }, - { - "x": 0, - "y": 0, - "w": 960, - "h": 960 - }, - { - "x": 0, - "y": 0, - "w": 960, - "h": 1094 - }, - { - "x": 224, - "y": 0, - "w": 640, - "h": 1280 - }, - { - "x": 0, - "y": 0, - "w": 960, - "h": 1280 - } - ] - } - } - ] - }, - "favorite_count": 1687, - "favorited": false, - "full_text": "це Сергій. його мобілізували в травні 23 року. у ході нашого наступу отримав важкі поранення під селищем Новодонецьке.\n\nзараз вже місяць хлопець лікується в Києві, попереду в нього ще складні операції.\n\nщоб лікарі змогли ефективніше допомагати Сергію та іншим нашим пораненим наш… https://t.co/HgmPaJvj4f", - "is_quote_status": false, - "lang": "uk", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 8, - "reply_count": 36, - "retweet_count": 828, - "retweeted": false, - "user_id_str": "1534629782989717504", - "id_str": "1738162266975961308" - } - } - }, - "legacy": { - "bookmark_count": 12, - "bookmarked": false, - "created_at": "Tue Dec 26 23:47:33 +0000 2023", - "conversation_id_str": "1739795113797136516", - "display_text_range": [ - 0, - 82 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 713, - "favorited": false, - "full_text": "Another good opportunity to donate and support a disabled Ukrainian combat veteran", - "is_quote_status": true, - "lang": "en", - "quote_count": 2, - "quoted_status_id_str": "1738162266975961308", - "quoted_status_permalink": { - "url": "https://t.co/lEgIunYFXG", - "expanded": "https://twitter.com/vsheredeha/status/1738162266975961308", - "display": "twitter.com/vsheredeha/sta…" - }, - "reply_count": 9, - "retweet_count": 160, - "retweeted": false, - "user_id_str": "262219168", - "id_str": "1739795113797136516" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739792375080267894", - "sortIndex": "1739819664587882488", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739792375080267894", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxOTY3MjE2MzA2", - "rest_id": "1967216306", - "affiliates_highlighted_label": { - "label": { - "url": { - "url": "https://twitter.com/StateDept", - "urlType": "DeepLink" - }, - "badge": { - "url": "https://pbs.twimg.com/profile_images/1653450164210630659/oPRqz0j6_bigger.jpg" - }, - "description": "Department of State", - "userLabelType": "BusinessLabel", - "userLabelDisplayType": "Badge" - } - }, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Thu Oct 17 16:56:51 +0000 2013", - "default_profile": false, - "default_profile_image": false, - "description": "The official account of @StateDept’s Spokesperson serving under the leadership of the 71st Secretary of State @SecBlinken.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "state.gov/newsroom", - "expanded_url": "https://state.gov/newsroom", - "url": "https://t.co/uYwa4Ko0Is", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 64, - "followers_count": 603449, - "friends_count": 33, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 4253, - "location": "Dept. of State, Washington, DC", - "media_count": 2347, - "name": "Matthew Miller", - "normal_followers_count": 603449, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1967216306/1611162076", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1650603643685462016/2ChXxNhb_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "StateDeptSpox", - "statuses_count": 13946, - "translator_type": "none", - "url": "https://t.co/uYwa4Ko0Is", - "verified": false, - "verified_type": "Government", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739792375080267894" - ], - "editable_until_msecs": "1703637400000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "9541", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 3, - "bookmarked": false, - "created_at": "Tue Dec 26 23:36:40 +0000 2023", - "conversation_id_str": "1739792375080267894", - "display_text_range": [ - 0, - 276 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "14159148", - "name": "United Nations", - "screen_name": "UN", - "indices": [ - 19, - 22 - ] - }, - { - "id_str": "204698478", - "name": "UNOPS", - "screen_name": "UNOPS", - "indices": [ - 162, - 168 - ] - } - ] - }, - "favorite_count": 63, - "favorited": false, - "full_text": "We welcome today’s @UN appointment of Sigrid Kaag as Senior Humanitarian and Reconstruction Coordinator for Gaza. We look forward to working closely with her and @UNOPS to accelerate and streamline provision of live-saving humanitarian relief to Palestinian civilians in Gaza.", - "is_quote_status": false, - "lang": "en", - "quote_count": 13, - "reply_count": 149, - "retweet_count": 15, - "retweeted": false, - "user_id_str": "1967216306", - "id_str": "1739792375080267894" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739785767256215901", - "sortIndex": "1739819664587882487", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739785767256215901", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDEwNjQ3Ng==", - "rest_id": "14106476", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sun Mar 09 08:15:00 +0000 2008", - "default_profile": false, - "default_profile_image": false, - "description": "The award-winning Kyiv Post is the top international source of English-language news about Ukraine since 1995.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kyivpost.com", - "expanded_url": "http://kyivpost.com/", - "url": "https://t.co/lHlutZvoAu", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 4940, - "followers_count": 394083, - "friends_count": 1632, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 6669, - "location": "#Kyiv, #Ukraine", - "media_count": 30642, - "name": "KyivPost", - "normal_followers_count": 394083, - "pinned_tweet_ids_str": [ - "1737813935594565787" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14106476/1703492324", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1592474120477982720/cLYnDbg1_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivPost", - "statuses_count": 73335, - "translator_type": "none", - "url": "https://t.co/lHlutZvoAu", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739785767256215901" - ], - "editable_until_msecs": "1703635825000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "7813", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 3, - "bookmarked": false, - "created_at": "Tue Dec 26 23:10:25 +0000 2023", - "conversation_id_str": "1739785767256215901", - "display_text_range": [ - 0, - 102 - ], - "entities": { - "hashtags": [ - { - "indices": [ - 29, - 35 - ], - "text": "Sunak" - } - ], - "media": [ - { - "display_url": "pic.twitter.com/yTH1jCQ3ng", - "expanded_url": "https://twitter.com/KyivPost/status/1739785767256215901/video/1", - "id_str": "1739765351141744640", - "indices": [ - 103, - 126 - ], - "media_key": "13_1739765351141744640", - "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1739765351141744640/img/0-txIuis0yZyf7og.jpg", - "type": "video", - "url": "https://t.co/yTH1jCQ3ng", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 672, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 630, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 357, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 672, - "width": 1280, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 40, - 21 - ], - "duration_millis": 72300, - "variants": [ - { - "bitrate": 288000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739765351141744640/vid/avc1/514x270/FZtH3W1cm_3jChvQ.mp4?tag=14" - }, - { - "bitrate": 2176000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739765351141744640/vid/avc1/1280x672/M9RCG46qFAc1NZUN.mp4?tag=14" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/amplify_video/1739765351141744640/pl/D_olyzKXrQNL4QaJ.m3u8?tag=14&container=fmp4" - }, - { - "bitrate": 832000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739765351141744640/vid/avc1/684x360/R3OU2er0_tWHNRLQ.mp4?tag=14" - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/yTH1jCQ3ng", - "expanded_url": "https://twitter.com/KyivPost/status/1739785767256215901/video/1", - "id_str": "1739765351141744640", - "indices": [ - 103, - 126 - ], - "media_key": "13_1739765351141744640", - "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1739765351141744640/img/0-txIuis0yZyf7og.jpg", - "type": "video", - "url": "https://t.co/yTH1jCQ3ng", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 672, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 630, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 357, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 672, - "width": 1280, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 40, - 21 - ], - "duration_millis": 72300, - "variants": [ - { - "bitrate": 288000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739765351141744640/vid/avc1/514x270/FZtH3W1cm_3jChvQ.mp4?tag=14" - }, - { - "bitrate": 2176000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739765351141744640/vid/avc1/1280x672/M9RCG46qFAc1NZUN.mp4?tag=14" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/amplify_video/1739765351141744640/pl/D_olyzKXrQNL4QaJ.m3u8?tag=14&container=fmp4" - }, - { - "bitrate": 832000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739765351141744640/vid/avc1/684x360/R3OU2er0_tWHNRLQ.mp4?tag=14" - } - ] - } - } - ] - }, - "favorite_count": 38, - "favorited": false, - "full_text": "British Prime Minister Rishi #Sunak starred in a Christmas video inspired by the movie 'Home Alone'🎄🎞️ https://t.co/yTH1jCQ3ng", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 3, - "retweet_count": 6, - "retweeted": false, - "user_id_str": "14106476", - "id_str": "1739785767256215901" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "list-conversation-1739819664587882506", - "sortIndex": "1739819664587882486", + "entryId": "list-conversation-1756309211907620864", + "sortIndex": "1756309211907620864", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "list-conversation-1739819664587882506-tweet-1739775484341215487", + "entryId": "list-conversation-1756309211907620864-tweet-1756308298834284643", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -4385,12364 +23,13 @@ "tweet_results": { "result": { "__typename": "Tweet", - "rest_id": "1739775484341215487", + "rest_id": "1756308298834284643", "core": { "user_results": { "result": { "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739775484341215487" - ], - "editable_until_msecs": "1703633373000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "33690", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1738738078963925493", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/lNou2ixIUf", - "legacy": { - "binding_values": [ - { - "key": "player_url", - "value": { - "string_value": "https://www.youtube.com/embed/BIOkhKCFP84", - "type": "STRING" - } - }, - { - "key": "player_image_large", - "value": { - "image_value": { - "height": 320, - "width": 569, - "url": "https://pbs.twimg.com/card_img/1738736972305240064/6h0LjL7O?format=jpg&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "player_image", - "value": { - "image_value": { - "height": 158, - "width": 280, - "url": "https://pbs.twimg.com/card_img/1738736972305240064/6h0LjL7O?format=jpg&name=280x280" - }, - "type": "IMAGE" - } - }, - { - "key": "app_star_rating", - "value": { - "string_value": "4.6776", - "type": "STRING" - } - }, - { - "key": "player_width", - "value": { - "string_value": "1280", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.youtube.com", - "type": "STRING" - } - }, - { - "key": "app_is_free", - "value": { - "string_value": "true", - "type": "STRING" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "10228272", - "path": [] - } - } - }, - { - "key": "player_image_original", - "value": { - "image_value": { - "height": 720, - "width": 1280, - "url": "https://pbs.twimg.com/card_img/1738736972305240064/6h0LjL7O?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "app_num_ratings", - "value": { - "string_value": "34,009,347", - "type": "STRING" - } - }, - { - "key": "app_price_amount", - "value": { - "string_value": "0.0", - "type": "STRING" - } - }, - { - "key": "player_height", - "value": { - "string_value": "720", - "type": "STRING" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "youtube.com", - "type": "STRING" - } - }, - { - "key": "app_name", - "value": { - "string_value": "YouTube: Watch, Listen, Stream", - "type": "STRING" - } - }, - { - "key": "player_image_small", - "value": { - "image_value": { - "height": 81, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1738736972305240064/6h0LjL7O?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "title", - "value": { - "string_value": "Experts discuss the impact of sanctions on Russian economy", - "type": "STRING" - } - }, - { - "key": "app_price_currency", - "value": { - "string_value": "USD", - "type": "STRING" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/lNou2ixIUf", - "type": "STRING" - } - }, - { - "key": "player_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 43, - "green": 31, - "red": 31 - }, - "percentage": 41.94 - }, - { - "rgb": { - "blue": 85, - "green": 103, - "red": 120 - }, - "percentage": 17.91 - }, - { - "rgb": { - "blue": 185, - "green": 155, - "red": 170 - }, - "percentage": 17.85 - }, - { - "rgb": { - "blue": 94, - "green": 120, - "red": 175 - }, - "percentage": 8.91 - }, - { - "rgb": { - "blue": 128, - "green": 70, - "red": 47 - }, - "percentage": 4.01 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "player_image_x_large", - "value": { - "image_value": { - "height": 720, - "width": 1280, - "url": "https://pbs.twimg.com/card_img/1738736972305240064/6h0LjL7O?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "player", - "url": "https://t.co/lNou2ixIUf", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDIyODI3Mg==", - "rest_id": "10228272", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Nov 13 21:43:46 +0000 2007", - "default_profile": false, - "default_profile_image": false, - "description": "like and subscribe.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "youtube.com", - "expanded_url": "http://youtube.com", - "url": "https://t.co/bUisN3Y1A6", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 6182, - "followers_count": 79693058, - "friends_count": 1176, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 79752, - "location": "San Bruno, CA", - "media_count": 15751, - "name": "YouTube", - "normal_followers_count": 79693058, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10228272/1697646656", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "YouTube", - "statuses_count": 57347, - "translator_type": "regular", - "url": "https://t.co/bUisN3Y1A6", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1738738078963925493" - ], - "editable_until_msecs": "1703386036000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "246083", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 30, - "bookmarked": false, - "created_at": "Sun Dec 24 01:47:16 +0000 2023", - "conversation_id_str": "1738738078963925493", - "display_text_range": [ - 0, - 280 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "youtu.be/BIOkhKCFP84", - "expanded_url": "https://youtu.be/BIOkhKCFP84", - "url": "https://t.co/lNou2ixIUf", - "indices": [ - 257, - 280 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 750, - "favorited": false, - "full_text": "Experts discussed the impact of Western sanctions on the Russian economy. A fat cat economist suggested that those who can't afford to buy eggs can simply switch to beef. The segment was followed by an obnoxious commercial, reminiscent of The Hunger Games.\nhttps://t.co/lNou2ixIUf", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 18, - "reply_count": 64, - "retweet_count": 178, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1738738078963925493" - } - } - }, - "legacy": { - "bookmark_count": 4, - "bookmarked": false, - "created_at": "Tue Dec 26 22:29:33 +0000 2023", - "conversation_id_str": "1739775484341215487", - "display_text_range": [ - 0, - 222 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/thixC0hiJ8", - "expanded_url": "https://twitter.com/JuliaDavisNews/status/1739775484341215487/photo/1", - "id_str": "1739775279235526656", - "indices": [ - 223, - 246 - ], - "media_key": "3_1739775279235526656", - "media_url_https": "https://pbs.twimg.com/media/GCTsZhPW8AAOdN7.jpg", - "type": "photo", - "url": "https://t.co/thixC0hiJ8", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 761, - "y": 122, - "h": 82, - "w": 82 - }, - { - "x": 216, - "y": 118, - "h": 89, - "w": 89 - }, - { - "x": 481, - "y": 418, - "h": 119, - "w": 119 - }, - { - "x": 574, - "y": 124, - "h": 132, - "w": 132 - } - ] - }, - "medium": { - "faces": [ - { - "x": 761, - "y": 122, - "h": 82, - "w": 82 - }, - { - "x": 216, - "y": 118, - "h": 89, - "w": 89 - }, - { - "x": 481, - "y": 418, - "h": 119, - "w": 119 - }, - { - "x": 574, - "y": 124, - "h": 132, - "w": 132 - } - ] - }, - "small": { - "faces": [ - { - "x": 488, - "y": 78, - "h": 52, - "w": 52 - }, - { - "x": 138, - "y": 75, - "h": 57, - "w": 57 - }, - { - "x": 308, - "y": 268, - "h": 76, - "w": 76 - }, - { - "x": 368, - "y": 79, - "h": 84, - "w": 84 - } - ] - }, - "orig": { - "faces": [ - { - "x": 761, - "y": 122, - "h": 82, - "w": 82 - }, - { - "x": 216, - "y": 118, - "h": 89, - "w": 89 - }, - { - "x": 481, - "y": 418, - "h": 119, - "w": 119 - }, - { - "x": 574, - "y": 124, - "h": 132, - "w": 132 - } - ] - } - }, - "sizes": { - "large": { - "h": 587, - "w": 1060, - "resize": "fit" - }, - "medium": { - "h": 587, - "w": 1060, - "resize": "fit" - }, - "small": { - "h": 377, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 587, - "width": 1060, - "focus_rects": [ - { - "x": 12, - "y": 0, - "w": 1048, - "h": 587 - }, - { - "x": 473, - "y": 0, - "w": 587, - "h": 587 - }, - { - "x": 545, - "y": 0, - "w": 515, - "h": 587 - }, - { - "x": 766, - "y": 0, - "w": 294, - "h": 587 - }, - { - "x": 0, - "y": 0, - "w": 1060, - "h": 587 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "x.com/JuliaDavisNews…", - "expanded_url": "https://x.com/JuliaDavisNews/status/1738738078963925493?s=20", - "url": "https://t.co/KmFL4Zt1JU", - "indices": [ - 199, - 222 - ] - } - ], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/thixC0hiJ8", - "expanded_url": "https://twitter.com/JuliaDavisNews/status/1739775484341215487/photo/1", - "id_str": "1739775279235526656", - "indices": [ - 223, - 246 - ], - "media_key": "3_1739775279235526656", - "media_url_https": "https://pbs.twimg.com/media/GCTsZhPW8AAOdN7.jpg", - "type": "photo", - "url": "https://t.co/thixC0hiJ8", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 761, - "y": 122, - "h": 82, - "w": 82 - }, - { - "x": 216, - "y": 118, - "h": 89, - "w": 89 - }, - { - "x": 481, - "y": 418, - "h": 119, - "w": 119 - }, - { - "x": 574, - "y": 124, - "h": 132, - "w": 132 - } - ] - }, - "medium": { - "faces": [ - { - "x": 761, - "y": 122, - "h": 82, - "w": 82 - }, - { - "x": 216, - "y": 118, - "h": 89, - "w": 89 - }, - { - "x": 481, - "y": 418, - "h": 119, - "w": 119 - }, - { - "x": 574, - "y": 124, - "h": 132, - "w": 132 - } - ] - }, - "small": { - "faces": [ - { - "x": 488, - "y": 78, - "h": 52, - "w": 52 - }, - { - "x": 138, - "y": 75, - "h": 57, - "w": 57 - }, - { - "x": 308, - "y": 268, - "h": 76, - "w": 76 - }, - { - "x": 368, - "y": 79, - "h": 84, - "w": 84 - } - ] - }, - "orig": { - "faces": [ - { - "x": 761, - "y": 122, - "h": 82, - "w": 82 - }, - { - "x": 216, - "y": 118, - "h": 89, - "w": 89 - }, - { - "x": 481, - "y": 418, - "h": 119, - "w": 119 - }, - { - "x": 574, - "y": 124, - "h": 132, - "w": 132 - } - ] - } - }, - "sizes": { - "large": { - "h": 587, - "w": 1060, - "resize": "fit" - }, - "medium": { - "h": 587, - "w": 1060, - "resize": "fit" - }, - "small": { - "h": 377, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 587, - "width": 1060, - "focus_rects": [ - { - "x": 12, - "y": 0, - "w": 1048, - "h": 587 - }, - { - "x": 473, - "y": 0, - "w": 587, - "h": 587 - }, - { - "x": 545, - "y": 0, - "w": 515, - "h": 587 - }, - { - "x": 766, - "y": 0, - "w": 294, - "h": 587 - }, - { - "x": 0, - "y": 0, - "w": 1060, - "h": 587 - } - ] - } - } - ] - }, - "favorite_count": 173, - "favorited": false, - "full_text": "Larry Johnson told Scott Ritter that Russia excels at everything and sure enough, Vladimir Solovyov broadcast it on his show. Spoiler: no, things in Russia are far from great. Case in point below ⤵️\nhttps://t.co/KmFL4Zt1JU https://t.co/thixC0hiJ8", - "is_quote_status": true, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 1, - "quoted_status_id_str": "1738738078963925493", - "quoted_status_permalink": { - "url": "https://t.co/KmFL4Zt1JU", - "expanded": "https://x.com/JuliaDavisNews/status/1738738078963925493?s=20", - "display": "x.com/JuliaDavisNews…" - }, - "reply_count": 7, - "retweet_count": 37, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739775484341215487" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "list-conversation-1739819664587882506-tweet-1739776457654808672", - "item": { - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739776457654808672", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo4ODQ1NzgxODczOTI1NDQ3Njk=", - "rest_id": "884578187392544769", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Tue Jul 11 01:00:49 +0000 2017", - "default_profile": true, - "default_profile_image": false, - "description": "Former CIA Clandestine Service. Now @SpycraftEnt, #NAFO fella. Sometimes writes. Good father, decent husband, excellent dog owner.", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 281557, - "followers_count": 247265, - "friends_count": 2551, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 2418, - "location": "Washington, DC", - "media_count": 2202, - "name": "John Sipher", - "normal_followers_count": 247265, - "pinned_tweet_ids_str": [ - "1487082405970288646" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/884578187392544769/1695478628", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1589241979698925568/E7yUu08y_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "john_sipher", - "statuses_count": 82474, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739776457654808672" - ], - "editable_until_msecs": "1703633605000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "2379", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:33:25 +0000 2023", - "conversation_id_str": "1739775484341215487", - "display_text_range": [ - 15, - 15 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/0WDj4uWaNU", - "expanded_url": "https://twitter.com/john_sipher/status/1739776457654808672/photo/1", - "id_str": "1739776454911803392", - "indices": [ - 16, - 39 - ], - "media_key": "3_1739776454911803392", - "media_url_https": "https://pbs.twimg.com/media/GCTtd8-bQAA730M.jpg", - "type": "photo", - "url": "https://t.co/0WDj4uWaNU", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 14, - "y": 645, - "h": 64, - "w": 64 - }, - { - "x": 750, - "y": 326, - "h": 309, - "w": 309 - } - ] - }, - "medium": { - "faces": [ - { - "x": 13, - "y": 623, - "h": 61, - "w": 61 - }, - { - "x": 724, - "y": 314, - "h": 298, - "w": 298 - } - ] - }, - "small": { - "faces": [ - { - "x": 7, - "y": 353, - "h": 35, - "w": 35 - }, - { - "x": 410, - "y": 178, - "h": 169, - "w": 169 - } - ] - }, - "orig": { - "faces": [ - { - "x": 14, - "y": 645, - "h": 64, - "w": 64 - }, - { - "x": 750, - "y": 326, - "h": 309, - "w": 309 - } - ] - } - }, - "sizes": { - "large": { - "h": 1203, - "w": 1242, - "resize": "fit" - }, - "medium": { - "h": 1162, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 659, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1203, - "width": 1242, - "focus_rects": [ - { - "x": 0, - "y": 490, - "w": 1242, - "h": 696 - }, - { - "x": 0, - "y": 0, - "w": 1203, - "h": 1203 - }, - { - "x": 0, - "y": 0, - "w": 1055, - "h": 1203 - }, - { - "x": 164, - "y": 0, - "w": 602, - "h": 1203 - }, - { - "x": 0, - "y": 0, - "w": 1242, - "h": 1203 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/0WDj4uWaNU", - "expanded_url": "https://twitter.com/john_sipher/status/1739776457654808672/photo/1", - "id_str": "1739776454911803392", - "indices": [ - 16, - 39 - ], - "media_key": "3_1739776454911803392", - "media_url_https": "https://pbs.twimg.com/media/GCTtd8-bQAA730M.jpg", - "type": "photo", - "url": "https://t.co/0WDj4uWaNU", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 14, - "y": 645, - "h": 64, - "w": 64 - }, - { - "x": 750, - "y": 326, - "h": 309, - "w": 309 - } - ] - }, - "medium": { - "faces": [ - { - "x": 13, - "y": 623, - "h": 61, - "w": 61 - }, - { - "x": 724, - "y": 314, - "h": 298, - "w": 298 - } - ] - }, - "small": { - "faces": [ - { - "x": 7, - "y": 353, - "h": 35, - "w": 35 - }, - { - "x": 410, - "y": 178, - "h": 169, - "w": 169 - } - ] - }, - "orig": { - "faces": [ - { - "x": 14, - "y": 645, - "h": 64, - "w": 64 - }, - { - "x": 750, - "y": 326, - "h": 309, - "w": 309 - } - ] - } - }, - "sizes": { - "large": { - "h": 1203, - "w": 1242, - "resize": "fit" - }, - "medium": { - "h": 1162, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 659, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1203, - "width": 1242, - "focus_rects": [ - { - "x": 0, - "y": 490, - "w": 1242, - "h": 696 - }, - { - "x": 0, - "y": 0, - "w": 1203, - "h": 1203 - }, - { - "x": 0, - "y": 0, - "w": 1055, - "h": 1203 - }, - { - "x": 164, - "y": 0, - "w": 602, - "h": 1203 - }, - { - "x": 0, - "y": 0, - "w": 1242, - "h": 1203 - } - ] - } - } - ] - }, - "favorite_count": 92, - "favorited": false, - "full_text": "@JuliaDavisNews https://t.co/0WDj4uWaNU", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1739775484341215487", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": false, - "lang": "qme", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 2, - "retweet_count": 14, - "retweeted": false, - "user_id_str": "884578187392544769", - "id_str": "1739776457654808672" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - } - ], - "metadata": { - "conversationMetadata": { - "allTweetIds": [ - "1739775484341215487", - "1739776457654808672" - ], - "enableDeduplication": true - } - }, - "displayType": "VerticalConversation", - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739776259867947382", - "sortIndex": "1739819664587882485", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739776259867947382", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739776259867947382" - ], - "editable_until_msecs": "1703633558489", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:32:38 +0000 2023", - "conversation_id_str": "1739776259867947382", - "display_text_range": [ - 0, - 124 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/YJyWQrZdTr", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739775975439896831/photo/1", - "ext_alt_text": "“It’s very awkward, because - who am I?”", - "id_str": "1739775970683518976", - "indices": [ - 101, - 124 - ], - "media_key": "3_1739775970683518976", - "media_url_https": "https://pbs.twimg.com/media/GCTtBxFaAAAc8wh.jpg", - "source_status_id_str": "1739775975439896831", - "source_user_id_str": "1419248815", - "type": "photo", - "url": "https://t.co/YJyWQrZdTr", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 489, - "y": 234, - "h": 139, - "w": 139 - } - ] - }, - "medium": { - "faces": [ - { - "x": 489, - "y": 234, - "h": 139, - "w": 139 - } - ] - }, - "small": { - "faces": [ - { - "x": 284, - "y": 136, - "h": 80, - "w": 80 - } - ] - }, - "orig": { - "faces": [ - { - "x": 489, - "y": 234, - "h": 139, - "w": 139 - } - ] - } - }, - "sizes": { - "large": { - "h": 746, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 746, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 434, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 746, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 1170, - "h": 655 - }, - { - "x": 65, - "y": 0, - "w": 746, - "h": 746 - }, - { - "x": 111, - "y": 0, - "w": 654, - "h": 746 - }, - { - "x": 252, - "y": 0, - "w": 373, - "h": 746 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 746 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "twitter.com/vladaknowlton/…", - "expanded_url": "https://twitter.com/vladaknowlton/status/1716203656943673745?s=46&t=O47zmhoVVU2XZxjT5_t0FA", - "url": "https://t.co/ThvbkUyIvb", - "indices": [ - 77, - 100 - ] - } - ], - "user_mentions": [ - { - "id_str": "1419248815", - "name": "Vlada Knowlton 🇺🇦", - "screen_name": "VladaKnowlton", - "indices": [ - 3, - 17 - ] - }, - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 19, - 34 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/YJyWQrZdTr", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739775975439896831/photo/1", - "ext_alt_text": "“It’s very awkward, because - who am I?”", - "id_str": "1739775970683518976", - "indices": [ - 101, - 124 - ], - "media_key": "3_1739775970683518976", - "media_url_https": "https://pbs.twimg.com/media/GCTtBxFaAAAc8wh.jpg", - "source_status_id_str": "1739775975439896831", - "source_user_id_str": "1419248815", - "type": "photo", - "url": "https://t.co/YJyWQrZdTr", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 489, - "y": 234, - "h": 139, - "w": 139 - } - ] - }, - "medium": { - "faces": [ - { - "x": 489, - "y": 234, - "h": 139, - "w": 139 - } - ] - }, - "small": { - "faces": [ - { - "x": 284, - "y": 136, - "h": 80, - "w": 80 - } - ] - }, - "orig": { - "faces": [ - { - "x": 489, - "y": 234, - "h": 139, - "w": 139 - } - ] - } - }, - "sizes": { - "large": { - "h": 746, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 746, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 434, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 746, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 1170, - "h": 655 - }, - { - "x": 65, - "y": 0, - "w": 746, - "h": 746 - }, - { - "x": 111, - "y": 0, - "w": 654, - "h": 746 - }, - { - "x": 252, - "y": 0, - "w": 373, - "h": 746 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 746 - } - ] - } - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @VladaKnowlton: @JuliaDavisNews A “modern-day Soviet Information Bureau”?\nhttps://t.co/ThvbkUyIvb https://t.co/YJyWQrZdTr", - "is_quote_status": true, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "quoted_status_id_str": "1716203656943673745", - "quoted_status_permalink": { - "url": "https://t.co/ThvbkUyIvb", - "expanded": "https://twitter.com/vladaknowlton/status/1716203656943673745?s=46&t=O47zmhoVVU2XZxjT5_t0FA", - "display": "twitter.com/vladaknowlton/…" - }, - "reply_count": 0, - "retweet_count": 11, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739776259867947382", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739775975439896831", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDE5MjQ4ODE1", - "rest_id": "1419248815", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Fri May 10 22:41:32 +0000 2013", - "default_profile": false, - "default_profile_image": false, - "description": "She/her. Filmmaker “The Most Dangerous Year”, “Well Actually”, “Having It All”. PhD in Cog Sci from Brown. I smile as much as men do.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "themostdangerousyear.com", - "expanded_url": "http://themostdangerousyear.com", - "url": "https://t.co/64wAOfKKgb", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 29700, - "followers_count": 3479, - "friends_count": 1936, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 51, - "location": "Seattle", - "media_count": 2660, - "name": "Vlada Knowlton 🇺🇦", - "normal_followers_count": 3479, - "pinned_tweet_ids_str": [ - "1578131619915137027" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1419248815/1604768204", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1663659098645364736/3mCe5p-8_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "VladaKnowlton", - "statuses_count": 24703, - "translator_type": "none", - "url": "https://t.co/64wAOfKKgb", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1473542354288078848", - "professional_type": "Creator", - "category": [ - { - "id": 950, - "name": "Film Director", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739775975439896831" - ], - "editable_until_msecs": "1703633490000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "23465", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1716203656943673745", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDE5MjQ4ODE1", - "rest_id": "1419248815", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Fri May 10 22:41:32 +0000 2013", - "default_profile": false, - "default_profile_image": false, - "description": "She/her. Filmmaker “The Most Dangerous Year”, “Well Actually”, “Having It All”. PhD in Cog Sci from Brown. I smile as much as men do.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "themostdangerousyear.com", - "expanded_url": "http://themostdangerousyear.com", - "url": "https://t.co/64wAOfKKgb", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 29700, - "followers_count": 3479, - "friends_count": 1936, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 51, - "location": "Seattle", - "media_count": 2660, - "name": "Vlada Knowlton 🇺🇦", - "normal_followers_count": 3479, - "pinned_tweet_ids_str": [ - "1578131619915137027" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1419248815/1604768204", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1663659098645364736/3mCe5p-8_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "VladaKnowlton", - "statuses_count": 24703, - "translator_type": "none", - "url": "https://t.co/64wAOfKKgb", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1473542354288078848", - "professional_type": "Creator", - "category": [ - { - "id": 950, - "name": "Film Director", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1716203656943673745" - ], - "editable_until_msecs": "1698013411000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "44568", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Sun Oct 22 21:23:31 +0000 2023", - "conversation_id_str": "1716196280295182766", - "display_text_range": [ - 16, - 84 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/ASwQ9oDHcF", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1716203656943673745/photo/1", - "ext_alt_text": "“but, to be fair, what is peculiar is that”", - "id_str": "1716203652942381056", - "indices": [ - 85, - 108 - ], - "media_key": "3_1716203652942381056", - "media_url_https": "https://pbs.twimg.com/media/F9EuISfbwAAcFAV.jpg", - "type": "photo", - "url": "https://t.co/ASwQ9oDHcF", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 1061, - "y": 561, - "h": 47, - "w": 47 - }, - { - "x": 355, - "y": 270, - "h": 210, - "w": 210 - } - ] - }, - "medium": { - "faces": [ - { - "x": 1061, - "y": 561, - "h": 47, - "w": 47 - }, - { - "x": 355, - "y": 270, - "h": 210, - "w": 210 - } - ] - }, - "small": { - "faces": [ - { - "x": 616, - "y": 326, - "h": 27, - "w": 27 - }, - { - "x": 206, - "y": 156, - "h": 122, - "w": 122 - } - ] - }, - "orig": { - "faces": [ - { - "x": 1061, - "y": 561, - "h": 47, - "w": 47 - }, - { - "x": 355, - "y": 270, - "h": 210, - "w": 210 - } - ] - } - }, - "sizes": { - "large": { - "h": 775, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 775, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 450, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 775, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 120, - "w": 1170, - "h": 655 - }, - { - "x": 0, - "y": 0, - "w": 775, - "h": 775 - }, - { - "x": 0, - "y": 0, - "w": 680, - "h": 775 - }, - { - "x": 127, - "y": 0, - "w": 388, - "h": 775 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 775 - } - ] - } - }, - { - "display_url": "pic.twitter.com/ASwQ9oDHcF", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1716203656943673745/photo/1", - "ext_alt_text": "“Vladimir Rudolfovich is not a journalist”", - "id_str": "1716203652938108928", - "indices": [ - 85, - 108 - ], - "media_key": "3_1716203652938108928", - "media_url_https": "https://pbs.twimg.com/media/F9EuISeakAAyYH9.jpg", - "type": "photo", - "url": "https://t.co/ASwQ9oDHcF", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 396, - "y": 211, - "h": 231, - "w": 231 - } - ] - }, - "medium": { - "faces": [ - { - "x": 396, - "y": 211, - "h": 231, - "w": 231 - } - ] - }, - "small": { - "faces": [ - { - "x": 230, - "y": 122, - "h": 134, - "w": 134 - } - ] - }, - "orig": { - "faces": [ - { - "x": 396, - "y": 211, - "h": 231, - "w": 231 - } - ] - } - }, - "sizes": { - "large": { - "h": 762, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 762, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 443, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 762, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 107, - "w": 1170, - "h": 655 - }, - { - "x": 57, - "y": 0, - "w": 762, - "h": 762 - }, - { - "x": 104, - "y": 0, - "w": 668, - "h": 762 - }, - { - "x": 248, - "y": 0, - "w": 381, - "h": 762 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 762 - } - ] - } - }, - { - "display_url": "pic.twitter.com/ASwQ9oDHcF", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1716203656943673745/photo/1", - "ext_alt_text": "“This is something bigger than journalism!”", - "id_str": "1716203652929785856", - "indices": [ - 85, - 108 - ], - "media_key": "3_1716203652929785856", - "media_url_https": "https://pbs.twimg.com/media/F9EuIScbkAAUH5D.jpg", - "type": "photo", - "url": "https://t.co/ASwQ9oDHcF", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 767, - "y": 162, - "h": 114, - "w": 114 - }, - { - "x": 236, - "y": 249, - "h": 174, - "w": 174 - } - ] - }, - "medium": { - "faces": [ - { - "x": 767, - "y": 162, - "h": 114, - "w": 114 - }, - { - "x": 236, - "y": 249, - "h": 174, - "w": 174 - } - ] - }, - "small": { - "faces": [ - { - "x": 445, - "y": 94, - "h": 66, - "w": 66 - }, - { - "x": 137, - "y": 144, - "h": 101, - "w": 101 - } - ] - }, - "orig": { - "faces": [ - { - "x": 767, - "y": 162, - "h": 114, - "w": 114 - }, - { - "x": 236, - "y": 249, - "h": 174, - "w": 174 - } - ] - } - }, - "sizes": { - "large": { - "h": 752, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 752, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 437, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 752, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 97, - "w": 1170, - "h": 655 - }, - { - "x": 178, - "y": 0, - "w": 752, - "h": 752 - }, - { - "x": 224, - "y": 0, - "w": 660, - "h": 752 - }, - { - "x": 366, - "y": 0, - "w": 376, - "h": 752 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 752 - } - ] - } - }, - { - "display_url": "pic.twitter.com/ASwQ9oDHcF", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1716203656943673745/photo/1", - "ext_alt_text": "“Solovyov is our modern-day Soviet Information Bureau”", - "id_str": "1716203652942282752", - "indices": [ - 85, - 108 - ], - "media_key": "3_1716203652942282752", - "media_url_https": "https://pbs.twimg.com/media/F9EuISfaQAA2b6D.jpg", - "type": "photo", - "url": "https://t.co/ASwQ9oDHcF", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 514, - "y": 191, - "h": 169, - "w": 169 - } - ] - }, - "medium": { - "faces": [ - { - "x": 514, - "y": 191, - "h": 169, - "w": 169 - } - ] - }, - "small": { - "faces": [ - { - "x": 298, - "y": 111, - "h": 98, - "w": 98 - } - ] - }, - "orig": { - "faces": [ - { - "x": 514, - "y": 191, - "h": 169, - "w": 169 - } - ] - } - }, - "sizes": { - "large": { - "h": 765, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 765, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 445, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 765, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 110, - "w": 1170, - "h": 655 - }, - { - "x": 405, - "y": 0, - "w": 765, - "h": 765 - }, - { - "x": 499, - "y": 0, - "w": 671, - "h": 765 - }, - { - "x": 774, - "y": 0, - "w": 383, - "h": 765 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 765 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/ASwQ9oDHcF", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1716203656943673745/photo/1", - "ext_alt_text": "“but, to be fair, what is peculiar is that”", - "id_str": "1716203652942381056", - "indices": [ - 85, - 108 - ], - "media_key": "3_1716203652942381056", - "media_url_https": "https://pbs.twimg.com/media/F9EuISfbwAAcFAV.jpg", - "type": "photo", - "url": "https://t.co/ASwQ9oDHcF", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 1061, - "y": 561, - "h": 47, - "w": 47 - }, - { - "x": 355, - "y": 270, - "h": 210, - "w": 210 - } - ] - }, - "medium": { - "faces": [ - { - "x": 1061, - "y": 561, - "h": 47, - "w": 47 - }, - { - "x": 355, - "y": 270, - "h": 210, - "w": 210 - } - ] - }, - "small": { - "faces": [ - { - "x": 616, - "y": 326, - "h": 27, - "w": 27 - }, - { - "x": 206, - "y": 156, - "h": 122, - "w": 122 - } - ] - }, - "orig": { - "faces": [ - { - "x": 1061, - "y": 561, - "h": 47, - "w": 47 - }, - { - "x": 355, - "y": 270, - "h": 210, - "w": 210 - } - ] - } - }, - "sizes": { - "large": { - "h": 775, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 775, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 450, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 775, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 120, - "w": 1170, - "h": 655 - }, - { - "x": 0, - "y": 0, - "w": 775, - "h": 775 - }, - { - "x": 0, - "y": 0, - "w": 680, - "h": 775 - }, - { - "x": 127, - "y": 0, - "w": 388, - "h": 775 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 775 - } - ] - } - }, - { - "display_url": "pic.twitter.com/ASwQ9oDHcF", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1716203656943673745/photo/1", - "ext_alt_text": "“Vladimir Rudolfovich is not a journalist”", - "id_str": "1716203652938108928", - "indices": [ - 85, - 108 - ], - "media_key": "3_1716203652938108928", - "media_url_https": "https://pbs.twimg.com/media/F9EuISeakAAyYH9.jpg", - "type": "photo", - "url": "https://t.co/ASwQ9oDHcF", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 396, - "y": 211, - "h": 231, - "w": 231 - } - ] - }, - "medium": { - "faces": [ - { - "x": 396, - "y": 211, - "h": 231, - "w": 231 - } - ] - }, - "small": { - "faces": [ - { - "x": 230, - "y": 122, - "h": 134, - "w": 134 - } - ] - }, - "orig": { - "faces": [ - { - "x": 396, - "y": 211, - "h": 231, - "w": 231 - } - ] - } - }, - "sizes": { - "large": { - "h": 762, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 762, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 443, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 762, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 107, - "w": 1170, - "h": 655 - }, - { - "x": 57, - "y": 0, - "w": 762, - "h": 762 - }, - { - "x": 104, - "y": 0, - "w": 668, - "h": 762 - }, - { - "x": 248, - "y": 0, - "w": 381, - "h": 762 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 762 - } - ] - } - }, - { - "display_url": "pic.twitter.com/ASwQ9oDHcF", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1716203656943673745/photo/1", - "ext_alt_text": "“This is something bigger than journalism!”", - "id_str": "1716203652929785856", - "indices": [ - 85, - 108 - ], - "media_key": "3_1716203652929785856", - "media_url_https": "https://pbs.twimg.com/media/F9EuIScbkAAUH5D.jpg", - "type": "photo", - "url": "https://t.co/ASwQ9oDHcF", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 767, - "y": 162, - "h": 114, - "w": 114 - }, - { - "x": 236, - "y": 249, - "h": 174, - "w": 174 - } - ] - }, - "medium": { - "faces": [ - { - "x": 767, - "y": 162, - "h": 114, - "w": 114 - }, - { - "x": 236, - "y": 249, - "h": 174, - "w": 174 - } - ] - }, - "small": { - "faces": [ - { - "x": 445, - "y": 94, - "h": 66, - "w": 66 - }, - { - "x": 137, - "y": 144, - "h": 101, - "w": 101 - } - ] - }, - "orig": { - "faces": [ - { - "x": 767, - "y": 162, - "h": 114, - "w": 114 - }, - { - "x": 236, - "y": 249, - "h": 174, - "w": 174 - } - ] - } - }, - "sizes": { - "large": { - "h": 752, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 752, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 437, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 752, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 97, - "w": 1170, - "h": 655 - }, - { - "x": 178, - "y": 0, - "w": 752, - "h": 752 - }, - { - "x": 224, - "y": 0, - "w": 660, - "h": 752 - }, - { - "x": 366, - "y": 0, - "w": 376, - "h": 752 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 752 - } - ] - } - }, - { - "display_url": "pic.twitter.com/ASwQ9oDHcF", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1716203656943673745/photo/1", - "ext_alt_text": "“Solovyov is our modern-day Soviet Information Bureau”", - "id_str": "1716203652942282752", - "indices": [ - 85, - 108 - ], - "media_key": "3_1716203652942282752", - "media_url_https": "https://pbs.twimg.com/media/F9EuISfaQAA2b6D.jpg", - "type": "photo", - "url": "https://t.co/ASwQ9oDHcF", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 514, - "y": 191, - "h": 169, - "w": 169 - } - ] - }, - "medium": { - "faces": [ - { - "x": 514, - "y": 191, - "h": 169, - "w": 169 - } - ] - }, - "small": { - "faces": [ - { - "x": 298, - "y": 111, - "h": 98, - "w": 98 - } - ] - }, - "orig": { - "faces": [ - { - "x": 514, - "y": 191, - "h": 169, - "w": 169 - } - ] - } - }, - "sizes": { - "large": { - "h": 765, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 765, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 445, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 765, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 110, - "w": 1170, - "h": 655 - }, - { - "x": 405, - "y": 0, - "w": 765, - "h": 765 - }, - { - "x": 499, - "y": 0, - "w": 671, - "h": 765 - }, - { - "x": 774, - "y": 0, - "w": 383, - "h": 765 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 765 - } - ] - } - } - ] - }, - "favorite_count": 78, - "favorited": false, - "full_text": "@JuliaDavisNews Right. So what you’re saying is, Solovyov is a Kremlin propagandist. https://t.co/ASwQ9oDHcF", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1716196280295182766", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 1, - "reply_count": 0, - "retweet_count": 14, - "retweeted": false, - "user_id_str": "1419248815", - "id_str": "1716203656943673745" - } - } - }, - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:31:30 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 16, - 81 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/YJyWQrZdTr", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739775975439896831/photo/1", - "ext_alt_text": "“It’s very awkward, because - who am I?”", - "id_str": "1739775970683518976", - "indices": [ - 82, - 105 - ], - "media_key": "3_1739775970683518976", - "media_url_https": "https://pbs.twimg.com/media/GCTtBxFaAAAc8wh.jpg", - "type": "photo", - "url": "https://t.co/YJyWQrZdTr", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 489, - "y": 234, - "h": 139, - "w": 139 - } - ] - }, - "medium": { - "faces": [ - { - "x": 489, - "y": 234, - "h": 139, - "w": 139 - } - ] - }, - "small": { - "faces": [ - { - "x": 284, - "y": 136, - "h": 80, - "w": 80 - } - ] - }, - "orig": { - "faces": [ - { - "x": 489, - "y": 234, - "h": 139, - "w": 139 - } - ] - } - }, - "sizes": { - "large": { - "h": 746, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 746, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 434, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 746, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 1170, - "h": 655 - }, - { - "x": 65, - "y": 0, - "w": 746, - "h": 746 - }, - { - "x": 111, - "y": 0, - "w": 654, - "h": 746 - }, - { - "x": 252, - "y": 0, - "w": 373, - "h": 746 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 746 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "twitter.com/vladaknowlton/…", - "expanded_url": "https://twitter.com/vladaknowlton/status/1716203656943673745?s=46&t=O47zmhoVVU2XZxjT5_t0FA", - "url": "https://t.co/ThvbkUyIvb", - "indices": [ - 58, - 81 - ] - } - ], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/YJyWQrZdTr", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739775975439896831/photo/1", - "ext_alt_text": "“It’s very awkward, because - who am I?”", - "id_str": "1739775970683518976", - "indices": [ - 82, - 105 - ], - "media_key": "3_1739775970683518976", - "media_url_https": "https://pbs.twimg.com/media/GCTtBxFaAAAc8wh.jpg", - "type": "photo", - "url": "https://t.co/YJyWQrZdTr", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 489, - "y": 234, - "h": 139, - "w": 139 - } - ] - }, - "medium": { - "faces": [ - { - "x": 489, - "y": 234, - "h": 139, - "w": 139 - } - ] - }, - "small": { - "faces": [ - { - "x": 284, - "y": 136, - "h": 80, - "w": 80 - } - ] - }, - "orig": { - "faces": [ - { - "x": 489, - "y": 234, - "h": 139, - "w": 139 - } - ] - } - }, - "sizes": { - "large": { - "h": 746, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 746, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 434, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 746, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 1170, - "h": 655 - }, - { - "x": 65, - "y": 0, - "w": 746, - "h": 746 - }, - { - "x": 111, - "y": 0, - "w": 654, - "h": 746 - }, - { - "x": 252, - "y": 0, - "w": 373, - "h": 746 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 746 - } - ] - } - } - ] - }, - "favorite_count": 49, - "favorited": false, - "full_text": "@JuliaDavisNews A “modern-day Soviet Information Bureau”?\nhttps://t.co/ThvbkUyIvb https://t.co/YJyWQrZdTr", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1739753183243633015", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": true, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "quoted_status_id_str": "1716203656943673745", - "quoted_status_permalink": { - "url": "https://t.co/ThvbkUyIvb", - "expanded": "https://twitter.com/vladaknowlton/status/1716203656943673745?s=46&t=O47zmhoVVU2XZxjT5_t0FA", - "display": "twitter.com/vladaknowlton/…" - }, - "reply_count": 1, - "retweet_count": 11, - "retweeted": false, - "user_id_str": "1419248815", - "id_str": "1739775975439896831" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739774843439239444", - "sortIndex": "1739819664587882484", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739774843439239444", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo4ODQ1NzgxODczOTI1NDQ3Njk=", - "rest_id": "884578187392544769", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Tue Jul 11 01:00:49 +0000 2017", - "default_profile": true, - "default_profile_image": false, - "description": "Former CIA Clandestine Service. Now @SpycraftEnt, #NAFO fella. Sometimes writes. Good father, decent husband, excellent dog owner.", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 281557, - "followers_count": 247265, - "friends_count": 2551, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 2418, - "location": "Washington, DC", - "media_count": 2202, - "name": "John Sipher", - "normal_followers_count": 247265, - "pinned_tweet_ids_str": [ - "1487082405970288646" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/884578187392544769/1695478628", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1589241979698925568/E7yUu08y_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "john_sipher", - "statuses_count": 82474, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739774843439239444" - ], - "editable_until_msecs": "1703633220000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "10342", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739437578103971883", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMjg4ODU1MDUzMzY5OTI1NjMy", - "rest_id": "1288855053369925632", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Thu Jul 30 15:12:57 +0000 2020", - "default_profile": true, - "default_profile_image": false, - "description": "Cranky old man.", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 57266, - "followers_count": 2315, - "friends_count": 5001, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 11, - "location": "", - "media_count": 1459, - "name": "Yarg Barkley", - "normal_followers_count": 2315, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1556440628623355904/IxEqUxMA_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "BarkleyYarg", - "statuses_count": 30935, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/fcy7OfBXOn", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1737334936514752512/-xZpCd4B?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 150, - "width": 267, - "url": "https://pbs.twimg.com/card_img/1737334936514752512/-xZpCd4B?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "Former President Trump on Monday vowed to replace the Affordable Care Act (ACA) with his own “much better” alternative program, reviving his push to slash the now-popular healthcare option used by...", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.yahoo.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 320, - "width": 570, - "url": "https://pbs.twimg.com/card_img/1737334936514752512/-xZpCd4B?format=jpg&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737334936514752512/-xZpCd4B?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 505, - "width": 900, - "url": "https://pbs.twimg.com/card_img/1737334936514752512/-xZpCd4B?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "7309052", - "path": [] - } - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737334936514752512/-xZpCd4B?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1737334936514752512/-xZpCd4B?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 81, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1737334936514752512/-xZpCd4B?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 505, - "width": 900, - "url": "https://pbs.twimg.com/card_img/1737334936514752512/-xZpCd4B?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 505, - "width": 900, - "url": "https://pbs.twimg.com/card_img/1737334936514752512/-xZpCd4B?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "yahoo.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737334936514752512/-xZpCd4B?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 17, - "green": 11, - "red": 11 - }, - "percentage": 43.79 - }, - { - "rgb": { - "blue": 99, - "green": 39, - "red": 43 - }, - "percentage": 29.2 - }, - { - "rgb": { - "blue": 199, - "green": 176, - "red": 174 - }, - "percentage": 7.93 - }, - { - "rgb": { - "blue": 52, - "green": 65, - "red": 101 - }, - "percentage": 4.05 - }, - { - "rgb": { - "blue": 63, - "green": 28, - "red": 27 - }, - "percentage": 2.37 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Trump vows to replace ObamaCare with his own alternative", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 17, - "green": 11, - "red": 11 - }, - "percentage": 43.79 - }, - { - "rgb": { - "blue": 99, - "green": 39, - "red": 43 - }, - "percentage": 29.2 - }, - { - "rgb": { - "blue": 199, - "green": 176, - "red": 174 - }, - "percentage": 7.93 - }, - { - "rgb": { - "blue": 52, - "green": 65, - "red": 101 - }, - "percentage": 4.05 - }, - { - "rgb": { - "blue": 63, - "green": 28, - "red": 27 - }, - "percentage": 2.37 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 505, - "width": 900, - "url": "https://pbs.twimg.com/card_img/1737334936514752512/-xZpCd4B?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737334936514752512/-xZpCd4B?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 17, - "green": 11, - "red": 11 - }, - "percentage": 43.79 - }, - { - "rgb": { - "blue": 99, - "green": 39, - "red": 43 - }, - "percentage": 29.2 - }, - { - "rgb": { - "blue": 199, - "green": 176, - "red": 174 - }, - "percentage": 7.93 - }, - { - "rgb": { - "blue": 52, - "green": 65, - "red": 101 - }, - "percentage": 4.05 - }, - { - "rgb": { - "blue": 63, - "green": 28, - "red": 27 - }, - "percentage": 2.37 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 505, - "width": 900, - "url": "https://pbs.twimg.com/card_img/1737334936514752512/-xZpCd4B?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/fcy7OfBXOn", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 505, - "width": 900, - "url": "https://pbs.twimg.com/card_img/1737334936514752512/-xZpCd4B?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/fcy7OfBXOn", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjo3MzA5MDUy", - "rest_id": "7309052", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sat Jul 07 06:52:31 +0000 2007", - "default_profile": false, - "default_profile_image": false, - "description": "Top stories. Trusted sources. Your window to the news that matters most to you. Download our app here: https://t.co/aOTqWBhwuB", - "entities": { - "description": { - "urls": [ - { - "display_url": "yhoo.it/2mYfv0V", - "expanded_url": "http://yhoo.it/2mYfv0V", - "url": "https://t.co/aOTqWBhwuB", - "indices": [ - 103, - 126 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "news.yahoo.com", - "expanded_url": "https://news.yahoo.com", - "url": "https://t.co/Wi4rjphABy", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 338, - "followers_count": 1072470, - "friends_count": 2305, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 13246, - "location": "New York City", - "media_count": 124366, - "name": "Yahoo News", - "normal_followers_count": 1072470, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/7309052/1642447044", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1176155649547350017/PgDayX_-_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "YahooNews", - "statuses_count": 279318, - "translator_type": "none", - "url": "https://t.co/Wi4rjphABy", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739437578103971883" - ], - "editable_until_msecs": "1703552810000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "28818", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 3, - "bookmarked": false, - "created_at": "Tue Dec 26 00:06:50 +0000 2023", - "conversation_id_str": "1739437578103971883", - "display_text_range": [ - 0, - 218 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "yahoo.com/news/trump-vow…", - "expanded_url": "https://www.yahoo.com/news/trump-vows-replace-obamacare-own-220922715.html", - "url": "https://t.co/fcy7OfBXOn", - "indices": [ - 195, - 218 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 664, - "favorited": false, - "full_text": "What? Running the same con again?\n\n\" I will come up with a much better, and less expensive, alternative! People will be happy, not sad!\"\n\nTrump vows to replace ObamaCare with his own alternative\nhttps://t.co/fcy7OfBXOn", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 44, - "reply_count": 523, - "retweet_count": 171, - "retweeted": false, - "user_id_str": "1288855053369925632", - "id_str": "1739437578103971883" - } - } - }, - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:27:00 +0000 2023", - "conversation_id_str": "1739774843439239444", - "display_text_range": [ - 0, - 0 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/zFM0seYNym", - "expanded_url": "https://twitter.com/john_sipher/status/1739774843439239444/photo/1", - "ext_alt_text": "First Try GIF", - "id_str": "1739774837487525888", - "indices": [ - 0, - 23 - ], - "media_key": "16_1739774837487525888", - "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/GCTr_zmbYAA2ckP.jpg", - "type": "animated_gif", - "url": "https://t.co/zFM0seYNym", - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 144, - "w": 400, - "resize": "fit" - }, - "medium": { - "h": 144, - "w": 400, - "resize": "fit" - }, - "small": { - "h": 144, - "w": 400, - "resize": "fit" - }, - "thumb": { - "h": 144, - "w": 144, - "resize": "crop" - } - }, - "original_info": { - "height": 144, - "width": 400, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 25, - 9 - ], - "variants": [ - { - "bitrate": 0, - "content_type": "video/mp4", - "url": "https://video.twimg.com/tweet_video/GCTr_zmbYAA2ckP.mp4" - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/zFM0seYNym", - "expanded_url": "https://twitter.com/john_sipher/status/1739774843439239444/photo/1", - "ext_alt_text": "First Try GIF", - "id_str": "1739774837487525888", - "indices": [ - 0, - 23 - ], - "media_key": "16_1739774837487525888", - "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/GCTr_zmbYAA2ckP.jpg", - "type": "animated_gif", - "url": "https://t.co/zFM0seYNym", - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 144, - "w": 400, - "resize": "fit" - }, - "medium": { - "h": 144, - "w": 400, - "resize": "fit" - }, - "small": { - "h": 144, - "w": 400, - "resize": "fit" - }, - "thumb": { - "h": 144, - "w": 144, - "resize": "crop" - } - }, - "original_info": { - "height": 144, - "width": 400, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 25, - 9 - ], - "variants": [ - { - "bitrate": 0, - "content_type": "video/mp4", - "url": "https://video.twimg.com/tweet_video/GCTr_zmbYAA2ckP.mp4" - } - ] - } - } - ] - }, - "favorite_count": 29, - "favorited": false, - "full_text": "https://t.co/zFM0seYNym", - "is_quote_status": true, - "lang": "zxx", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "quoted_status_id_str": "1739437578103971883", - "quoted_status_permalink": { - "url": "https://t.co/bQ2auHiXwM", - "expanded": "https://twitter.com/barkleyyarg/status/1739437578103971883", - "display": "twitter.com/barkleyyarg/st…" - }, - "reply_count": 2, - "retweet_count": 5, - "retweeted": false, - "user_id_str": "884578187392544769", - "id_str": "1739774843439239444" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739774593861292517", - "sortIndex": "1739819664587882483", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739774593861292517", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo4ODQ1NzgxODczOTI1NDQ3Njk=", - "rest_id": "884578187392544769", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Tue Jul 11 01:00:49 +0000 2017", - "default_profile": true, - "default_profile_image": false, - "description": "Former CIA Clandestine Service. Now @SpycraftEnt, #NAFO fella. Sometimes writes. Good father, decent husband, excellent dog owner.", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 281557, - "followers_count": 247265, - "friends_count": 2551, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 2418, - "location": "Washington, DC", - "media_count": 2202, - "name": "John Sipher", - "normal_followers_count": 247265, - "pinned_tweet_ids_str": [ - "1487082405970288646" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/884578187392544769/1695478628", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1589241979698925568/E7yUu08y_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "john_sipher", - "statuses_count": 82474, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739774593861292517" - ], - "editable_until_msecs": "1703633161282", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:26:01 +0000 2023", - "conversation_id_str": "1739774593861292517", - "display_text_range": [ - 0, - 71 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "282619516", - "name": "Doc ", - "screen_name": "DocAtCDI", - "indices": [ - 3, - 12 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @DocAtCDI: apart from It's ok\nwhat other death threats\ndo women use?", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 35, - "retweeted": false, - "user_id_str": "884578187392544769", - "id_str": "1739774593861292517", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739731055920255014", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyODI2MTk1MTY=", - "rest_id": "282619516", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Fri Apr 15 15:22:25 +0000 2011", - "default_profile": false, - "default_profile_image": false, - "description": "Tweeting smiles\n\nShare them!\n\nPatreon: free longer content\n\nPG in the daylight discretion after dark\n\nhttps://t.co/Q2v9b1OCHq\n\nsocials I'm on are all @DocAtCDI", - "entities": { - "description": { - "urls": [ - { - "display_url": "docatcdi.com", - "expanded_url": "http://docatcdi.com", - "url": "https://t.co/Q2v9b1OCHq", - "indices": [ - 102, - 125 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "patreon.com/DocAtCDI", - "expanded_url": "https://www.patreon.com/DocAtCDI", - "url": "https://t.co/gpBPqLMJl8", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 493728, - "followers_count": 55767, - "friends_count": 55988, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 230, - "location": "Greater Flint, Michigan, USA", - "media_count": 30766, - "name": "Doc ", - "normal_followers_count": 55767, - "pinned_tweet_ids_str": [ - "1739511502296531042" - ], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1558320471799742465/dwW0OAv9_normal.png", - "profile_interstitial_type": "", - "screen_name": "DocAtCDI", - "statuses_count": 165709, - "translator_type": "none", - "url": "https://t.co/gpBPqLMJl8", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1591957368916611074", - "professional_type": "Creator", - "category": [ - { - "id": 15, - "name": "Entertainment & Recreation", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739731055920255014" - ], - "editable_until_msecs": "1703622781000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "24897", - "state": "EnabledWithCount" - }, - "source": "PunsByDoc", - "legacy": { - "bookmark_count": 14, - "bookmarked": false, - "created_at": "Tue Dec 26 19:33:01 +0000 2023", - "conversation_id_str": "1739731055920255014", - "display_text_range": [ - 0, - 57 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 395, - "favorited": false, - "full_text": "apart from It's ok\nwhat other death threats\ndo women use?", - "is_quote_status": false, - "lang": "en", - "quote_count": 11, - "reply_count": 215, - "retweet_count": 35, - "retweeted": false, - "user_id_str": "282619516", - "id_str": "1739731055920255014" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739774124396843387", - "sortIndex": "1739819664587882482", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739774124396843387", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739774124396843387" - ], - "editable_until_msecs": "1703633049353", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:24:09 +0000 2023", - "conversation_id_str": "1739774124396843387", - "display_text_range": [ - 0, - 81 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/q2qeKcRYvv", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739773915822739689/photo/1", - "ext_alt_text": "“We will be on YouTube, we will be monetized!”", - "id_str": "1739773907144785920", - "indices": [ - 58, - 81 - ], - "media_key": "3_1739773907144785920", - "media_url_https": "https://pbs.twimg.com/media/GCTrJpzbwAA1hVv.jpg", - "source_status_id_str": "1739773915822739689", - "source_user_id_str": "1419248815", - "type": "photo", - "url": "https://t.co/q2qeKcRYvv", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 452, - "y": 177, - "h": 153, - "w": 153 - } - ] - }, - "medium": { - "faces": [ - { - "x": 452, - "y": 177, - "h": 153, - "w": 153 - } - ] - }, - "small": { - "faces": [ - { - "x": 262, - "y": 102, - "h": 88, - "w": 88 - } - ] - }, - "orig": { - "faces": [ - { - "x": 452, - "y": 177, - "h": 153, - "w": 153 - } - ] - } - }, - "sizes": { - "large": { - "h": 747, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 747, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 434, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 747, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 92, - "w": 1170, - "h": 655 - }, - { - "x": 0, - "y": 0, - "w": 747, - "h": 747 - }, - { - "x": 0, - "y": 0, - "w": 655, - "h": 747 - }, - { - "x": 134, - "y": 0, - "w": 374, - "h": 747 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 747 - } - ] - } - }, - { - "display_url": "pic.twitter.com/q2qeKcRYvv", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739773915822739689/photo/1", - "ext_alt_text": "“We will corrupt and kill your youth!”", - "id_str": "1739773907102785536", - "indices": [ - 58, - 81 - ], - "media_key": "3_1739773907102785536", - "media_url_https": "https://pbs.twimg.com/media/GCTrJppa4AAs7Wx.jpg", - "source_status_id_str": "1739773915822739689", - "source_user_id_str": "1419248815", - "type": "photo", - "url": "https://t.co/q2qeKcRYvv", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 475, - "y": 180, - "h": 143, - "w": 143 - } - ] - }, - "medium": { - "faces": [ - { - "x": 475, - "y": 180, - "h": 143, - "w": 143 - } - ] - }, - "small": { - "faces": [ - { - "x": 276, - "y": 104, - "h": 83, - "w": 83 - } - ] - }, - "orig": { - "faces": [ - { - "x": 475, - "y": 180, - "h": 143, - "w": 143 - } - ] - } - }, - "sizes": { - "large": { - "h": 759, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 759, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 441, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 759, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 104, - "w": 1170, - "h": 655 - }, - { - "x": 117, - "y": 0, - "w": 759, - "h": 759 - }, - { - "x": 163, - "y": 0, - "w": 666, - "h": 759 - }, - { - "x": 306, - "y": 0, - "w": 380, - "h": 759 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 759 - } - ] - } - }, - { - "display_url": "pic.twitter.com/q2qeKcRYvv", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739773915822739689/photo/1", - "ext_alt_text": "“And there’s nothing that can be done to them!”", - "id_str": "1739773907132104704", - "indices": [ - 58, - 81 - ], - "media_key": "3_1739773907132104704", - "media_url_https": "https://pbs.twimg.com/media/GCTrJpwaQAAEm8K.jpg", - "source_status_id_str": "1739773915822739689", - "source_user_id_str": "1419248815", - "type": "photo", - "url": "https://t.co/q2qeKcRYvv", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 455, - "y": 181, - "h": 149, - "w": 149 - } - ] - }, - "medium": { - "faces": [ - { - "x": 455, - "y": 181, - "h": 149, - "w": 149 - } - ] - }, - "small": { - "faces": [ - { - "x": 264, - "y": 105, - "h": 86, - "w": 86 - } - ] - }, - "orig": { - "faces": [ - { - "x": 455, - "y": 181, - "h": 149, - "w": 149 - } - ] - } - }, - "sizes": { - "large": { - "h": 735, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 735, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 427, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 735, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 80, - "w": 1170, - "h": 655 - }, - { - "x": 13, - "y": 0, - "w": 735, - "h": 735 - }, - { - "x": 58, - "y": 0, - "w": 645, - "h": 735 - }, - { - "x": 196, - "y": 0, - "w": 368, - "h": 735 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 735 - } - ] - } - }, - { - "display_url": "pic.twitter.com/q2qeKcRYvv", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739773915822739689/photo/1", - "id_str": "1739773907132194816", - "indices": [ - 58, - 81 - ], - "media_key": "3_1739773907132194816", - "media_url_https": "https://pbs.twimg.com/media/GCTrJpwboAAQhuo.jpg", - "source_status_id_str": "1739773915822739689", - "source_user_id_str": "1419248815", - "type": "photo", - "url": "https://t.co/q2qeKcRYvv", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 357, - "y": 34, - "h": 201, - "w": 201 - } - ] - }, - "medium": { - "faces": [ - { - "x": 357, - "y": 34, - "h": 201, - "w": 201 - } - ] - }, - "small": { - "faces": [ - { - "x": 357, - "y": 34, - "h": 201, - "w": 201 - } - ] - }, - "orig": { - "faces": [ - { - "x": 357, - "y": 34, - "h": 201, - "w": 201 - } - ] - } - }, - "sizes": { - "large": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "medium": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 383, - "width": 680, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 680, - "h": 381 - }, - { - "x": 268, - "y": 0, - "w": 383, - "h": 383 - }, - { - "x": 291, - "y": 0, - "w": 336, - "h": 383 - }, - { - "x": 363, - "y": 0, - "w": 192, - "h": 383 - }, - { - "x": 0, - "y": 0, - "w": 680, - "h": 383 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1419248815", - "name": "Vlada Knowlton 🇺🇦", - "screen_name": "VladaKnowlton", - "indices": [ - 3, - 17 - ] - }, - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 19, - 34 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/q2qeKcRYvv", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739773915822739689/photo/1", - "ext_alt_text": "“We will be on YouTube, we will be monetized!”", - "id_str": "1739773907144785920", - "indices": [ - 58, - 81 - ], - "media_key": "3_1739773907144785920", - "media_url_https": "https://pbs.twimg.com/media/GCTrJpzbwAA1hVv.jpg", - "source_status_id_str": "1739773915822739689", - "source_user_id_str": "1419248815", - "type": "photo", - "url": "https://t.co/q2qeKcRYvv", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 452, - "y": 177, - "h": 153, - "w": 153 - } - ] - }, - "medium": { - "faces": [ - { - "x": 452, - "y": 177, - "h": 153, - "w": 153 - } - ] - }, - "small": { - "faces": [ - { - "x": 262, - "y": 102, - "h": 88, - "w": 88 - } - ] - }, - "orig": { - "faces": [ - { - "x": 452, - "y": 177, - "h": 153, - "w": 153 - } - ] - } - }, - "sizes": { - "large": { - "h": 747, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 747, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 434, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 747, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 92, - "w": 1170, - "h": 655 - }, - { - "x": 0, - "y": 0, - "w": 747, - "h": 747 - }, - { - "x": 0, - "y": 0, - "w": 655, - "h": 747 - }, - { - "x": 134, - "y": 0, - "w": 374, - "h": 747 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 747 - } - ] - } - }, - { - "display_url": "pic.twitter.com/q2qeKcRYvv", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739773915822739689/photo/1", - "ext_alt_text": "“We will corrupt and kill your youth!”", - "id_str": "1739773907102785536", - "indices": [ - 58, - 81 - ], - "media_key": "3_1739773907102785536", - "media_url_https": "https://pbs.twimg.com/media/GCTrJppa4AAs7Wx.jpg", - "source_status_id_str": "1739773915822739689", - "source_user_id_str": "1419248815", - "type": "photo", - "url": "https://t.co/q2qeKcRYvv", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 475, - "y": 180, - "h": 143, - "w": 143 - } - ] - }, - "medium": { - "faces": [ - { - "x": 475, - "y": 180, - "h": 143, - "w": 143 - } - ] - }, - "small": { - "faces": [ - { - "x": 276, - "y": 104, - "h": 83, - "w": 83 - } - ] - }, - "orig": { - "faces": [ - { - "x": 475, - "y": 180, - "h": 143, - "w": 143 - } - ] - } - }, - "sizes": { - "large": { - "h": 759, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 759, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 441, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 759, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 104, - "w": 1170, - "h": 655 - }, - { - "x": 117, - "y": 0, - "w": 759, - "h": 759 - }, - { - "x": 163, - "y": 0, - "w": 666, - "h": 759 - }, - { - "x": 306, - "y": 0, - "w": 380, - "h": 759 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 759 - } - ] - } - }, - { - "display_url": "pic.twitter.com/q2qeKcRYvv", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739773915822739689/photo/1", - "ext_alt_text": "“And there’s nothing that can be done to them!”", - "id_str": "1739773907132104704", - "indices": [ - 58, - 81 - ], - "media_key": "3_1739773907132104704", - "media_url_https": "https://pbs.twimg.com/media/GCTrJpwaQAAEm8K.jpg", - "source_status_id_str": "1739773915822739689", - "source_user_id_str": "1419248815", - "type": "photo", - "url": "https://t.co/q2qeKcRYvv", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 455, - "y": 181, - "h": 149, - "w": 149 - } - ] - }, - "medium": { - "faces": [ - { - "x": 455, - "y": 181, - "h": 149, - "w": 149 - } - ] - }, - "small": { - "faces": [ - { - "x": 264, - "y": 105, - "h": 86, - "w": 86 - } - ] - }, - "orig": { - "faces": [ - { - "x": 455, - "y": 181, - "h": 149, - "w": 149 - } - ] - } - }, - "sizes": { - "large": { - "h": 735, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 735, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 427, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 735, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 80, - "w": 1170, - "h": 655 - }, - { - "x": 13, - "y": 0, - "w": 735, - "h": 735 - }, - { - "x": 58, - "y": 0, - "w": 645, - "h": 735 - }, - { - "x": 196, - "y": 0, - "w": 368, - "h": 735 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 735 - } - ] - } - }, - { - "display_url": "pic.twitter.com/q2qeKcRYvv", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739773915822739689/photo/1", - "id_str": "1739773907132194816", - "indices": [ - 58, - 81 - ], - "media_key": "3_1739773907132194816", - "media_url_https": "https://pbs.twimg.com/media/GCTrJpwboAAQhuo.jpg", - "source_status_id_str": "1739773915822739689", - "source_user_id_str": "1419248815", - "type": "photo", - "url": "https://t.co/q2qeKcRYvv", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 357, - "y": 34, - "h": 201, - "w": 201 - } - ] - }, - "medium": { - "faces": [ - { - "x": 357, - "y": 34, - "h": 201, - "w": 201 - } - ] - }, - "small": { - "faces": [ - { - "x": 357, - "y": 34, - "h": 201, - "w": 201 - } - ] - }, - "orig": { - "faces": [ - { - "x": 357, - "y": 34, - "h": 201, - "w": 201 - } - ] - } - }, - "sizes": { - "large": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "medium": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 383, - "width": 680, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 680, - "h": 381 - }, - { - "x": 268, - "y": 0, - "w": 383, - "h": 383 - }, - { - "x": 291, - "y": 0, - "w": 336, - "h": 383 - }, - { - "x": 363, - "y": 0, - "w": 192, - "h": 383 - }, - { - "x": 0, - "y": 0, - "w": 680, - "h": 383 - } - ] - } - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @VladaKnowlton: @JuliaDavisNews old man yells at cloud https://t.co/q2qeKcRYvv", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 0, - "retweet_count": 17, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739774124396843387", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739773915822739689", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDE5MjQ4ODE1", - "rest_id": "1419248815", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Fri May 10 22:41:32 +0000 2013", - "default_profile": false, - "default_profile_image": false, - "description": "She/her. Filmmaker “The Most Dangerous Year”, “Well Actually”, “Having It All”. PhD in Cog Sci from Brown. I smile as much as men do.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "themostdangerousyear.com", - "expanded_url": "http://themostdangerousyear.com", - "url": "https://t.co/64wAOfKKgb", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 29700, - "followers_count": 3479, - "friends_count": 1936, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 51, - "location": "Seattle", - "media_count": 2660, - "name": "Vlada Knowlton 🇺🇦", - "normal_followers_count": 3479, - "pinned_tweet_ids_str": [ - "1578131619915137027" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1419248815/1604768204", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1663659098645364736/3mCe5p-8_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "VladaKnowlton", - "statuses_count": 24703, - "translator_type": "none", - "url": "https://t.co/64wAOfKKgb", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1473542354288078848", - "professional_type": "Creator", - "category": [ - { - "id": 950, - "name": "Film Director", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739773915822739689" - ], - "editable_until_msecs": "1703632999000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "22311", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:23:19 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 16, - 38 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/q2qeKcRYvv", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739773915822739689/photo/1", - "ext_alt_text": "“We will be on YouTube, we will be monetized!”", - "id_str": "1739773907144785920", - "indices": [ - 39, - 62 - ], - "media_key": "3_1739773907144785920", - "media_url_https": "https://pbs.twimg.com/media/GCTrJpzbwAA1hVv.jpg", - "type": "photo", - "url": "https://t.co/q2qeKcRYvv", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 452, - "y": 177, - "h": 153, - "w": 153 - } - ] - }, - "medium": { - "faces": [ - { - "x": 452, - "y": 177, - "h": 153, - "w": 153 - } - ] - }, - "small": { - "faces": [ - { - "x": 262, - "y": 102, - "h": 88, - "w": 88 - } - ] - }, - "orig": { - "faces": [ - { - "x": 452, - "y": 177, - "h": 153, - "w": 153 - } - ] - } - }, - "sizes": { - "large": { - "h": 747, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 747, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 434, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 747, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 92, - "w": 1170, - "h": 655 - }, - { - "x": 0, - "y": 0, - "w": 747, - "h": 747 - }, - { - "x": 0, - "y": 0, - "w": 655, - "h": 747 - }, - { - "x": 134, - "y": 0, - "w": 374, - "h": 747 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 747 - } - ] - } - }, - { - "display_url": "pic.twitter.com/q2qeKcRYvv", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739773915822739689/photo/1", - "ext_alt_text": "“We will corrupt and kill your youth!”", - "id_str": "1739773907102785536", - "indices": [ - 39, - 62 - ], - "media_key": "3_1739773907102785536", - "media_url_https": "https://pbs.twimg.com/media/GCTrJppa4AAs7Wx.jpg", - "type": "photo", - "url": "https://t.co/q2qeKcRYvv", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 475, - "y": 180, - "h": 143, - "w": 143 - } - ] - }, - "medium": { - "faces": [ - { - "x": 475, - "y": 180, - "h": 143, - "w": 143 - } - ] - }, - "small": { - "faces": [ - { - "x": 276, - "y": 104, - "h": 83, - "w": 83 - } - ] - }, - "orig": { - "faces": [ - { - "x": 475, - "y": 180, - "h": 143, - "w": 143 - } - ] - } - }, - "sizes": { - "large": { - "h": 759, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 759, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 441, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 759, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 104, - "w": 1170, - "h": 655 - }, - { - "x": 117, - "y": 0, - "w": 759, - "h": 759 - }, - { - "x": 163, - "y": 0, - "w": 666, - "h": 759 - }, - { - "x": 306, - "y": 0, - "w": 380, - "h": 759 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 759 - } - ] - } - }, - { - "display_url": "pic.twitter.com/q2qeKcRYvv", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739773915822739689/photo/1", - "ext_alt_text": "“And there’s nothing that can be done to them!”", - "id_str": "1739773907132104704", - "indices": [ - 39, - 62 - ], - "media_key": "3_1739773907132104704", - "media_url_https": "https://pbs.twimg.com/media/GCTrJpwaQAAEm8K.jpg", - "type": "photo", - "url": "https://t.co/q2qeKcRYvv", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 455, - "y": 181, - "h": 149, - "w": 149 - } - ] - }, - "medium": { - "faces": [ - { - "x": 455, - "y": 181, - "h": 149, - "w": 149 - } - ] - }, - "small": { - "faces": [ - { - "x": 264, - "y": 105, - "h": 86, - "w": 86 - } - ] - }, - "orig": { - "faces": [ - { - "x": 455, - "y": 181, - "h": 149, - "w": 149 - } - ] - } - }, - "sizes": { - "large": { - "h": 735, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 735, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 427, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 735, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 80, - "w": 1170, - "h": 655 - }, - { - "x": 13, - "y": 0, - "w": 735, - "h": 735 - }, - { - "x": 58, - "y": 0, - "w": 645, - "h": 735 - }, - { - "x": 196, - "y": 0, - "w": 368, - "h": 735 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 735 - } - ] - } - }, - { - "display_url": "pic.twitter.com/q2qeKcRYvv", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739773915822739689/photo/1", - "id_str": "1739773907132194816", - "indices": [ - 39, - 62 - ], - "media_key": "3_1739773907132194816", - "media_url_https": "https://pbs.twimg.com/media/GCTrJpwboAAQhuo.jpg", - "type": "photo", - "url": "https://t.co/q2qeKcRYvv", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 357, - "y": 34, - "h": 201, - "w": 201 - } - ] - }, - "medium": { - "faces": [ - { - "x": 357, - "y": 34, - "h": 201, - "w": 201 - } - ] - }, - "small": { - "faces": [ - { - "x": 357, - "y": 34, - "h": 201, - "w": 201 - } - ] - }, - "orig": { - "faces": [ - { - "x": 357, - "y": 34, - "h": 201, - "w": 201 - } - ] - } - }, - "sizes": { - "large": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "medium": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 383, - "width": 680, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 680, - "h": 381 - }, - { - "x": 268, - "y": 0, - "w": 383, - "h": 383 - }, - { - "x": 291, - "y": 0, - "w": 336, - "h": 383 - }, - { - "x": 363, - "y": 0, - "w": 192, - "h": 383 - }, - { - "x": 0, - "y": 0, - "w": 680, - "h": 383 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/q2qeKcRYvv", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739773915822739689/photo/1", - "ext_alt_text": "“We will be on YouTube, we will be monetized!”", - "id_str": "1739773907144785920", - "indices": [ - 39, - 62 - ], - "media_key": "3_1739773907144785920", - "media_url_https": "https://pbs.twimg.com/media/GCTrJpzbwAA1hVv.jpg", - "type": "photo", - "url": "https://t.co/q2qeKcRYvv", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 452, - "y": 177, - "h": 153, - "w": 153 - } - ] - }, - "medium": { - "faces": [ - { - "x": 452, - "y": 177, - "h": 153, - "w": 153 - } - ] - }, - "small": { - "faces": [ - { - "x": 262, - "y": 102, - "h": 88, - "w": 88 - } - ] - }, - "orig": { - "faces": [ - { - "x": 452, - "y": 177, - "h": 153, - "w": 153 - } - ] - } - }, - "sizes": { - "large": { - "h": 747, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 747, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 434, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 747, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 92, - "w": 1170, - "h": 655 - }, - { - "x": 0, - "y": 0, - "w": 747, - "h": 747 - }, - { - "x": 0, - "y": 0, - "w": 655, - "h": 747 - }, - { - "x": 134, - "y": 0, - "w": 374, - "h": 747 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 747 - } - ] - } - }, - { - "display_url": "pic.twitter.com/q2qeKcRYvv", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739773915822739689/photo/1", - "ext_alt_text": "“We will corrupt and kill your youth!”", - "id_str": "1739773907102785536", - "indices": [ - 39, - 62 - ], - "media_key": "3_1739773907102785536", - "media_url_https": "https://pbs.twimg.com/media/GCTrJppa4AAs7Wx.jpg", - "type": "photo", - "url": "https://t.co/q2qeKcRYvv", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 475, - "y": 180, - "h": 143, - "w": 143 - } - ] - }, - "medium": { - "faces": [ - { - "x": 475, - "y": 180, - "h": 143, - "w": 143 - } - ] - }, - "small": { - "faces": [ - { - "x": 276, - "y": 104, - "h": 83, - "w": 83 - } - ] - }, - "orig": { - "faces": [ - { - "x": 475, - "y": 180, - "h": 143, - "w": 143 - } - ] - } - }, - "sizes": { - "large": { - "h": 759, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 759, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 441, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 759, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 104, - "w": 1170, - "h": 655 - }, - { - "x": 117, - "y": 0, - "w": 759, - "h": 759 - }, - { - "x": 163, - "y": 0, - "w": 666, - "h": 759 - }, - { - "x": 306, - "y": 0, - "w": 380, - "h": 759 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 759 - } - ] - } - }, - { - "display_url": "pic.twitter.com/q2qeKcRYvv", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739773915822739689/photo/1", - "ext_alt_text": "“And there’s nothing that can be done to them!”", - "id_str": "1739773907132104704", - "indices": [ - 39, - 62 - ], - "media_key": "3_1739773907132104704", - "media_url_https": "https://pbs.twimg.com/media/GCTrJpwaQAAEm8K.jpg", - "type": "photo", - "url": "https://t.co/q2qeKcRYvv", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 455, - "y": 181, - "h": 149, - "w": 149 - } - ] - }, - "medium": { - "faces": [ - { - "x": 455, - "y": 181, - "h": 149, - "w": 149 - } - ] - }, - "small": { - "faces": [ - { - "x": 264, - "y": 105, - "h": 86, - "w": 86 - } - ] - }, - "orig": { - "faces": [ - { - "x": 455, - "y": 181, - "h": 149, - "w": 149 - } - ] - } - }, - "sizes": { - "large": { - "h": 735, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 735, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 427, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 735, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 80, - "w": 1170, - "h": 655 - }, - { - "x": 13, - "y": 0, - "w": 735, - "h": 735 - }, - { - "x": 58, - "y": 0, - "w": 645, - "h": 735 - }, - { - "x": 196, - "y": 0, - "w": 368, - "h": 735 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 735 - } - ] - } - }, - { - "display_url": "pic.twitter.com/q2qeKcRYvv", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739773915822739689/photo/1", - "id_str": "1739773907132194816", - "indices": [ - 39, - 62 - ], - "media_key": "3_1739773907132194816", - "media_url_https": "https://pbs.twimg.com/media/GCTrJpwboAAQhuo.jpg", - "type": "photo", - "url": "https://t.co/q2qeKcRYvv", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 357, - "y": 34, - "h": 201, - "w": 201 - } - ] - }, - "medium": { - "faces": [ - { - "x": 357, - "y": 34, - "h": 201, - "w": 201 - } - ] - }, - "small": { - "faces": [ - { - "x": 357, - "y": 34, - "h": 201, - "w": 201 - } - ] - }, - "orig": { - "faces": [ - { - "x": 357, - "y": 34, - "h": 201, - "w": 201 - } - ] - } - }, - "sizes": { - "large": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "medium": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 383, - "width": 680, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 680, - "h": 381 - }, - { - "x": 268, - "y": 0, - "w": 383, - "h": 383 - }, - { - "x": 291, - "y": 0, - "w": 336, - "h": 383 - }, - { - "x": 363, - "y": 0, - "w": 192, - "h": 383 - }, - { - "x": 0, - "y": 0, - "w": 680, - "h": 383 - } - ] - } - } - ] - }, - "favorite_count": 173, - "favorited": false, - "full_text": "@JuliaDavisNews old man yells at cloud https://t.co/q2qeKcRYvv", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1739753183243633015", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 3, - "reply_count": 4, - "retweet_count": 17, - "retweeted": false, - "user_id_str": "1419248815", - "id_str": "1739773915822739689" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739774080042098769", - "sortIndex": "1739819664587882481", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739774080042098769", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739774080042098769" - ], - "editable_until_msecs": "1703633038778", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:23:58 +0000 2023", - "conversation_id_str": "1739774080042098769", - "display_text_range": [ - 0, - 74 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "35727524", - "name": "catherine daly", - "screen_name": "catherine_daly", - "indices": [ - 3, - 18 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @catherine_daly: Is somebody beginning to feel a teensy bit irrelevant?", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1739753183243633015", - "quoted_status_permalink": { - "url": "https://t.co/n0Xqg7NLFv", - "expanded": "https://twitter.com/JuliaDavisNews/status/1739753183243633015", - "display": "twitter.com/JuliaDavisNews…" - }, - "reply_count": 0, - "retweet_count": 9, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739774080042098769", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739774014917075285", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjozNTcyNzUyNA==", - "rest_id": "35727524", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Apr 27 12:19:22 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "(Cuchi ) Bsc Pharm. Yoga Teacher, writer. I help people with #Fibromyalgia and #ChronicIllness. Insta for useful content.\n🇮🇪🇺🇦", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linktr.ee/Catherine_Daly", - "expanded_url": "https://linktr.ee/Catherine_Daly", - "url": "https://t.co/QPK2t8pi66", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 4646, - "followers_count": 814, - "friends_count": 1009, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 32, - "location": "Dublin City, Ireland", - "media_count": 390, - "name": "catherine daly", - "normal_followers_count": 814, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/35727524/1414502619", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1527000746318782464/oqQTnOcm_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "catherine_daly", - "statuses_count": 5063, - "translator_type": "none", - "url": "https://t.co/QPK2t8pi66", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739774014917075285" - ], - "editable_until_msecs": "1703633023000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "19240", - "state": "EnabledWithCount" - }, - "source": "Twitter for Android", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739753183243633015", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/7IBE4ocPmg", - "legacy": { - "binding_values": [ - { - "key": "player_url", - "value": { - "string_value": "https://www.youtube.com/embed/ZIXrM53y8QQ", - "type": "STRING" - } - }, - { - "key": "player_image_large", - "value": { - "image_value": { - "height": 627, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=jpg&name=1200x627" - }, - "type": "IMAGE" - } - }, - { - "key": "player_image", - "value": { - "image_value": { - "height": 210, - "width": 280, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=jpg&name=280x280" - }, - "type": "IMAGE" - } - }, - { - "key": "app_star_rating", - "value": { - "string_value": "4.6776", - "type": "STRING" - } - }, - { - "key": "player_width", - "value": { - "string_value": "1280", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.youtube.com", - "type": "STRING" - } - }, - { - "key": "app_is_free", - "value": { - "string_value": "true", - "type": "STRING" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "10228272", - "path": [] - } - } - }, - { - "key": "player_image_original", - "value": { - "image_value": { - "height": 360, - "width": 480, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "app_num_ratings", - "value": { - "string_value": "34,009,347", - "type": "STRING" - } - }, - { - "key": "app_price_amount", - "value": { - "string_value": "0.0", - "type": "STRING" - } - }, - { - "key": "player_height", - "value": { - "string_value": "720", - "type": "STRING" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "youtube.com", - "type": "STRING" - } - }, - { - "key": "app_name", - "value": { - "string_value": "YouTube: Watch, Listen, Stream", - "type": "STRING" - } - }, - { - "key": "player_image_small", - "value": { - "image_value": { - "height": 108, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "title", - "value": { - "string_value": "Vladimir Solovyov rages about the sinking of the Novocherkassk", - "type": "STRING" - } - }, - { - "key": "app_price_currency", - "value": { - "string_value": "USD", - "type": "STRING" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/7IBE4ocPmg", - "type": "STRING" - } - }, - { - "key": "player_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 1, - "green": 1, - "red": 1 - }, - "percentage": 61.45 - }, - { - "rgb": { - "blue": 89, - "green": 46, - "red": 32 - }, - "percentage": 7.27 - }, - { - "rgb": { - "blue": 249, - "green": 246, - "red": 130 - }, - "percentage": 6.84 - }, - { - "rgb": { - "blue": 192, - "green": 189, - "red": 191 - }, - "percentage": 2.56 - }, - { - "rgb": { - "blue": 55, - "green": 130, - "red": 237 - }, - "percentage": 1.73 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "player_image_x_large", - "value": { - "image_value": { - "height": 360, - "width": 480, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "player", - "url": "https://t.co/7IBE4ocPmg", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDIyODI3Mg==", - "rest_id": "10228272", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Nov 13 21:43:46 +0000 2007", - "default_profile": false, - "default_profile_image": false, - "description": "like and subscribe.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "youtube.com", - "expanded_url": "http://youtube.com", - "url": "https://t.co/bUisN3Y1A6", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 6182, - "followers_count": 79693058, - "friends_count": 1176, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 79752, - "location": "San Bruno, CA", - "media_count": 15751, - "name": "YouTube", - "normal_followers_count": 79693058, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10228272/1697646656", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "YouTube", - "statuses_count": 57347, - "translator_type": "regular", - "url": "https://t.co/bUisN3Y1A6", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739753183243633015" - ], - "editable_until_msecs": "1703628056000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "126081", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 25, - "bookmarked": false, - "created_at": "Tue Dec 26 21:00:56 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 0, - 272 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "youtu.be/ZIXrM53y8QQ", - "expanded_url": "https://youtu.be/ZIXrM53y8QQ", - "url": "https://t.co/7IBE4ocPmg", - "indices": [ - 249, - 272 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 828, - "favorited": false, - "full_text": "Meanwhile in Russia: Vladimir Solovyov was beside himself over the sinking of the Novocherkassk. He blamed it on... a naked party! (ICYMI, see my earlier video). Solovyov complained about palace intrigues and thanked the Kremlin for protecting him.\nhttps://t.co/7IBE4ocPmg", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 18, - "reply_count": 79, - "retweet_count": 209, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739753183243633015" - } - } - }, - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:23:43 +0000 2023", - "conversation_id_str": "1739774014917075285", - "display_text_range": [ - 0, - 54 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 84, - "favorited": false, - "full_text": "Is somebody beginning to feel a teensy bit irrelevant?", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1739753183243633015", - "quoted_status_permalink": { - "url": "https://t.co/n0Xqg7NLFv", - "expanded": "https://twitter.com/JuliaDavisNews/status/1739753183243633015", - "display": "twitter.com/JuliaDavisNews…" - }, - "reply_count": 2, - "retweet_count": 9, - "retweeted": false, - "user_id_str": "35727524", - "id_str": "1739774014917075285" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739773701267095938", - "sortIndex": "1739819664587882480", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739773701267095938", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739773701267095938" - ], - "editable_until_msecs": "1703632948471", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:22:28 +0000 2023", - "conversation_id_str": "1739773701267095938", - "display_text_range": [ - 0, - 41 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1499244114466193409", - "name": "Steven Horrobin", - "screen_name": "StevenHorrobin", - "indices": [ - 3, - 18 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @StevenHorrobin: The cope... it BURNS!", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1739753183243633015", - "quoted_status_permalink": { - "url": "https://t.co/HGQC5BC1Z7", - "expanded": "https://twitter.com/JuliaDavisNews/status/1739753183243633015", - "display": "twitter.com/JuliaDavisNews…" - }, - "reply_count": 0, - "retweet_count": 8, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739773701267095938", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739773615065768404", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDk5MjQ0MTE0NDY2MTkzNDA5", - "rest_id": "1499244114466193409", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Thu Mar 03 04:44:56 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "PhD in Philosophy/Bioethics/Biogerontology. Recovering academic. MCA Yachtmaster Instructor. OSINT. Antique weapons. Diver. Rover. Nak Muay. Mariner⚓️. #NAFO 🦝", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 33248, - "followers_count": 1446, - "friends_count": 2063, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 8, - "location": "", - "media_count": 874, - "name": "Steven Horrobin", - "normal_followers_count": 1446, - "pinned_tweet_ids_str": [ - "1667311156917153792" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1499244114466193409/1651270308", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1511617045183569925/hh3kQ_xc_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "StevenHorrobin", - "statuses_count": 21896, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739773615065768404" - ], - "editable_until_msecs": "1703632927000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "17773", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739753183243633015", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/7IBE4ocPmg", - "legacy": { - "binding_values": [ - { - "key": "player_url", - "value": { - "string_value": "https://www.youtube.com/embed/ZIXrM53y8QQ", - "type": "STRING" - } - }, - { - "key": "player_image_large", - "value": { - "image_value": { - "height": 627, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=jpg&name=1200x627" - }, - "type": "IMAGE" - } - }, - { - "key": "player_image", - "value": { - "image_value": { - "height": 210, - "width": 280, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=jpg&name=280x280" - }, - "type": "IMAGE" - } - }, - { - "key": "app_star_rating", - "value": { - "string_value": "4.6776", - "type": "STRING" - } - }, - { - "key": "player_width", - "value": { - "string_value": "1280", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.youtube.com", - "type": "STRING" - } - }, - { - "key": "app_is_free", - "value": { - "string_value": "true", - "type": "STRING" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "10228272", - "path": [] - } - } - }, - { - "key": "player_image_original", - "value": { - "image_value": { - "height": 360, - "width": 480, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "app_num_ratings", - "value": { - "string_value": "34,009,347", - "type": "STRING" - } - }, - { - "key": "app_price_amount", - "value": { - "string_value": "0.0", - "type": "STRING" - } - }, - { - "key": "player_height", - "value": { - "string_value": "720", - "type": "STRING" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "youtube.com", - "type": "STRING" - } - }, - { - "key": "app_name", - "value": { - "string_value": "YouTube: Watch, Listen, Stream", - "type": "STRING" - } - }, - { - "key": "player_image_small", - "value": { - "image_value": { - "height": 108, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "title", - "value": { - "string_value": "Vladimir Solovyov rages about the sinking of the Novocherkassk", - "type": "STRING" - } - }, - { - "key": "app_price_currency", - "value": { - "string_value": "USD", - "type": "STRING" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/7IBE4ocPmg", - "type": "STRING" - } - }, - { - "key": "player_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 1, - "green": 1, - "red": 1 - }, - "percentage": 61.45 - }, - { - "rgb": { - "blue": 89, - "green": 46, - "red": 32 - }, - "percentage": 7.27 - }, - { - "rgb": { - "blue": 249, - "green": 246, - "red": 130 - }, - "percentage": 6.84 - }, - { - "rgb": { - "blue": 192, - "green": 189, - "red": 191 - }, - "percentage": 2.56 - }, - { - "rgb": { - "blue": 55, - "green": 130, - "red": 237 - }, - "percentage": 1.73 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "player_image_x_large", - "value": { - "image_value": { - "height": 360, - "width": 480, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "player", - "url": "https://t.co/7IBE4ocPmg", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDIyODI3Mg==", - "rest_id": "10228272", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Nov 13 21:43:46 +0000 2007", - "default_profile": false, - "default_profile_image": false, - "description": "like and subscribe.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "youtube.com", - "expanded_url": "http://youtube.com", - "url": "https://t.co/bUisN3Y1A6", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 6182, - "followers_count": 79693058, - "friends_count": 1176, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 79752, - "location": "San Bruno, CA", - "media_count": 15751, - "name": "YouTube", - "normal_followers_count": 79693058, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10228272/1697646656", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "YouTube", - "statuses_count": 57347, - "translator_type": "regular", - "url": "https://t.co/bUisN3Y1A6", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739753183243633015" - ], - "editable_until_msecs": "1703628056000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "126081", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 25, - "bookmarked": false, - "created_at": "Tue Dec 26 21:00:56 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 0, - 272 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "youtu.be/ZIXrM53y8QQ", - "expanded_url": "https://youtu.be/ZIXrM53y8QQ", - "url": "https://t.co/7IBE4ocPmg", - "indices": [ - 249, - 272 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 828, - "favorited": false, - "full_text": "Meanwhile in Russia: Vladimir Solovyov was beside himself over the sinking of the Novocherkassk. He blamed it on... a naked party! (ICYMI, see my earlier video). Solovyov complained about palace intrigues and thanked the Kremlin for protecting him.\nhttps://t.co/7IBE4ocPmg", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 18, - "reply_count": 79, - "retweet_count": 209, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739753183243633015" - } - } - }, - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:22:07 +0000 2023", - "conversation_id_str": "1739773615065768404", - "display_text_range": [ - 0, - 21 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 73, - "favorited": false, - "full_text": "The cope... it BURNS!", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1739753183243633015", - "quoted_status_permalink": { - "url": "https://t.co/HGQC5BC1Z7", - "expanded": "https://twitter.com/JuliaDavisNews/status/1739753183243633015", - "display": "twitter.com/JuliaDavisNews…" - }, - "reply_count": 1, - "retweet_count": 8, - "retweeted": false, - "user_id_str": "1499244114466193409", - "id_str": "1739773615065768404" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739772817057427820", - "sortIndex": "1739819664587882479", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739772817057427820", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739772817057427820" - ], - "editable_until_msecs": "1703632737659", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:18:57 +0000 2023", - "conversation_id_str": "1739772817057427820", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1419248815", - "name": "Vlada Knowlton 🇺🇦", - "screen_name": "VladaKnowlton", - "indices": [ - 3, - 17 - ] - }, - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 19, - 34 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @VladaKnowlton: @JuliaDavisNews Solovyov reminding everyone that he’s the Kremlin’s top bought and paid for mouthpiece. https://t.co/xbl…", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 12, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739772817057427820", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739772373526807006", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDE5MjQ4ODE1", - "rest_id": "1419248815", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Fri May 10 22:41:32 +0000 2013", - "default_profile": false, - "default_profile_image": false, - "description": "She/her. Filmmaker “The Most Dangerous Year”, “Well Actually”, “Having It All”. PhD in Cog Sci from Brown. I smile as much as men do.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "themostdangerousyear.com", - "expanded_url": "http://themostdangerousyear.com", - "url": "https://t.co/64wAOfKKgb", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 29700, - "followers_count": 3479, - "friends_count": 1936, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 51, - "location": "Seattle", - "media_count": 2660, - "name": "Vlada Knowlton 🇺🇦", - "normal_followers_count": 3479, - "pinned_tweet_ids_str": [ - "1578131619915137027" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1419248815/1604768204", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1663659098645364736/3mCe5p-8_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "VladaKnowlton", - "statuses_count": 24703, - "translator_type": "none", - "url": "https://t.co/64wAOfKKgb", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1473542354288078848", - "professional_type": "Creator", - "category": [ - { - "id": 950, - "name": "Film Director", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739772373526807006" - ], - "editable_until_msecs": "1703632631000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "14893", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 1, - "bookmarked": false, - "created_at": "Tue Dec 26 22:17:11 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 16, - 103 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/xbl3WQAu0q", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739772373526807006/photo/1", - "ext_alt_text": "“Everything is being done to silence my words!”", - "id_str": "1739772369328386048", - "indices": [ - 104, - 127 - ], - "media_key": "3_1739772369328386048", - "media_url_https": "https://pbs.twimg.com/media/GCTpwI_bsAAE99l.jpg", - "type": "photo", - "url": "https://t.co/xbl3WQAu0q", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 100, - "y": 650, - "h": 38, - "w": 38 - }, - { - "x": 752, - "y": 379, - "h": 53, - "w": 53 - } - ] - }, - "medium": { - "faces": [ - { - "x": 100, - "y": 650, - "h": 38, - "w": 38 - }, - { - "x": 752, - "y": 379, - "h": 53, - "w": 53 - } - ] - }, - "small": { - "faces": [ - { - "x": 58, - "y": 377, - "h": 22, - "w": 22 - }, - { - "x": 437, - "y": 220, - "h": 30, - "w": 30 - } - ] - }, - "orig": { - "faces": [ - { - "x": 100, - "y": 650, - "h": 38, - "w": 38 - }, - { - "x": 752, - "y": 379, - "h": 53, - "w": 53 - } - ] - } - }, - "sizes": { - "large": { - "h": 757, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 757, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 440, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 757, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 1170, - "h": 655 - }, - { - "x": 0, - "y": 0, - "w": 757, - "h": 757 - }, - { - "x": 0, - "y": 0, - "w": 664, - "h": 757 - }, - { - "x": 132, - "y": 0, - "w": 379, - "h": 757 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 757 - } - ] - } - }, - { - "display_url": "pic.twitter.com/xbl3WQAu0q", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739772373526807006/photo/1", - "ext_alt_text": "“Happily, the Kremlin has a different position!”", - "id_str": "1739772369311563776", - "indices": [ - 104, - 127 - ], - "media_key": "3_1739772369311563776", - "media_url_https": "https://pbs.twimg.com/media/GCTpwI7bAAA7jCG.jpg", - "type": "photo", - "url": "https://t.co/xbl3WQAu0q", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 748, - "y": 354, - "h": 62, - "w": 62 - } - ] - }, - "medium": { - "faces": [ - { - "x": 748, - "y": 354, - "h": 62, - "w": 62 - } - ] - }, - "small": { - "faces": [ - { - "x": 434, - "y": 205, - "h": 36, - "w": 36 - } - ] - }, - "orig": { - "faces": [ - { - "x": 748, - "y": 354, - "h": 62, - "w": 62 - } - ] - } - }, - "sizes": { - "large": { - "h": 729, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 729, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 424, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 729, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 74, - "w": 1170, - "h": 655 - }, - { - "x": 0, - "y": 0, - "w": 729, - "h": 729 - }, - { - "x": 0, - "y": 0, - "w": 639, - "h": 729 - }, - { - "x": 22, - "y": 0, - "w": 365, - "h": 729 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 729 - } - ] - } - }, - { - "display_url": "pic.twitter.com/xbl3WQAu0q", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739772373526807006/photo/1", - "ext_alt_text": "“That’s why I have this opportunity to broadcast”", - "id_str": "1739772369328373760", - "indices": [ - 104, - 127 - ], - "media_key": "3_1739772369328373760", - "media_url_https": "https://pbs.twimg.com/media/GCTpwI_bgAAMVAS.jpg", - "type": "photo", - "url": "https://t.co/xbl3WQAu0q", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 515, - "y": 187, - "h": 149, - "w": 149 - } - ] - }, - "medium": { - "faces": [ - { - "x": 515, - "y": 187, - "h": 149, - "w": 149 - } - ] - }, - "small": { - "faces": [ - { - "x": 299, - "y": 108, - "h": 86, - "w": 86 - } - ] - }, - "orig": { - "faces": [ - { - "x": 515, - "y": 187, - "h": 149, - "w": 149 - } - ] - } - }, - "sizes": { - "large": { - "h": 738, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 738, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 429, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 738, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 83, - "w": 1170, - "h": 655 - }, - { - "x": 244, - "y": 0, - "w": 738, - "h": 738 - }, - { - "x": 290, - "y": 0, - "w": 647, - "h": 738 - }, - { - "x": 429, - "y": 0, - "w": 369, - "h": 738 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 738 - } - ] - } - }, - { - "display_url": "pic.twitter.com/xbl3WQAu0q", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739772373526807006/photo/1", - "ext_alt_text": "“we have this channel - thanks for that!”", - "id_str": "1739772369336774656", - "indices": [ - 104, - 127 - ], - "media_key": "3_1739772369336774656", - "media_url_https": "https://pbs.twimg.com/media/GCTpwJBbsAAARok.jpg", - "type": "photo", - "url": "https://t.co/xbl3WQAu0q", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 340, - "y": 179, - "h": 105, - "w": 105 - }, - { - "x": 513, - "y": 182, - "h": 156, - "w": 156 - } - ] - }, - "medium": { - "faces": [ - { - "x": 340, - "y": 179, - "h": 105, - "w": 105 - }, - { - "x": 513, - "y": 182, - "h": 156, - "w": 156 - } - ] - }, - "small": { - "faces": [ - { - "x": 197, - "y": 104, - "h": 61, - "w": 61 - }, - { - "x": 298, - "y": 105, - "h": 90, - "w": 90 - } - ] - }, - "orig": { - "faces": [ - { - "x": 340, - "y": 179, - "h": 105, - "w": 105 - }, - { - "x": 513, - "y": 182, - "h": 156, - "w": 156 - } - ] - } - }, - "sizes": { - "large": { - "h": 757, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 757, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 440, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 757, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 102, - "w": 1170, - "h": 655 - }, - { - "x": 119, - "y": 0, - "w": 757, - "h": 757 - }, - { - "x": 165, - "y": 0, - "w": 664, - "h": 757 - }, - { - "x": 308, - "y": 0, - "w": 379, - "h": 757 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 757 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/xbl3WQAu0q", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739772373526807006/photo/1", - "ext_alt_text": "“Everything is being done to silence my words!”", - "id_str": "1739772369328386048", - "indices": [ - 104, - 127 - ], - "media_key": "3_1739772369328386048", - "media_url_https": "https://pbs.twimg.com/media/GCTpwI_bsAAE99l.jpg", - "type": "photo", - "url": "https://t.co/xbl3WQAu0q", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 100, - "y": 650, - "h": 38, - "w": 38 - }, - { - "x": 752, - "y": 379, - "h": 53, - "w": 53 - } - ] - }, - "medium": { - "faces": [ - { - "x": 100, - "y": 650, - "h": 38, - "w": 38 - }, - { - "x": 752, - "y": 379, - "h": 53, - "w": 53 - } - ] - }, - "small": { - "faces": [ - { - "x": 58, - "y": 377, - "h": 22, - "w": 22 - }, - { - "x": 437, - "y": 220, - "h": 30, - "w": 30 - } - ] - }, - "orig": { - "faces": [ - { - "x": 100, - "y": 650, - "h": 38, - "w": 38 - }, - { - "x": 752, - "y": 379, - "h": 53, - "w": 53 - } - ] - } - }, - "sizes": { - "large": { - "h": 757, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 757, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 440, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 757, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 1170, - "h": 655 - }, - { - "x": 0, - "y": 0, - "w": 757, - "h": 757 - }, - { - "x": 0, - "y": 0, - "w": 664, - "h": 757 - }, - { - "x": 132, - "y": 0, - "w": 379, - "h": 757 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 757 - } - ] - } - }, - { - "display_url": "pic.twitter.com/xbl3WQAu0q", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739772373526807006/photo/1", - "ext_alt_text": "“Happily, the Kremlin has a different position!”", - "id_str": "1739772369311563776", - "indices": [ - 104, - 127 - ], - "media_key": "3_1739772369311563776", - "media_url_https": "https://pbs.twimg.com/media/GCTpwI7bAAA7jCG.jpg", - "type": "photo", - "url": "https://t.co/xbl3WQAu0q", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 748, - "y": 354, - "h": 62, - "w": 62 - } - ] - }, - "medium": { - "faces": [ - { - "x": 748, - "y": 354, - "h": 62, - "w": 62 - } - ] - }, - "small": { - "faces": [ - { - "x": 434, - "y": 205, - "h": 36, - "w": 36 - } - ] - }, - "orig": { - "faces": [ - { - "x": 748, - "y": 354, - "h": 62, - "w": 62 - } - ] - } - }, - "sizes": { - "large": { - "h": 729, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 729, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 424, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 729, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 74, - "w": 1170, - "h": 655 - }, - { - "x": 0, - "y": 0, - "w": 729, - "h": 729 - }, - { - "x": 0, - "y": 0, - "w": 639, - "h": 729 - }, - { - "x": 22, - "y": 0, - "w": 365, - "h": 729 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 729 - } - ] - } - }, - { - "display_url": "pic.twitter.com/xbl3WQAu0q", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739772373526807006/photo/1", - "ext_alt_text": "“That’s why I have this opportunity to broadcast”", - "id_str": "1739772369328373760", - "indices": [ - 104, - 127 - ], - "media_key": "3_1739772369328373760", - "media_url_https": "https://pbs.twimg.com/media/GCTpwI_bgAAMVAS.jpg", - "type": "photo", - "url": "https://t.co/xbl3WQAu0q", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 515, - "y": 187, - "h": 149, - "w": 149 - } - ] - }, - "medium": { - "faces": [ - { - "x": 515, - "y": 187, - "h": 149, - "w": 149 - } - ] - }, - "small": { - "faces": [ - { - "x": 299, - "y": 108, - "h": 86, - "w": 86 - } - ] - }, - "orig": { - "faces": [ - { - "x": 515, - "y": 187, - "h": 149, - "w": 149 - } - ] - } - }, - "sizes": { - "large": { - "h": 738, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 738, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 429, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 738, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 83, - "w": 1170, - "h": 655 - }, - { - "x": 244, - "y": 0, - "w": 738, - "h": 738 - }, - { - "x": 290, - "y": 0, - "w": 647, - "h": 738 - }, - { - "x": 429, - "y": 0, - "w": 369, - "h": 738 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 738 - } - ] - } - }, - { - "display_url": "pic.twitter.com/xbl3WQAu0q", - "expanded_url": "https://twitter.com/VladaKnowlton/status/1739772373526807006/photo/1", - "ext_alt_text": "“we have this channel - thanks for that!”", - "id_str": "1739772369336774656", - "indices": [ - 104, - 127 - ], - "media_key": "3_1739772369336774656", - "media_url_https": "https://pbs.twimg.com/media/GCTpwJBbsAAARok.jpg", - "type": "photo", - "url": "https://t.co/xbl3WQAu0q", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 340, - "y": 179, - "h": 105, - "w": 105 - }, - { - "x": 513, - "y": 182, - "h": 156, - "w": 156 - } - ] - }, - "medium": { - "faces": [ - { - "x": 340, - "y": 179, - "h": 105, - "w": 105 - }, - { - "x": 513, - "y": 182, - "h": 156, - "w": 156 - } - ] - }, - "small": { - "faces": [ - { - "x": 197, - "y": 104, - "h": 61, - "w": 61 - }, - { - "x": 298, - "y": 105, - "h": 90, - "w": 90 - } - ] - }, - "orig": { - "faces": [ - { - "x": 340, - "y": 179, - "h": 105, - "w": 105 - }, - { - "x": 513, - "y": 182, - "h": 156, - "w": 156 - } - ] - } - }, - "sizes": { - "large": { - "h": 757, - "w": 1170, - "resize": "fit" - }, - "medium": { - "h": 757, - "w": 1170, - "resize": "fit" - }, - "small": { - "h": 440, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 757, - "width": 1170, - "focus_rects": [ - { - "x": 0, - "y": 102, - "w": 1170, - "h": 655 - }, - { - "x": 119, - "y": 0, - "w": 757, - "h": 757 - }, - { - "x": 165, - "y": 0, - "w": 664, - "h": 757 - }, - { - "x": 308, - "y": 0, - "w": 379, - "h": 757 - }, - { - "x": 0, - "y": 0, - "w": 1170, - "h": 757 - } - ] - } - } - ] - }, - "favorite_count": 66, - "favorited": false, - "full_text": "@JuliaDavisNews Solovyov reminding everyone that he’s the Kremlin’s top bought and paid for mouthpiece. https://t.co/xbl3WQAu0q", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1739753183243633015", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 1, - "retweet_count": 12, - "retweeted": false, - "user_id_str": "1419248815", - "id_str": "1739772373526807006" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739771885594828862", - "sortIndex": "1739819664587882478", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739771885594828862", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/iLUfXEFTsf", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 361, - "width": 690, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 150, - "width": 267, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "Key developments on Dec. 26: * Russia confirms its landing ship hit by Ukrainian missile strike in occupied Crimea * Russian attack on Kherson railway station kills 1, injures 4 * Zaluzhnyi denies...", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "kyivindependent.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 320, - "width": 571, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 387, - "width": 690, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "1462548977367359490", - "path": [] - } - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 361, - "width": 690, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 81, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 387, - "width": 690, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 387, - "width": 690, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "kyivindependent.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 33, - "green": 36, - "red": 44 - }, - "percentage": 68.19 - }, - { - "rgb": { - "blue": 48, - "green": 57, - "red": 48 - }, - "percentage": 7.48 - }, - { - "rgb": { - "blue": 37, - "green": 46, - "red": 108 - }, - "percentage": 7.3 - }, - { - "rgb": { - "blue": 45, - "green": 33, - "red": 31 - }, - "percentage": 4.41 - }, - { - "rgb": { - "blue": 30, - "green": 61, - "red": 101 - }, - "percentage": 2.94 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Ukraine war latest: Russian landing ship hit by Ukrainian missile strike in occupied Crimea", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 33, - "green": 36, - "red": 44 - }, - "percentage": 68.19 - }, - { - "rgb": { - "blue": 48, - "green": 57, - "red": 48 - }, - "percentage": 7.48 - }, - { - "rgb": { - "blue": 37, - "green": 46, - "red": 108 - }, - "percentage": 7.3 - }, - { - "rgb": { - "blue": 45, - "green": 33, - "red": 31 - }, - "percentage": 4.41 - }, - { - "rgb": { - "blue": 30, - "green": 61, - "red": 101 - }, - "percentage": 2.94 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 387, - "width": 690, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 33, - "green": 36, - "red": 44 - }, - "percentage": 68.19 - }, - { - "rgb": { - "blue": 48, - "green": 57, - "red": 48 - }, - "percentage": 7.48 - }, - { - "rgb": { - "blue": 37, - "green": 46, - "red": 108 - }, - "percentage": 7.3 - }, - { - "rgb": { - "blue": 45, - "green": 33, - "red": 31 - }, - "percentage": 4.41 - }, - { - "rgb": { - "blue": 30, - "green": 61, - "red": 101 - }, - "percentage": 2.94 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 387, - "width": 690, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/iLUfXEFTsf", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 387, - "width": 690, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/iLUfXEFTsf", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739771885594828862" - ], - "editable_until_msecs": "1703632515000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "87921", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 8, - "bookmarked": false, - "created_at": "Tue Dec 26 22:15:15 +0000 2023", - "conversation_id_str": "1739771885594828862", - "display_text_range": [ - 0, - 275 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "kyivindependent.com/ukraine-war-la…", - "expanded_url": "https://kyivindependent.com/ukraine-war-latest-russia-confirms-its-landing-ship-hit-by-ukrainian-missile-strike-in-occupied-crimea/", - "url": "https://t.co/iLUfXEFTsf", - "indices": [ - 252, - 275 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 635, - "favorited": false, - "full_text": "Russia confirmed its ship, Novocherkassk, docked at Feodosia in occupied Crimea, was hit by a Ukrainian missile strike; Russia attacked a Kherson railway station, killing 1; Zaluzhnyi denied requesting the mobilization of 500,000 conscripts; and more. https://t.co/iLUfXEFTsf", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 2, - "reply_count": 15, - "retweet_count": 107, - "retweeted": false, - "user_id_str": "1462548977367359490", - "id_str": "1739771885594828862" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739770894413705654", - "sortIndex": "1739819664587882477", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739770894413705654", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo0NTQwOTk5MTk=", - "rest_id": "454099919", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Tue Jan 03 16:36:02 +0000 2012", - "default_profile": false, - "default_profile_image": false, - "description": "Professor of Political Science, Director of Freeman Spogli Institute & Hoover Senior Fellow all at Stanford University. U.S. Ambassador to Russia, 2012-2014.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "michaelmcfaul.substack.com", - "expanded_url": "https://michaelmcfaul.substack.com/", - "url": "https://t.co/Mdi9pqQ58Q", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 46606, - "followers_count": 900854, - "friends_count": 2092, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 10476, - "location": "Stanford, California", - "media_count": 3445, - "name": "Michael McFaul", - "normal_followers_count": 900854, - "pinned_tweet_ids_str": [ - "1515923887720071168" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/454099919/1667071005", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1483538323368910851/gqSpEuaL_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "McFaul", - "statuses_count": 122048, - "translator_type": "none", - "url": "https://t.co/Mdi9pqQ58Q", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739770894413705654" - ], - "editable_until_msecs": "1703632279000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "29902", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 3, - "bookmarked": false, - "created_at": "Tue Dec 26 22:11:19 +0000 2023", - "conversation_id_str": "1739770894413705654", - "display_text_range": [ - 0, - 16 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/KtmuSeANTi", - "expanded_url": "https://twitter.com/McFaul/status/1739770894413705654/photo/1", - "id_str": "1739770793200918528", - "indices": [ - 17, - 40 - ], - "media_key": "3_1739770793200918528", - "media_url_https": "https://pbs.twimg.com/media/GCToUZdXIAA1fqr.jpg", - "type": "photo", - "url": "https://t.co/KtmuSeANTi", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 1536, - "w": 2048, - "resize": "fit" - }, - "medium": { - "h": 900, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 510, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1536, - "width": 2048, - "focus_rects": [ - { - "x": 0, - "y": 389, - "w": 2048, - "h": 1147 - }, - { - "x": 512, - "y": 0, - "w": 1536, - "h": 1536 - }, - { - "x": 701, - "y": 0, - "w": 1347, - "h": 1536 - }, - { - "x": 1100, - "y": 0, - "w": 768, - "h": 1536 - }, - { - "x": 0, - "y": 0, - "w": 2048, - "h": 1536 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/KtmuSeANTi", - "expanded_url": "https://twitter.com/McFaul/status/1739770894413705654/photo/1", - "id_str": "1739770793200918528", - "indices": [ - 17, - 40 - ], - "media_key": "3_1739770793200918528", - "media_url_https": "https://pbs.twimg.com/media/GCToUZdXIAA1fqr.jpg", - "type": "photo", - "url": "https://t.co/KtmuSeANTi", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 1536, - "w": 2048, - "resize": "fit" - }, - "medium": { - "h": 900, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 510, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1536, - "width": 2048, - "focus_rects": [ - { - "x": 0, - "y": 389, - "w": 2048, - "h": 1147 - }, - { - "x": 512, - "y": 0, - "w": 1536, - "h": 1536 - }, - { - "x": 701, - "y": 0, - "w": 1347, - "h": 1536 - }, - { - "x": 1100, - "y": 0, - "w": 768, - "h": 1536 - }, - { - "x": 0, - "y": 0, - "w": 2048, - "h": 1536 - } - ] - } - } - ] - }, - "favorite_count": 284, - "favorited": false, - "full_text": "Bye bye Bozeman. https://t.co/KtmuSeANTi", - "is_quote_status": false, - "lang": "ht", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 1, - "reply_count": 21, - "retweet_count": 12, - "retweeted": false, - "user_id_str": "454099919", - "id_str": "1739770894413705654" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739769874770006500", - "sortIndex": "1739819664587882476", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739769874770006500", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/1EJAvNHTyT", - "legacy": { - "binding_values": [ - { - "key": "player_url", - "value": { - "string_value": "https://www.youtube.com/embed/lN0wrjTDkpM", - "type": "STRING" - } - }, - { - "key": "player_image_large", - "value": { - "image_value": { - "height": 627, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739355219274702848/ZO8AzTod?format=jpg&name=1200x627" - }, - "type": "IMAGE" - } - }, - { - "key": "player_image", - "value": { - "image_value": { - "height": 210, - "width": 280, - "url": "https://pbs.twimg.com/card_img/1739355219274702848/ZO8AzTod?format=jpg&name=280x280" - }, - "type": "IMAGE" - } - }, - { - "key": "app_star_rating", - "value": { - "string_value": "4.6776", - "type": "STRING" - } - }, - { - "key": "player_width", - "value": { - "string_value": "1280", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.youtube.com", - "type": "STRING" - } - }, - { - "key": "app_is_free", - "value": { - "string_value": "true", - "type": "STRING" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "10228272", - "path": [] - } - } - }, - { - "key": "player_image_original", - "value": { - "image_value": { - "height": 360, - "width": 480, - "url": "https://pbs.twimg.com/card_img/1739355219274702848/ZO8AzTod?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "app_num_ratings", - "value": { - "string_value": "34,009,347", - "type": "STRING" - } - }, - { - "key": "app_price_amount", - "value": { - "string_value": "0.0", - "type": "STRING" - } - }, - { - "key": "player_height", - "value": { - "string_value": "720", - "type": "STRING" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "youtube.com", - "type": "STRING" - } - }, - { - "key": "app_name", - "value": { - "string_value": "YouTube: Watch, Listen, Stream", - "type": "STRING" - } - }, - { - "key": "player_image_small", - "value": { - "image_value": { - "height": 108, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1739355219274702848/ZO8AzTod?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "title", - "value": { - "string_value": "State TV discusses Russia's holiday parties", - "type": "STRING" - } - }, - { - "key": "app_price_currency", - "value": { - "string_value": "USD", - "type": "STRING" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/1EJAvNHTyT", - "type": "STRING" - } - }, - { - "key": "player_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 0, - "green": 0, - "red": 0 - }, - "percentage": 59.24 - }, - { - "rgb": { - "blue": 106, - "green": 131, - "red": 192 - }, - "percentage": 15.01 - }, - { - "rgb": { - "blue": 52, - "green": 67, - "red": 102 - }, - "percentage": 4.46 - }, - { - "rgb": { - "blue": 58, - "green": 21, - "red": 21 - }, - "percentage": 3.69 - }, - { - "rgb": { - "blue": 97, - "green": 9, - "red": 52 - }, - "percentage": 2.38 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "player_image_x_large", - "value": { - "image_value": { - "height": 360, - "width": 480, - "url": "https://pbs.twimg.com/card_img/1739355219274702848/ZO8AzTod?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "player", - "url": "https://t.co/1EJAvNHTyT", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDIyODI3Mg==", - "rest_id": "10228272", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Nov 13 21:43:46 +0000 2007", - "default_profile": false, - "default_profile_image": false, - "description": "like and subscribe.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "youtube.com", - "expanded_url": "http://youtube.com", - "url": "https://t.co/bUisN3Y1A6", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 6182, - "followers_count": 79693058, - "friends_count": 1176, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 79752, - "location": "San Bruno, CA", - "media_count": 15751, - "name": "YouTube", - "normal_followers_count": 79693058, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10228272/1697646656", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "YouTube", - "statuses_count": 57347, - "translator_type": "regular", - "url": "https://t.co/bUisN3Y1A6", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739769874770006500" - ], - "editable_until_msecs": "1703632036163", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:07:16 +0000 2023", - "conversation_id_str": "1739769874770006500", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 3, - 18 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @JuliaDavisNews: Meanwhile in Russia: state TV propagandists compare naked debauchery during holiday parties to Rasputin's orgies and wo…", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 0, - "retweet_count": 143, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739769874770006500", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739355415614292398", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/1EJAvNHTyT", - "legacy": { - "binding_values": [ - { - "key": "player_url", - "value": { - "string_value": "https://www.youtube.com/embed/lN0wrjTDkpM", - "type": "STRING" - } - }, - { - "key": "player_image_large", - "value": { - "image_value": { - "height": 627, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739355219274702848/ZO8AzTod?format=jpg&name=1200x627" - }, - "type": "IMAGE" - } - }, - { - "key": "player_image", - "value": { - "image_value": { - "height": 210, - "width": 280, - "url": "https://pbs.twimg.com/card_img/1739355219274702848/ZO8AzTod?format=jpg&name=280x280" - }, - "type": "IMAGE" - } - }, - { - "key": "app_star_rating", - "value": { - "string_value": "4.6776", - "type": "STRING" - } - }, - { - "key": "player_width", - "value": { - "string_value": "1280", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.youtube.com", - "type": "STRING" - } - }, - { - "key": "app_is_free", - "value": { - "string_value": "true", - "type": "STRING" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "10228272", - "path": [] - } - } - }, - { - "key": "player_image_original", - "value": { - "image_value": { - "height": 360, - "width": 480, - "url": "https://pbs.twimg.com/card_img/1739355219274702848/ZO8AzTod?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "app_num_ratings", - "value": { - "string_value": "34,009,347", - "type": "STRING" - } - }, - { - "key": "app_price_amount", - "value": { - "string_value": "0.0", - "type": "STRING" - } - }, - { - "key": "player_height", - "value": { - "string_value": "720", - "type": "STRING" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "youtube.com", - "type": "STRING" - } - }, - { - "key": "app_name", - "value": { - "string_value": "YouTube: Watch, Listen, Stream", - "type": "STRING" - } - }, - { - "key": "player_image_small", - "value": { - "image_value": { - "height": 108, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1739355219274702848/ZO8AzTod?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "title", - "value": { - "string_value": "State TV discusses Russia's holiday parties", - "type": "STRING" - } - }, - { - "key": "app_price_currency", - "value": { - "string_value": "USD", - "type": "STRING" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/1EJAvNHTyT", - "type": "STRING" - } - }, - { - "key": "player_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 0, - "green": 0, - "red": 0 - }, - "percentage": 59.24 - }, - { - "rgb": { - "blue": 106, - "green": 131, - "red": 192 - }, - "percentage": 15.01 - }, - { - "rgb": { - "blue": 52, - "green": 67, - "red": 102 - }, - "percentage": 4.46 - }, - { - "rgb": { - "blue": 58, - "green": 21, - "red": 21 - }, - "percentage": 3.69 - }, - { - "rgb": { - "blue": 97, - "green": 9, - "red": 52 - }, - "percentage": 2.38 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "player_image_x_large", - "value": { - "image_value": { - "height": 360, - "width": 480, - "url": "https://pbs.twimg.com/card_img/1739355219274702848/ZO8AzTod?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "player", - "url": "https://t.co/1EJAvNHTyT", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDIyODI3Mg==", - "rest_id": "10228272", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Nov 13 21:43:46 +0000 2007", - "default_profile": false, - "default_profile_image": false, - "description": "like and subscribe.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "youtube.com", - "expanded_url": "http://youtube.com", - "url": "https://t.co/bUisN3Y1A6", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 6182, - "followers_count": 79693058, - "friends_count": 1176, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 79752, - "location": "San Bruno, CA", - "media_count": 15751, - "name": "YouTube", - "normal_followers_count": 79693058, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10228272/1697646656", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "YouTube", - "statuses_count": 57347, - "translator_type": "regular", - "url": "https://t.co/bUisN3Y1A6", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739355415614292398" - ], - "editable_until_msecs": "1703533221000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "176901", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 22, - "bookmarked": false, - "created_at": "Mon Dec 25 18:40:21 +0000 2023", - "conversation_id_str": "1739355415614292398", - "display_text_range": [ - 0, - 233 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "youtu.be/lN0wrjTDkpM", - "expanded_url": "https://youtu.be/lN0wrjTDkpM", - "url": "https://t.co/1EJAvNHTyT", - "indices": [ - 210, - 233 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 658, - "favorited": false, - "full_text": "Meanwhile in Russia: state TV propagandists compare naked debauchery during holiday parties to Rasputin's orgies and worry that they may have a negative impact on the troops or even lead to another revolution.\nhttps://t.co/1EJAvNHTyT", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 9, - "reply_count": 50, - "retweet_count": 143, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739355415614292398" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "list-conversation-1739819664587882517", - "sortIndex": "1739819664587882475", - "content": { - "entryType": "TimelineTimelineModule", - "__typename": "TimelineTimelineModule", - "items": [ - { - "entryId": "list-conversation-1739819664587882517-tweet-1739753183243633015", - "item": { - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739753183243633015", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/7IBE4ocPmg", - "legacy": { - "binding_values": [ - { - "key": "player_url", - "value": { - "string_value": "https://www.youtube.com/embed/ZIXrM53y8QQ", - "type": "STRING" - } - }, - { - "key": "player_image_large", - "value": { - "image_value": { - "height": 627, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=jpg&name=1200x627" - }, - "type": "IMAGE" - } - }, - { - "key": "player_image", - "value": { - "image_value": { - "height": 210, - "width": 280, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=jpg&name=280x280" - }, - "type": "IMAGE" - } - }, - { - "key": "app_star_rating", - "value": { - "string_value": "4.6776", - "type": "STRING" - } - }, - { - "key": "player_width", - "value": { - "string_value": "1280", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.youtube.com", - "type": "STRING" - } - }, - { - "key": "app_is_free", - "value": { - "string_value": "true", - "type": "STRING" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "10228272", - "path": [] - } - } - }, - { - "key": "player_image_original", - "value": { - "image_value": { - "height": 360, - "width": 480, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "app_num_ratings", - "value": { - "string_value": "34,009,347", - "type": "STRING" - } - }, - { - "key": "app_price_amount", - "value": { - "string_value": "0.0", - "type": "STRING" - } - }, - { - "key": "player_height", - "value": { - "string_value": "720", - "type": "STRING" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "youtube.com", - "type": "STRING" - } - }, - { - "key": "app_name", - "value": { - "string_value": "YouTube: Watch, Listen, Stream", - "type": "STRING" - } - }, - { - "key": "player_image_small", - "value": { - "image_value": { - "height": 108, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "title", - "value": { - "string_value": "Vladimir Solovyov rages about the sinking of the Novocherkassk", - "type": "STRING" - } - }, - { - "key": "app_price_currency", - "value": { - "string_value": "USD", - "type": "STRING" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/7IBE4ocPmg", - "type": "STRING" - } - }, - { - "key": "player_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 1, - "green": 1, - "red": 1 - }, - "percentage": 61.45 - }, - { - "rgb": { - "blue": 89, - "green": 46, - "red": 32 - }, - "percentage": 7.27 - }, - { - "rgb": { - "blue": 249, - "green": 246, - "red": 130 - }, - "percentage": 6.84 - }, - { - "rgb": { - "blue": 192, - "green": 189, - "red": 191 - }, - "percentage": 2.56 - }, - { - "rgb": { - "blue": 55, - "green": 130, - "red": 237 - }, - "percentage": 1.73 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "player_image_x_large", - "value": { - "image_value": { - "height": 360, - "width": 480, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "player", - "url": "https://t.co/7IBE4ocPmg", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDIyODI3Mg==", - "rest_id": "10228272", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Nov 13 21:43:46 +0000 2007", - "default_profile": false, - "default_profile_image": false, - "description": "like and subscribe.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "youtube.com", - "expanded_url": "http://youtube.com", - "url": "https://t.co/bUisN3Y1A6", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 6182, - "followers_count": 79693058, - "friends_count": 1176, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 79752, - "location": "San Bruno, CA", - "media_count": 15751, - "name": "YouTube", - "normal_followers_count": 79693058, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10228272/1697646656", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "YouTube", - "statuses_count": 57347, - "translator_type": "regular", - "url": "https://t.co/bUisN3Y1A6", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739753183243633015" - ], - "editable_until_msecs": "1703628056000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "126081", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 25, - "bookmarked": false, - "created_at": "Tue Dec 26 21:00:56 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 0, - 272 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "youtu.be/ZIXrM53y8QQ", - "expanded_url": "https://youtu.be/ZIXrM53y8QQ", - "url": "https://t.co/7IBE4ocPmg", - "indices": [ - 249, - 272 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 828, - "favorited": false, - "full_text": "Meanwhile in Russia: Vladimir Solovyov was beside himself over the sinking of the Novocherkassk. He blamed it on... a naked party! (ICYMI, see my earlier video). Solovyov complained about palace intrigues and thanked the Kremlin for protecting him.\nhttps://t.co/7IBE4ocPmg", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 18, - "reply_count": 79, - "retweet_count": 209, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739753183243633015" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "list-conversation-1739819664587882517-tweet-1739769827730853908", - "item": { - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739769827730853908", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739769827730853908" - ], - "editable_until_msecs": "1703632024000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "25911", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739355415614292398", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/1EJAvNHTyT", - "legacy": { - "binding_values": [ - { - "key": "player_url", - "value": { - "string_value": "https://www.youtube.com/embed/lN0wrjTDkpM", - "type": "STRING" - } - }, - { - "key": "player_image_large", - "value": { - "image_value": { - "height": 627, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739355219274702848/ZO8AzTod?format=jpg&name=1200x627" - }, - "type": "IMAGE" - } - }, - { - "key": "player_image", - "value": { - "image_value": { - "height": 210, - "width": 280, - "url": "https://pbs.twimg.com/card_img/1739355219274702848/ZO8AzTod?format=jpg&name=280x280" - }, - "type": "IMAGE" - } - }, - { - "key": "app_star_rating", - "value": { - "string_value": "4.6776", - "type": "STRING" - } - }, - { - "key": "player_width", - "value": { - "string_value": "1280", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.youtube.com", - "type": "STRING" - } - }, - { - "key": "app_is_free", - "value": { - "string_value": "true", - "type": "STRING" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "10228272", - "path": [] - } - } - }, - { - "key": "player_image_original", - "value": { - "image_value": { - "height": 360, - "width": 480, - "url": "https://pbs.twimg.com/card_img/1739355219274702848/ZO8AzTod?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "app_num_ratings", - "value": { - "string_value": "34,009,347", - "type": "STRING" - } - }, - { - "key": "app_price_amount", - "value": { - "string_value": "0.0", - "type": "STRING" - } - }, - { - "key": "player_height", - "value": { - "string_value": "720", - "type": "STRING" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "youtube.com", - "type": "STRING" - } - }, - { - "key": "app_name", - "value": { - "string_value": "YouTube: Watch, Listen, Stream", - "type": "STRING" - } - }, - { - "key": "player_image_small", - "value": { - "image_value": { - "height": 108, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1739355219274702848/ZO8AzTod?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "title", - "value": { - "string_value": "State TV discusses Russia's holiday parties", - "type": "STRING" - } - }, - { - "key": "app_price_currency", - "value": { - "string_value": "USD", - "type": "STRING" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/1EJAvNHTyT", - "type": "STRING" - } - }, - { - "key": "player_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 0, - "green": 0, - "red": 0 - }, - "percentage": 59.24 - }, - { - "rgb": { - "blue": 106, - "green": 131, - "red": 192 - }, - "percentage": 15.01 - }, - { - "rgb": { - "blue": 52, - "green": 67, - "red": 102 - }, - "percentage": 4.46 - }, - { - "rgb": { - "blue": 58, - "green": 21, - "red": 21 - }, - "percentage": 3.69 - }, - { - "rgb": { - "blue": 97, - "green": 9, - "red": 52 - }, - "percentage": 2.38 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "player_image_x_large", - "value": { - "image_value": { - "height": 360, - "width": 480, - "url": "https://pbs.twimg.com/card_img/1739355219274702848/ZO8AzTod?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "player", - "url": "https://t.co/1EJAvNHTyT", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDIyODI3Mg==", - "rest_id": "10228272", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Nov 13 21:43:46 +0000 2007", - "default_profile": false, - "default_profile_image": false, - "description": "like and subscribe.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "youtube.com", - "expanded_url": "http://youtube.com", - "url": "https://t.co/bUisN3Y1A6", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 6182, - "followers_count": 79693058, - "friends_count": 1176, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 79752, - "location": "San Bruno, CA", - "media_count": 15751, - "name": "YouTube", - "normal_followers_count": 79693058, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10228272/1697646656", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "YouTube", - "statuses_count": 57347, - "translator_type": "regular", - "url": "https://t.co/bUisN3Y1A6", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739355415614292398" - ], - "editable_until_msecs": "1703533221000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "176901", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 22, - "bookmarked": false, - "created_at": "Mon Dec 25 18:40:21 +0000 2023", - "conversation_id_str": "1739355415614292398", - "display_text_range": [ - 0, - 233 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "youtu.be/lN0wrjTDkpM", - "expanded_url": "https://youtu.be/lN0wrjTDkpM", - "url": "https://t.co/1EJAvNHTyT", - "indices": [ - 210, - 233 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 658, - "favorited": false, - "full_text": "Meanwhile in Russia: state TV propagandists compare naked debauchery during holiday parties to Rasputin's orgies and worry that they may have a negative impact on the troops or even lead to another revolution.\nhttps://t.co/1EJAvNHTyT", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 9, - "reply_count": 50, - "retweet_count": 143, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739355415614292398" - } - } - }, - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:07:04 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 0, - 23 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "x.com/JuliaDavisNews…", - "expanded_url": "https://x.com/JuliaDavisNews/status/1739355415614292398?s=20", - "url": "https://t.co/aTT3eKsrV2", - "indices": [ - 0, - 23 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 75, - "favorited": false, - "full_text": "https://t.co/aTT3eKsrV2", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1739753183243633015", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": true, - "lang": "zxx", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 1, - "quoted_status_id_str": "1739355415614292398", - "quoted_status_permalink": { - "url": "https://t.co/aTT3eKsrV2", - "expanded": "https://x.com/JuliaDavisNews/status/1739355415614292398?s=20", - "display": "x.com/JuliaDavisNews…" - }, - "reply_count": 1, - "retweet_count": 10, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739769827730853908" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - } - ], - "metadata": { - "conversationMetadata": { - "allTweetIds": [ - "1739753183243633015", - "1739769827730853908" - ], - "enableDeduplication": true - } - }, - "displayType": "VerticalConversation", - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739769548402762130", - "sortIndex": "1739819664587882474", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739769548402762130", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739769548402762130" - ], - "editable_until_msecs": "1703631958351", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:05:58 +0000 2023", - "conversation_id_str": "1739769548402762130", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "247054094", - "name": "Mark Toth", - "screen_name": "MCTothSTL", - "indices": [ - 3, - 13 - ] - }, - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 52, - 67 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @MCTothSTL: Priceless must read gem of a post by @JuliaDavisNews. Normally, I’d screenshot it, but head straight over to her feed to get…", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1739753183243633015", - "quoted_status_permalink": { - "url": "https://t.co/9vDBmTPEJt", - "expanded": "https://twitter.com/juliadavisnews/status/1739753183243633015", - "display": "twitter.com/juliadavisnews…" - }, - "reply_count": 0, - "retweet_count": 22, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739769548402762130", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739767985676419098", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNDcwNTQwOTQ=", - "rest_id": "247054094", + "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", + "rest_id": "1462548977367359490", "affiliates_highlighted_label": {}, "has_graduated_access": true, "is_blue_verified": true, @@ -16750,20 +37,39 @@ "legacy": { "can_dm": true, "can_media_tag": true, - "created_at": "Fri Feb 04 00:27:41 +0000 2011", + "created_at": "Sun Nov 21 22:30:41 +0000 2021", "default_profile": true, "default_profile_image": false, - "description": "National Security Foreign Policy @TheHill @BBC @MailOnLine @FoxNews @KyivPost @NYPost @TheMessenger @TVPWorld_com +: @CNN @Daily_Express @NewsNation @Newsweek.", + "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", "entities": { "description": { - "urls": [] + "urls": [ + { + "display_url": "kyivindependent.com/membership/", + "expanded_url": "http://kyivindependent.com/membership/", + "url": "https://t.co/jsQiFkoveH", + "indices": [ + 17, + 40 + ] + }, + { + "display_url": "kyivindependent.com/membership/?in…", + "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", + "url": "https://t.co/eNwj76xa7a", + "indices": [ + 60, + 83 + ] + } + ] }, "url": { "urls": [ { - "display_url": "muckrack.com/mark-toth-1", - "expanded_url": "https://muckrack.com/mark-toth-1", - "url": "https://t.co/tHo34JoueP", + "display_url": "kyivindependent.com", + "expanded_url": "http://kyivindependent.com", + "url": "https://t.co/WZvsaFpT20", "indices": [ 0, 23 @@ -16773,37941 +79,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 44548, - "followers_count": 6313, - "friends_count": 1433, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 139, - "location": "United States of America", - "media_count": 846, - "name": "Mark Toth", - "normal_followers_count": 6313, - "pinned_tweet_ids_str": [ - "1724785942597390675" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/247054094/1676130947", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1521865636317736962/ErG74-dA_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "MCTothSTL", - "statuses_count": 27394, - "translator_type": "none", - "url": "https://t.co/tHo34JoueP", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739767985676419098" - ], - "editable_until_msecs": "1703631585000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "19728", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739753183243633015", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/7IBE4ocPmg", - "legacy": { - "binding_values": [ - { - "key": "player_url", - "value": { - "string_value": "https://www.youtube.com/embed/ZIXrM53y8QQ", - "type": "STRING" - } - }, - { - "key": "player_image_large", - "value": { - "image_value": { - "height": 627, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=jpg&name=1200x627" - }, - "type": "IMAGE" - } - }, - { - "key": "player_image", - "value": { - "image_value": { - "height": 210, - "width": 280, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=jpg&name=280x280" - }, - "type": "IMAGE" - } - }, - { - "key": "app_star_rating", - "value": { - "string_value": "4.6776", - "type": "STRING" - } - }, - { - "key": "player_width", - "value": { - "string_value": "1280", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.youtube.com", - "type": "STRING" - } - }, - { - "key": "app_is_free", - "value": { - "string_value": "true", - "type": "STRING" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "10228272", - "path": [] - } - } - }, - { - "key": "player_image_original", - "value": { - "image_value": { - "height": 360, - "width": 480, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "app_num_ratings", - "value": { - "string_value": "34,009,347", - "type": "STRING" - } - }, - { - "key": "app_price_amount", - "value": { - "string_value": "0.0", - "type": "STRING" - } - }, - { - "key": "player_height", - "value": { - "string_value": "720", - "type": "STRING" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "youtube.com", - "type": "STRING" - } - }, - { - "key": "app_name", - "value": { - "string_value": "YouTube: Watch, Listen, Stream", - "type": "STRING" - } - }, - { - "key": "player_image_small", - "value": { - "image_value": { - "height": 108, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "title", - "value": { - "string_value": "Vladimir Solovyov rages about the sinking of the Novocherkassk", - "type": "STRING" - } - }, - { - "key": "app_price_currency", - "value": { - "string_value": "USD", - "type": "STRING" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/7IBE4ocPmg", - "type": "STRING" - } - }, - { - "key": "player_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 1, - "green": 1, - "red": 1 - }, - "percentage": 61.45 - }, - { - "rgb": { - "blue": 89, - "green": 46, - "red": 32 - }, - "percentage": 7.27 - }, - { - "rgb": { - "blue": 249, - "green": 246, - "red": 130 - }, - "percentage": 6.84 - }, - { - "rgb": { - "blue": 192, - "green": 189, - "red": 191 - }, - "percentage": 2.56 - }, - { - "rgb": { - "blue": 55, - "green": 130, - "red": 237 - }, - "percentage": 1.73 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "player_image_x_large", - "value": { - "image_value": { - "height": 360, - "width": 480, - "url": "https://pbs.twimg.com/card_img/1739753098178891776/51Iag2w9?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "player", - "url": "https://t.co/7IBE4ocPmg", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDIyODI3Mg==", - "rest_id": "10228272", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Nov 13 21:43:46 +0000 2007", - "default_profile": false, - "default_profile_image": false, - "description": "like and subscribe.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "youtube.com", - "expanded_url": "http://youtube.com", - "url": "https://t.co/bUisN3Y1A6", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 6182, - "followers_count": 79693058, - "friends_count": 1176, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 79752, - "location": "San Bruno, CA", - "media_count": 15751, - "name": "YouTube", - "normal_followers_count": 79693058, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/10228272/1697646656", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "YouTube", - "statuses_count": 57347, - "translator_type": "regular", - "url": "https://t.co/bUisN3Y1A6", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739753183243633015" - ], - "editable_until_msecs": "1703628056000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "126081", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 25, - "bookmarked": false, - "created_at": "Tue Dec 26 21:00:56 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 0, - 272 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "youtu.be/ZIXrM53y8QQ", - "expanded_url": "https://youtu.be/ZIXrM53y8QQ", - "url": "https://t.co/7IBE4ocPmg", - "indices": [ - 249, - 272 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 828, - "favorited": false, - "full_text": "Meanwhile in Russia: Vladimir Solovyov was beside himself over the sinking of the Novocherkassk. He blamed it on... a naked party! (ICYMI, see my earlier video). Solovyov complained about palace intrigues and thanked the Kremlin for protecting him.\nhttps://t.co/7IBE4ocPmg", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 18, - "reply_count": 79, - "retweet_count": 209, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739753183243633015" - } - } - }, - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:59:45 +0000 2023", - "conversation_id_str": "1739767985676419098", - "display_text_range": [ - 0, - 215 - ], - "entities": { - "hashtags": [ - { - "indices": [ - 162, - 171 - ], - "text": "Solovyov" - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 37, - 52 - ] - } - ] - }, - "favorite_count": 79, - "favorited": false, - "full_text": "Priceless must read gem of a post by @JuliaDavisNews. Normally, I’d screenshot it, but head straight over to her feed to get the full effect. Just when you think #Solovyov’s IQ can’t sink any lower, it can and does!", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1739753183243633015", - "quoted_status_permalink": { - "url": "https://t.co/9vDBmTPEJt", - "expanded": "https://twitter.com/juliadavisnews/status/1739753183243633015", - "display": "twitter.com/juliadavisnews…" - }, - "reply_count": 2, - "retweet_count": 22, - "retweeted": false, - "user_id_str": "247054094", - "id_str": "1739767985676419098" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739769477963616677", - "sortIndex": "1739819664587882473", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739769477963616677", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739769477963616677" - ], - "editable_until_msecs": "1703631941557", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:05:41 +0000 2023", - "conversation_id_str": "1739769477963616677", - "display_text_range": [ - 0, - 118 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/uu41COAfCI", - "expanded_url": "https://twitter.com/Prune602/status/1739768579480842507/photo/1", - "id_str": "1739768574963511296", - "indices": [ - 95, - 118 - ], - "media_key": "3_1739768574963511296", - "media_url_https": "https://pbs.twimg.com/media/GCTmTR4WcAA9JiS.jpg", - "source_status_id_str": "1739768579480842507", - "source_user_id_str": "1498461179890524161", - "type": "photo", - "url": "https://t.co/uu41COAfCI", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 520, - "y": 145, - "h": 172, - "w": 172 - } - ] - }, - "medium": { - "faces": [ - { - "x": 487, - "y": 135, - "h": 161, - "w": 161 - } - ] - }, - "small": { - "faces": [ - { - "x": 276, - "y": 77, - "h": 91, - "w": 91 - } - ] - }, - "orig": { - "faces": [ - { - "x": 520, - "y": 145, - "h": 172, - "w": 172 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1498461179890524161", - "name": "Prune60", - "screen_name": "Prune602", - "indices": [ - 3, - 12 - ] - }, - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 14, - 29 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/uu41COAfCI", - "expanded_url": "https://twitter.com/Prune602/status/1739768579480842507/photo/1", - "id_str": "1739768574963511296", - "indices": [ - 95, - 118 - ], - "media_key": "3_1739768574963511296", - "media_url_https": "https://pbs.twimg.com/media/GCTmTR4WcAA9JiS.jpg", - "source_status_id_str": "1739768579480842507", - "source_user_id_str": "1498461179890524161", - "type": "photo", - "url": "https://t.co/uu41COAfCI", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 520, - "y": 145, - "h": 172, - "w": 172 - } - ] - }, - "medium": { - "faces": [ - { - "x": 487, - "y": 135, - "h": 161, - "w": 161 - } - ] - }, - "small": { - "faces": [ - { - "x": 276, - "y": 77, - "h": 91, - "w": 91 - } - ] - }, - "orig": { - "faces": [ - { - "x": 520, - "y": 145, - "h": 172, - "w": 172 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @Prune602: @JuliaDavisNews Solovyov seems extra bitter. \n\n(YouTube kicked him off in 2022) https://t.co/uu41COAfCI", - "is_quote_status": true, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "quoted_status_id_str": "1500972345862889478", - "quoted_status_permalink": { - "url": "https://t.co/2MxP2PRB3z", - "expanded": "https://twitter.com/vrsoloviev/status/1500972345862889478", - "display": "twitter.com/vrsoloviev/sta…" - }, - "reply_count": 0, - "retweet_count": 9, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739769477963616677", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739768579480842507", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDk4NDYxMTc5ODkwNTI0MTYx", - "rest_id": "1498461179890524161", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Tue Mar 01 00:53:24 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Electrical/Power Systems Engineer, Queen of Anglo-Saxonia, ✏️*sigh* there will be typos, and spontaneous threads", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 12530, - "followers_count": 2864, - "friends_count": 192, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 84, - "location": "", - "media_count": 13271, - "name": "Prune60", - "normal_followers_count": 2864, - "pinned_tweet_ids_str": [ - "1628994623828885504" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1498461179890524161/1661909729", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1517279835999150082/Bte8DwHy_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Prune602", - "statuses_count": 31466, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739768579480842507" - ], - "editable_until_msecs": "1703631727000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "21230", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1500972345862889478", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDY4ODI2NTU=", - "rest_id": "146882655", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sat May 22 15:55:38 +0000 2010", - "default_profile": true, - "default_profile_image": false, - "description": "https://t.co/2FXUfgvo9s", - "entities": { - "description": { - "urls": [ - { - "display_url": "t.me/SolovievLive", - "expanded_url": "http://t.me/SolovievLive", - "url": "https://t.co/2FXUfgvo9s", - "indices": [ - 0, - 23 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "soloviev.live", - "expanded_url": "http://soloviev.live", - "url": "https://t.co/9WC1llTU68", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 4400, - "followers_count": 1444770, - "friends_count": 399, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5182, - "location": "Moscow", - "media_count": 5442, - "name": "Vladimir Soloviev", - "normal_followers_count": 1444770, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1170975520458203136/4eDVAZZa_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "VRSoloviev", - "statuses_count": 169080, - "translator_type": "regular", - "url": "https://t.co/9WC1llTU68", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1500972345862889478" - ], - "editable_until_msecs": "1646696468628", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": true, - "views": { - "state": "Enabled" - }, - "source": "SMMplanner", - "legacy": { - "bookmark_count": 16, - "bookmarked": false, - "created_at": "Mon Mar 07 23:11:08 +0000 2022", - "conversation_id_str": "1500972345862889478", - "display_text_range": [ - 0, - 72 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 1811, - "favorited": false, - "full_text": "❗️❗️❗️\n\nYOUTUBE удалил основной и резервный каналы проекта СоловьёвLive.", - "is_quote_status": false, - "lang": "ru", - "quote_count": 176, - "reply_count": 1332, - "retweet_count": 260, - "retweeted": false, - "user_id_str": "146882655", - "id_str": "1500972345862889478" - } - } - }, - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 22:02:07 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 16, - 80 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/uu41COAfCI", - "expanded_url": "https://twitter.com/Prune602/status/1739768579480842507/photo/1", - "id_str": "1739768574963511296", - "indices": [ - 81, - 104 - ], - "media_key": "3_1739768574963511296", - "media_url_https": "https://pbs.twimg.com/media/GCTmTR4WcAA9JiS.jpg", - "type": "photo", - "url": "https://t.co/uu41COAfCI", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 520, - "y": 145, - "h": 172, - "w": 172 - } - ] - }, - "medium": { - "faces": [ - { - "x": 487, - "y": 135, - "h": 161, - "w": 161 - } - ] - }, - "small": { - "faces": [ - { - "x": 276, - "y": 77, - "h": 91, - "w": 91 - } - ] - }, - "orig": { - "faces": [ - { - "x": 520, - "y": 145, - "h": 172, - "w": 172 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/uu41COAfCI", - "expanded_url": "https://twitter.com/Prune602/status/1739768579480842507/photo/1", - "id_str": "1739768574963511296", - "indices": [ - 81, - 104 - ], - "media_key": "3_1739768574963511296", - "media_url_https": "https://pbs.twimg.com/media/GCTmTR4WcAA9JiS.jpg", - "type": "photo", - "url": "https://t.co/uu41COAfCI", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 520, - "y": 145, - "h": 172, - "w": 172 - } - ] - }, - "medium": { - "faces": [ - { - "x": 487, - "y": 135, - "h": 161, - "w": 161 - } - ] - }, - "small": { - "faces": [ - { - "x": 276, - "y": 77, - "h": 91, - "w": 91 - } - ] - }, - "orig": { - "faces": [ - { - "x": 520, - "y": 145, - "h": 172, - "w": 172 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ] - }, - "favorite_count": 49, - "favorited": false, - "full_text": "@JuliaDavisNews Solovyov seems extra bitter. \n\n(YouTube kicked him off in 2022) https://t.co/uu41COAfCI", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1739753183243633015", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": true, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "quoted_status_id_str": "1500972345862889478", - "quoted_status_permalink": { - "url": "https://t.co/2MxP2PRB3z", - "expanded": "https://twitter.com/vrsoloviev/status/1500972345862889478", - "display": "twitter.com/vrsoloviev/sta…" - }, - "reply_count": 1, - "retweet_count": 9, - "retweeted": false, - "user_id_str": "1498461179890524161", - "id_str": "1739768579480842507" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739769466064437657", - "sortIndex": "1739819664587882472", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739769466064437657", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxOTY3MjE2MzA2", - "rest_id": "1967216306", - "affiliates_highlighted_label": { - "label": { - "url": { - "url": "https://twitter.com/StateDept", - "urlType": "DeepLink" - }, - "badge": { - "url": "https://pbs.twimg.com/profile_images/1653450164210630659/oPRqz0j6_bigger.jpg" - }, - "description": "Department of State", - "userLabelType": "BusinessLabel", - "userLabelDisplayType": "Badge" - } - }, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Thu Oct 17 16:56:51 +0000 2013", - "default_profile": false, - "default_profile_image": false, - "description": "The official account of @StateDept’s Spokesperson serving under the leadership of the 71st Secretary of State @SecBlinken.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "state.gov/newsroom", - "expanded_url": "https://state.gov/newsroom", - "url": "https://t.co/uYwa4Ko0Is", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 64, - "followers_count": 603449, - "friends_count": 33, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 4253, - "location": "Dept. of State, Washington, DC", - "media_count": 2347, - "name": "Matthew Miller", - "normal_followers_count": 603449, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1967216306/1611162076", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1650603643685462016/2ChXxNhb_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "StateDeptSpox", - "statuses_count": 13946, - "translator_type": "none", - "url": "https://t.co/uYwa4Ko0Is", - "verified": false, - "verified_type": "Government", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739769466064437657" - ], - "editable_until_msecs": "1703631938000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "8832", - "state": "EnabledWithCount" - }, - "source": "Twitter Media Studio", - "legacy": { - "bookmark_count": 13, - "bookmarked": false, - "created_at": "Tue Dec 26 22:05:38 +0000 2023", - "conversation_id_str": "1739769466064437657", - "display_text_range": [ - 0, - 252 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/uRRZQ1jElu", - "expanded_url": "https://twitter.com/StateDeptSpox/status/1739769466064437657/video/1", - "id_str": "1739707684260134912", - "indices": [ - 253, - 276 - ], - "media_key": "13_1739707684260134912", - "media_url_https": "https://pbs.twimg.com/media/GCSxzwxWIAAwuxw.jpg", - "source_user_id_str": "9624742", - "type": "video", - "url": "https://t.co/uRRZQ1jElu", - "additional_media_info": { - "title": "", - "description": "", - "embeddable": true, - "monetizable": false, - "source_user": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo5NjI0NzQy", - "rest_id": "9624742", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Oct 23 15:02:45 +0000 2007", - "default_profile": false, - "default_profile_image": false, - "description": "Welcome to the U.S. Department of State Twitter account. Follow @SecBlinken for more from the Secretary. For all Department accounts: https://t.co/VpbtF1LASc.", - "entities": { - "description": { - "urls": [ - { - "display_url": "state.gov/social", - "expanded_url": "http://state.gov/social", - "url": "https://t.co/VpbtF1LASc", - "indices": [ - 134, - 157 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "state.gov", - "expanded_url": "http://www.state.gov", - "url": "https://t.co/SgIxdhGlWz", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 53, - "followers_count": 6422354, - "friends_count": 342, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 24436, - "location": "Washington, DC", - "media_count": 16649, - "name": "Department of State", - "normal_followers_count": 6422354, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/9624742/1683047656", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1653450164210630659/oPRqz0j6_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "StateDept", - "statuses_count": 81377, - "translator_type": "regular", - "url": "https://t.co/SgIxdhGlWz", - "verified": false, - "verified_type": "Government", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - } - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 1080, - "w": 1920, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1080, - "width": 1920, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 320, - 169 - ], - "duration_millis": 481130, - "variants": [ - { - "bitrate": 2176000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739707684260134912/vid/avc1/1280x676/tpd7wBxhF67vUPEx.mp4?tag=14" - }, - { - "bitrate": 288000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739707684260134912/vid/avc1/510x270/sZvLuCT9fKjSMvxO.mp4?tag=14" - }, - { - "bitrate": 832000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739707684260134912/vid/avc1/680x360/Iqn5jnSpQLLGNFSE.mp4?tag=14" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/amplify_video/1739707684260134912/pl/2c3LSSxjmy-892jU.m3u8?tag=14&container=fmp4" - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "9624742", - "name": "Department of State", - "screen_name": "StateDept", - "indices": [ - 44, - 54 - ] - }, - { - "id_str": "834799740546056194", - "name": "Diplomatic Security Service", - "screen_name": "StateDeptDSS", - "indices": [ - 57, - 70 - ] - }, - { - "id_str": "1350150750966603777", - "name": "Secretary Antony Blinken", - "screen_name": "SecBlinken", - "indices": [ - 185, - 196 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/uRRZQ1jElu", - "expanded_url": "https://twitter.com/StateDeptSpox/status/1739769466064437657/video/1", - "id_str": "1739707684260134912", - "indices": [ - 253, - 276 - ], - "media_key": "13_1739707684260134912", - "media_url_https": "https://pbs.twimg.com/media/GCSxzwxWIAAwuxw.jpg", - "source_user_id_str": "9624742", - "type": "video", - "url": "https://t.co/uRRZQ1jElu", - "additional_media_info": { - "title": "", - "description": "", - "embeddable": true, - "monetizable": false, - "source_user": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo5NjI0NzQy", - "rest_id": "9624742", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Oct 23 15:02:45 +0000 2007", - "default_profile": false, - "default_profile_image": false, - "description": "Welcome to the U.S. Department of State Twitter account. Follow @SecBlinken for more from the Secretary. For all Department accounts: https://t.co/VpbtF1LASc.", - "entities": { - "description": { - "urls": [ - { - "display_url": "state.gov/social", - "expanded_url": "http://state.gov/social", - "url": "https://t.co/VpbtF1LASc", - "indices": [ - 134, - 157 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "state.gov", - "expanded_url": "http://www.state.gov", - "url": "https://t.co/SgIxdhGlWz", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 53, - "followers_count": 6422354, - "friends_count": 342, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 24436, - "location": "Washington, DC", - "media_count": 16649, - "name": "Department of State", - "normal_followers_count": 6422354, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/9624742/1683047656", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1653450164210630659/oPRqz0j6_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "StateDept", - "statuses_count": 81377, - "translator_type": "regular", - "url": "https://t.co/SgIxdhGlWz", - "verified": false, - "verified_type": "Government", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - } - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 1080, - "w": 1920, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1080, - "width": 1920, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 320, - 169 - ], - "duration_millis": 481130, - "variants": [ - { - "bitrate": 2176000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739707684260134912/vid/avc1/1280x676/tpd7wBxhF67vUPEx.mp4?tag=14" - }, - { - "bitrate": 288000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739707684260134912/vid/avc1/510x270/sZvLuCT9fKjSMvxO.mp4?tag=14" - }, - { - "bitrate": 832000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739707684260134912/vid/avc1/680x360/Iqn5jnSpQLLGNFSE.mp4?tag=14" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/amplify_video/1739707684260134912/pl/2c3LSSxjmy-892jU.m3u8?tag=14&container=fmp4" - } - ] - } - } - ] - }, - "favorite_count": 77, - "favorited": false, - "full_text": "The law enforcement and security arm of the @StateDept, \n@StateDeptDSS protects people, property, and information at 275 embassies, consulates, and smaller posts around the world. See \n@SecBlinken tour the Diplomatic Security Service training facility. https://t.co/uRRZQ1jElu", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 4, - "reply_count": 103, - "retweet_count": 29, - "retweeted": false, - "user_id_str": "1967216306", - "id_str": "1739769466064437657" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739767837072220626", - "sortIndex": "1739819664587882471", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739767837072220626", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739767837072220626" - ], - "editable_until_msecs": "1703631550338", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:59:10 +0000 2023", - "conversation_id_str": "1739767837072220626", - "display_text_range": [ - 0, - 123 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "2367620634", - "name": "Jamming", - "screen_name": "balticjam", - "indices": [ - 3, - 13 - ] - }, - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 108, - 123 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @balticjam: ”…Solovyov complained about palace intrigues and thanked the Kremlin for protecting him.”, \n\n@JuliaDavisNews", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 7, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739767837072220626", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739766999457169457", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyMzY3NjIwNjM0", - "rest_id": "2367620634", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Sat Mar 01 21:05:46 +0000 2014", - "default_profile": true, - "default_profile_image": false, - "description": "Tracking Military Aircraft & Activity in Northern Europe, as therapy to feel safe in the Baltics. I am PRO NATO & EU. I have no military background.", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 143909, - "followers_count": 13362, - "friends_count": 522, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 344, - "location": "Riga, Latvia", - "media_count": 7839, - "name": "Jamming", - "normal_followers_count": 13362, - "pinned_tweet_ids_str": [ - "1512137665180753923" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2367620634/1648303719", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1184554463895412743/yk0r7Imq_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "balticjam", - "statuses_count": 33980, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739766999457169457" - ], - "editable_until_msecs": "1703631350000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "15545", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:55:50 +0000 2023", - "conversation_id_str": "1739766999457169457", - "display_text_range": [ - 0, - 108 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 93, - 108 - ] - } - ] - }, - "favorite_count": 29, - "favorited": false, - "full_text": "”…Solovyov complained about palace intrigues and thanked the Kremlin for protecting him.”, \n\n@JuliaDavisNews", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 1, - "retweet_count": 7, - "retweeted": false, - "user_id_str": "2367620634", - "id_str": "1739766999457169457" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739767739906982133", - "sortIndex": "1739819664587882470", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739767739906982133", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739767739906982133" - ], - "editable_until_msecs": "1703631527172", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:58:47 +0000 2023", - "conversation_id_str": "1739767739906982133", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1498461179890524161", - "name": "Prune60", - "screen_name": "Prune602", - "indices": [ - 3, - 12 - ] - }, - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 14, - 29 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @Prune602: @JuliaDavisNews “We, the pathetic savages, are ruling this country!”\n\n~ Vladimir Solovyov\n\nAnd he wonders why people don’t li…", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 7, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739767739906982133", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739767638744506506", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDk4NDYxMTc5ODkwNTI0MTYx", - "rest_id": "1498461179890524161", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Tue Mar 01 00:53:24 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Electrical/Power Systems Engineer, Queen of Anglo-Saxonia, ✏️*sigh* there will be typos, and spontaneous threads", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 12530, - "followers_count": 2864, - "friends_count": 192, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 84, - "location": "", - "media_count": 13271, - "name": "Prune60", - "normal_followers_count": 2864, - "pinned_tweet_ids_str": [ - "1628994623828885504" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1498461179890524161/1661909729", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1517279835999150082/Bte8DwHy_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Prune602", - "statuses_count": 31466, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739767638744506506" - ], - "editable_until_msecs": "1703631503000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "13002", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:58:23 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 16, - 132 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/NYklhXiAwm", - "expanded_url": "https://twitter.com/Prune602/status/1739767638744506506/photo/1", - "id_str": "1739767633942069248", - "indices": [ - 133, - 156 - ], - "media_key": "3_1739767633942069248", - "media_url_https": "https://pbs.twimg.com/media/GCTlcgTWwAA-i3Y.jpg", - "type": "photo", - "url": "https://t.co/NYklhXiAwm", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 0, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 44, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/NYklhXiAwm", - "expanded_url": "https://twitter.com/Prune602/status/1739767638744506506/photo/1", - "id_str": "1739767633942069248", - "indices": [ - 133, - 156 - ], - "media_key": "3_1739767633942069248", - "media_url_https": "https://pbs.twimg.com/media/GCTlcgTWwAA-i3Y.jpg", - "type": "photo", - "url": "https://t.co/NYklhXiAwm", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 0, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 44, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ] - }, - "favorite_count": 61, - "favorited": false, - "full_text": "@JuliaDavisNews “We, the pathetic savages, are ruling this country!”\n\n~ Vladimir Solovyov\n\nAnd he wonders why people don’t like him. https://t.co/NYklhXiAwm", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1739753183243633015", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 1, - "retweet_count": 7, - "retweeted": false, - "user_id_str": "1498461179890524161", - "id_str": "1739767638744506506" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739767571782443245", - "sortIndex": "1739819664587882469", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739767571782443245", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyOTAxMDcxMA==", - "rest_id": "29010710", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Sun Apr 05 16:13:47 +0000 2009", - "default_profile": true, - "default_profile_image": false, - "description": "Nationality: journalist. Freelancer, made in the BBC. Reporting what you need to know, not what you want to hear. Also, Lonely Planet guides.", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 21152, - "followers_count": 71447, - "friends_count": 4528, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 2098, - "location": "", - "media_count": 5820, - "name": "Leonid ХВ Ragozin", - "normal_followers_count": 71447, - "pinned_tweet_ids_str": [ - "1729962328265748716" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/29010710/1610454802", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1098307078991593474/vBl5zWMc_normal.png", - "profile_interstitial_type": "", - "screen_name": "leonidragozin", - "statuses_count": 63823, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1630527445676818432", - "professional_type": "Business", - "category": [ - { - "id": 579, - "name": "Media & News", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739767571782443245" - ], - "editable_until_msecs": "1703631487000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "4408", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739740383209533513", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMzQ4NzM4MzY0OTg4Njc0MDUx", - "rest_id": "1348738364988674051", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Mon Jan 11 21:10:53 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "OEI, FU Berlin. Revolutions, left&right, violence, civil society, nationalism in Ukraine and beyond. Book: Towards the Abyss, Verso. https://t.co/MgRObbuX7L", - "entities": { - "description": { - "urls": [ - { - "display_url": "rb.gy/s5otx", - "expanded_url": "https://rb.gy/s5otx", - "url": "https://t.co/MgRObbuX7L", - "indices": [ - 133, - 156 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "fu-berlin.academia.edu/VolodymyrIshch…", - "expanded_url": "https://fu-berlin.academia.edu/VolodymyrIshchenko", - "url": "https://t.co/8BUHFRLYoI", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 6646, - "followers_count": 13150, - "friends_count": 231, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 201, - "location": "Dresden, Sachsen", - "media_count": 189, - "name": "Volodymyr Ishchenko", - "normal_followers_count": 13150, - "pinned_tweet_ids_str": [ - "1721878854506311886" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1348738364988674051/1614505853", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1537800575462563840/Ow3Xsv73_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Volod_Ishchenko", - "statuses_count": 3114, - "translator_type": "none", - "url": "https://t.co/8BUHFRLYoI", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/f1QXEaiwFO", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1737520397724069888/X45yycql?format=png&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 200, - "width": 400, - "url": "https://pbs.twimg.com/card_img/1737520397724069888/X45yycql?format=png&name=400x400" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "Ishchenko explores the paradoxes of a politics of national-identity recognition in the absence of national-economic redistribution. What does it mean to ‘decolonize Ukraine’ in neoliberal times?", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "newleftreview.org", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 300, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737520397724069888/X45yycql?format=png&name=600x600" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737520397724069888/X45yycql?format=png&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 426, - "width": 851, - "url": "https://pbs.twimg.com/card_img/1737520397724069888/X45yycql?format=png&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "913447502", - "path": [] - } - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737520397724069888/X45yycql?format=png&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1737520397724069888/X45yycql?format=png&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 72, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1737520397724069888/X45yycql?format=png&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "creator", - "value": { - "type": "USER", - "user_value": { - "id_str": "913447502", - "path": [] - } - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 426, - "width": 851, - "url": "https://pbs.twimg.com/card_img/1737520397724069888/X45yycql?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 426, - "width": 851, - "url": "https://pbs.twimg.com/card_img/1737520397724069888/X45yycql?format=png&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "newleftreview.org", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737520397724069888/X45yycql?format=png&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 94, - "green": 57, - "red": 60 - }, - "percentage": 90.97 - }, - { - "rgb": { - "blue": 35, - "green": 134, - "red": 173 - }, - "percentage": 2.7 - }, - { - "rgb": { - "blue": 150, - "green": 164, - "red": 123 - }, - "percentage": 2.45 - }, - { - "rgb": { - "blue": 161, - "green": 185, - "red": 223 - }, - "percentage": 2.27 - }, - { - "rgb": { - "blue": 64, - "green": 96, - "red": 117 - }, - "percentage": 0.82 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Volodymyr Ishchenko, Ukrainian Voices?, NLR 138, November–December 2022", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 94, - "green": 57, - "red": 60 - }, - "percentage": 90.97 - }, - { - "rgb": { - "blue": 35, - "green": 134, - "red": 173 - }, - "percentage": 2.7 - }, - { - "rgb": { - "blue": 150, - "green": 164, - "red": 123 - }, - "percentage": 2.45 - }, - { - "rgb": { - "blue": 161, - "green": 185, - "red": 223 - }, - "percentage": 2.27 - }, - { - "rgb": { - "blue": 64, - "green": 96, - "red": 117 - }, - "percentage": 0.82 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 426, - "width": 851, - "url": "https://pbs.twimg.com/card_img/1737520397724069888/X45yycql?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737520397724069888/X45yycql?format=png&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 94, - "green": 57, - "red": 60 - }, - "percentage": 90.97 - }, - { - "rgb": { - "blue": 35, - "green": 134, - "red": 173 - }, - "percentage": 2.7 - }, - { - "rgb": { - "blue": 150, - "green": 164, - "red": 123 - }, - "percentage": 2.45 - }, - { - "rgb": { - "blue": 161, - "green": 185, - "red": 223 - }, - "percentage": 2.27 - }, - { - "rgb": { - "blue": 64, - "green": 96, - "red": 117 - }, - "percentage": 0.82 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 426, - "width": 851, - "url": "https://pbs.twimg.com/card_img/1737520397724069888/X45yycql?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/f1QXEaiwFO", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 426, - "width": 851, - "url": "https://pbs.twimg.com/card_img/1737520397724069888/X45yycql?format=png&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/f1QXEaiwFO", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjo5MTM0NDc1MDI=", - "rest_id": "913447502", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Oct 29 23:19:23 +0000 2012", - "default_profile": false, - "default_profile_image": false, - "description": "Left-wing journal of ideas covering world politics, global economy, movements, theory, history, culture and more.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "newleftreview.org", - "expanded_url": "http://newleftreview.org", - "url": "https://t.co/9UIet260Dj", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 1056, - "followers_count": 78004, - "friends_count": 84, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1103, - "location": "London", - "media_count": 387, - "name": "New Left Review", - "normal_followers_count": 78004, - "pinned_tweet_ids_str": [ - "1722263380369793110" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/913447502/1702542714", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1735216020791435265/g0DwoJ2A_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "NewLeftReview", - "statuses_count": 3610, - "translator_type": "none", - "url": "https://t.co/9UIet260Dj", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1493922857604292615", - "professional_type": "Business", - "category": [ - { - "id": 580, - "name": "Media & News Company", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - { - "result": { - "__typename": "User", - "id": "VXNlcjo5MTM0NDc1MDI=", - "rest_id": "913447502", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Oct 29 23:19:23 +0000 2012", - "default_profile": false, - "default_profile_image": false, - "description": "Left-wing journal of ideas covering world politics, global economy, movements, theory, history, culture and more.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "newleftreview.org", - "expanded_url": "http://newleftreview.org", - "url": "https://t.co/9UIet260Dj", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 1056, - "followers_count": 78004, - "friends_count": 84, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1103, - "location": "London", - "media_count": 387, - "name": "New Left Review", - "normal_followers_count": 78004, - "pinned_tweet_ids_str": [ - "1722263380369793110" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/913447502/1702542714", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1735216020791435265/g0DwoJ2A_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "NewLeftReview", - "statuses_count": 3610, - "translator_type": "none", - "url": "https://t.co/9UIet260Dj", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1493922857604292615", - "professional_type": "Business", - "category": [ - { - "id": 580, - "name": "Media & News Company", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739740383209533513" - ], - "editable_until_msecs": "1703625004000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "27390", - "state": "EnabledWithCount" - }, - "source": "Typefully", - "legacy": { - "bookmark_count": 136, - "bookmarked": false, - "created_at": "Tue Dec 26 20:10:04 +0000 2023", - "conversation_id_str": "1739740383209533513", - "display_text_range": [ - 0, - 262 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "newleftreview.org/issues/ii138/a…", - "expanded_url": "https://newleftreview.org/issues/ii138/articles/volodymyr-ishchenko-ukrainian-voices", - "url": "https://t.co/f1QXEaiwFO", - "indices": [ - 239, - 262 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 208, - "favorited": false, - "full_text": "I have been working on the essay for about half a year, and it grew out of reflection and accumulated irritation about how Ukraine and Ukrainians have been represented in many public events. However, there was actually a specific trigger.\nhttps://t.co/f1QXEaiwFO", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 9, - "reply_count": 3, - "retweet_count": 38, - "retweeted": false, - "user_id_str": "1348738364988674051", - "id_str": "1739740383209533513" - } - } - }, - "legacy": { - "bookmark_count": 4, - "bookmarked": false, - "created_at": "Tue Dec 26 21:58:07 +0000 2023", - "conversation_id_str": "1739767571782443245", - "display_text_range": [ - 0, - 248 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 26, - "favorited": false, - "full_text": "“the country that jumped from the European agrarian periphery to the cutting edge of space exploration and cybernetics in the space of just two generations—and then, in the life of the next, turned into the northernmost country of the Global South”", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1739740383209533513", - "quoted_status_permalink": { - "url": "https://t.co/f1gQFBD0CY", - "expanded": "https://twitter.com/volod_ishchenko/status/1739740383209533513", - "display": "twitter.com/volod_ishchenk…" - }, - "reply_count": 0, - "retweet_count": 5, - "retweeted": false, - "user_id_str": "29010710", - "id_str": "1739767571782443245" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739767525464825869", - "sortIndex": "1739819664587882468", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739767525464825869", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739767525464825869" - ], - "editable_until_msecs": "1703631476045", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:57:56 +0000 2023", - "conversation_id_str": "1739767525464825869", - "display_text_range": [ - 0, - 100 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/yYjqFYO2QQ", - "expanded_url": "https://twitter.com/Prune602/status/1739756385720566036/photo/1", - "id_str": "1739756381127761920", - "indices": [ - 77, - 100 - ], - "media_key": "3_1739756381127761920", - "media_url_https": "https://pbs.twimg.com/media/GCTbNgTW4AAOfDn.jpg", - "source_status_id_str": "1739756385720566036", - "source_user_id_str": "1498461179890524161", - "type": "photo", - "url": "https://t.co/yYjqFYO2QQ", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 683, - "y": 228, - "h": 61, - "w": 61 - }, - { - "x": 528, - "y": 185, - "h": 153, - "w": 153 - } - ] - }, - "medium": { - "faces": [ - { - "x": 640, - "y": 213, - "h": 57, - "w": 57 - }, - { - "x": 495, - "y": 173, - "h": 143, - "w": 143 - } - ] - }, - "small": { - "faces": [ - { - "x": 362, - "y": 121, - "h": 32, - "w": 32 - }, - { - "x": 280, - "y": 98, - "h": 81, - "w": 81 - } - ] - }, - "orig": { - "faces": [ - { - "x": 683, - "y": 228, - "h": 61, - "w": 61 - }, - { - "x": 528, - "y": 185, - "h": 153, - "w": 153 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 248, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 292, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 428, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1498461179890524161", - "name": "Prune60", - "screen_name": "Prune602", - "indices": [ - 3, - 12 - ] - }, - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 14, - 29 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/yYjqFYO2QQ", - "expanded_url": "https://twitter.com/Prune602/status/1739756385720566036/photo/1", - "id_str": "1739756381127761920", - "indices": [ - 77, - 100 - ], - "media_key": "3_1739756381127761920", - "media_url_https": "https://pbs.twimg.com/media/GCTbNgTW4AAOfDn.jpg", - "source_status_id_str": "1739756385720566036", - "source_user_id_str": "1498461179890524161", - "type": "photo", - "url": "https://t.co/yYjqFYO2QQ", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 683, - "y": 228, - "h": 61, - "w": 61 - }, - { - "x": 528, - "y": 185, - "h": 153, - "w": 153 - } - ] - }, - "medium": { - "faces": [ - { - "x": 640, - "y": 213, - "h": 57, - "w": 57 - }, - { - "x": 495, - "y": 173, - "h": 143, - "w": 143 - } - ] - }, - "small": { - "faces": [ - { - "x": 362, - "y": 121, - "h": 32, - "w": 32 - }, - { - "x": 280, - "y": 98, - "h": 81, - "w": 81 - } - ] - }, - "orig": { - "faces": [ - { - "x": 683, - "y": 228, - "h": 61, - "w": 61 - }, - { - "x": 528, - "y": 185, - "h": 153, - "w": 153 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 248, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 292, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 428, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @Prune602: @JuliaDavisNews “They hate me!”\n\n~ Vladimir Solovyov\n\nProbably https://t.co/yYjqFYO2QQ", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 0, - "retweet_count": 5, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739767525464825869", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739756385720566036", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDk4NDYxMTc5ODkwNTI0MTYx", - "rest_id": "1498461179890524161", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Tue Mar 01 00:53:24 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Electrical/Power Systems Engineer, Queen of Anglo-Saxonia, ✏️*sigh* there will be typos, and spontaneous threads", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 12530, - "followers_count": 2864, - "friends_count": 192, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 84, - "location": "", - "media_count": 13271, - "name": "Prune60", - "normal_followers_count": 2864, - "pinned_tweet_ids_str": [ - "1628994623828885504" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1498461179890524161/1661909729", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1517279835999150082/Bte8DwHy_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Prune602", - "statuses_count": 31466, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739756385720566036" - ], - "editable_until_msecs": "1703628820000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "32069", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 1, - "bookmarked": false, - "created_at": "Tue Dec 26 21:13:40 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 16, - 62 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/yYjqFYO2QQ", - "expanded_url": "https://twitter.com/Prune602/status/1739756385720566036/photo/1", - "id_str": "1739756381127761920", - "indices": [ - 63, - 86 - ], - "media_key": "3_1739756381127761920", - "media_url_https": "https://pbs.twimg.com/media/GCTbNgTW4AAOfDn.jpg", - "type": "photo", - "url": "https://t.co/yYjqFYO2QQ", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 683, - "y": 228, - "h": 61, - "w": 61 - }, - { - "x": 528, - "y": 185, - "h": 153, - "w": 153 - } - ] - }, - "medium": { - "faces": [ - { - "x": 640, - "y": 213, - "h": 57, - "w": 57 - }, - { - "x": 495, - "y": 173, - "h": 143, - "w": 143 - } - ] - }, - "small": { - "faces": [ - { - "x": 362, - "y": 121, - "h": 32, - "w": 32 - }, - { - "x": 280, - "y": 98, - "h": 81, - "w": 81 - } - ] - }, - "orig": { - "faces": [ - { - "x": 683, - "y": 228, - "h": 61, - "w": 61 - }, - { - "x": 528, - "y": 185, - "h": 153, - "w": 153 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 248, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 292, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 428, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/yYjqFYO2QQ", - "expanded_url": "https://twitter.com/Prune602/status/1739756385720566036/photo/1", - "id_str": "1739756381127761920", - "indices": [ - 63, - 86 - ], - "media_key": "3_1739756381127761920", - "media_url_https": "https://pbs.twimg.com/media/GCTbNgTW4AAOfDn.jpg", - "type": "photo", - "url": "https://t.co/yYjqFYO2QQ", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 683, - "y": 228, - "h": 61, - "w": 61 - }, - { - "x": 528, - "y": 185, - "h": 153, - "w": 153 - } - ] - }, - "medium": { - "faces": [ - { - "x": 640, - "y": 213, - "h": 57, - "w": 57 - }, - { - "x": 495, - "y": 173, - "h": 143, - "w": 143 - } - ] - }, - "small": { - "faces": [ - { - "x": 362, - "y": 121, - "h": 32, - "w": 32 - }, - { - "x": 280, - "y": 98, - "h": 81, - "w": 81 - } - ] - }, - "orig": { - "faces": [ - { - "x": 683, - "y": 228, - "h": 61, - "w": 61 - }, - { - "x": 528, - "y": 185, - "h": 153, - "w": 153 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 248, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 292, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 428, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ] - }, - "favorite_count": 75, - "favorited": false, - "full_text": "@JuliaDavisNews “They hate me!”\n\n~ Vladimir Solovyov\n\nProbably https://t.co/yYjqFYO2QQ", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1739753183243633015", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 1, - "reply_count": 4, - "retweet_count": 5, - "retweeted": false, - "user_id_str": "1498461179890524161", - "id_str": "1739756385720566036" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739767471073018210", - "sortIndex": "1739819664587882467", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739767471073018210", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739767471073018210" - ], - "editable_until_msecs": "1703631463077", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:57:43 +0000 2023", - "conversation_id_str": "1739767471073018210", - "display_text_range": [ - 0, - 85 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/TfMqipN2or", - "expanded_url": "https://twitter.com/globeearthshil/status/1739756645360505101/photo/1", - "id_str": "1739756532282142720", - "indices": [ - 62, - 85 - ], - "media_key": "3_1739756532282142720", - "media_url_https": "https://pbs.twimg.com/media/GCTbWTZXsAA_77R.jpg", - "source_status_id_str": "1739756645360505101", - "source_user_id_str": "1497613807774056449", - "type": "photo", - "url": "https://t.co/TfMqipN2or", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 527, - "y": 120, - "h": 174, - "w": 174 - } - ] - }, - "medium": { - "faces": [ - { - "x": 493, - "y": 112, - "h": 162, - "w": 162 - } - ] - }, - "small": { - "faces": [ - { - "x": 279, - "y": 63, - "h": 92, - "w": 92 - } - ] - }, - "orig": { - "faces": [ - { - "x": 527, - "y": 120, - "h": 174, - "w": 174 - } - ] - } - }, - "sizes": { - "large": { - "h": 721, - "w": 1282, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 382, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 721, - "width": 1282, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1282, - "h": 718 - }, - { - "x": 0, - "y": 0, - "w": 721, - "h": 721 - }, - { - "x": 0, - "y": 0, - "w": 632, - "h": 721 - }, - { - "x": 0, - "y": 0, - "w": 361, - "h": 721 - }, - { - "x": 0, - "y": 0, - "w": 1282, - "h": 721 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1497613807774056449", - "name": "Alexander Potatoshenko", - "screen_name": "globeearthshil", - "indices": [ - 3, - 18 - ] - }, - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 20, - 35 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/TfMqipN2or", - "expanded_url": "https://twitter.com/globeearthshil/status/1739756645360505101/photo/1", - "id_str": "1739756532282142720", - "indices": [ - 62, - 85 - ], - "media_key": "3_1739756532282142720", - "media_url_https": "https://pbs.twimg.com/media/GCTbWTZXsAA_77R.jpg", - "source_status_id_str": "1739756645360505101", - "source_user_id_str": "1497613807774056449", - "type": "photo", - "url": "https://t.co/TfMqipN2or", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 527, - "y": 120, - "h": 174, - "w": 174 - } - ] - }, - "medium": { - "faces": [ - { - "x": 493, - "y": 112, - "h": 162, - "w": 162 - } - ] - }, - "small": { - "faces": [ - { - "x": 279, - "y": 63, - "h": 92, - "w": 92 - } - ] - }, - "orig": { - "faces": [ - { - "x": 527, - "y": 120, - "h": 174, - "w": 174 - } - ] - } - }, - "sizes": { - "large": { - "h": 721, - "w": 1282, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 382, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 721, - "width": 1282, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1282, - "h": 718 - }, - { - "x": 0, - "y": 0, - "w": 721, - "h": 721 - }, - { - "x": 0, - "y": 0, - "w": 632, - "h": 721 - }, - { - "x": 0, - "y": 0, - "w": 361, - "h": 721 - }, - { - "x": 0, - "y": 0, - "w": 1282, - "h": 721 - } - ] - } - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @globeearthshil: @JuliaDavisNews He's figuring it out lol. https://t.co/TfMqipN2or", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 0, - "retweet_count": 13, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739767471073018210", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739756645360505101", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDk3NjEzODA3Nzc0MDU2NDQ5", - "rest_id": "1497613807774056449", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sat Feb 26 16:45:38 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "I am Alexander Potatoshenko.\nI am the Dictator of the Belaspud people.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "president.gov.by", - "expanded_url": "https://president.gov.by/", - "url": "https://t.co/5rUdlyhEtW", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 382, - "followers_count": 89, + "favourites_count": 307, + "followers_count": 2090013, "friends_count": 27, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 2, - "location": "Belapotato", - "media_count": 947, - "name": "Alexander Potatoshenko", - "normal_followers_count": 89, - "pinned_tweet_ids_str": [ - "1595721995517399040" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1497613807774056449/1673012637", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1611357902496735235/ZYQBrKyh_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "globeearthshil", - "statuses_count": 3319, - "translator_type": "none", - "url": "https://t.co/5rUdlyhEtW", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739756645360505101" - ], - "editable_until_msecs": "1703628882000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "21788", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 1, - "bookmarked": false, - "created_at": "Tue Dec 26 21:14:42 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 16, - 41 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/TfMqipN2or", - "expanded_url": "https://twitter.com/globeearthshil/status/1739756645360505101/photo/1", - "id_str": "1739756532282142720", - "indices": [ - 42, - 65 - ], - "media_key": "3_1739756532282142720", - "media_url_https": "https://pbs.twimg.com/media/GCTbWTZXsAA_77R.jpg", - "type": "photo", - "url": "https://t.co/TfMqipN2or", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 527, - "y": 120, - "h": 174, - "w": 174 - } - ] - }, - "medium": { - "faces": [ - { - "x": 493, - "y": 112, - "h": 162, - "w": 162 - } - ] - }, - "small": { - "faces": [ - { - "x": 279, - "y": 63, - "h": 92, - "w": 92 - } - ] - }, - "orig": { - "faces": [ - { - "x": 527, - "y": 120, - "h": 174, - "w": 174 - } - ] - } - }, - "sizes": { - "large": { - "h": 721, - "w": 1282, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 382, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 721, - "width": 1282, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1282, - "h": 718 - }, - { - "x": 0, - "y": 0, - "w": 721, - "h": 721 - }, - { - "x": 0, - "y": 0, - "w": 632, - "h": 721 - }, - { - "x": 0, - "y": 0, - "w": 361, - "h": 721 - }, - { - "x": 0, - "y": 0, - "w": 1282, - "h": 721 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/TfMqipN2or", - "expanded_url": "https://twitter.com/globeearthshil/status/1739756645360505101/photo/1", - "id_str": "1739756532282142720", - "indices": [ - 42, - 65 - ], - "media_key": "3_1739756532282142720", - "media_url_https": "https://pbs.twimg.com/media/GCTbWTZXsAA_77R.jpg", - "type": "photo", - "url": "https://t.co/TfMqipN2or", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 527, - "y": 120, - "h": 174, - "w": 174 - } - ] - }, - "medium": { - "faces": [ - { - "x": 493, - "y": 112, - "h": 162, - "w": 162 - } - ] - }, - "small": { - "faces": [ - { - "x": 279, - "y": 63, - "h": 92, - "w": 92 - } - ] - }, - "orig": { - "faces": [ - { - "x": 527, - "y": 120, - "h": 174, - "w": 174 - } - ] - } - }, - "sizes": { - "large": { - "h": 721, - "w": 1282, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 382, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 721, - "width": 1282, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1282, - "h": 718 - }, - { - "x": 0, - "y": 0, - "w": 721, - "h": 721 - }, - { - "x": 0, - "y": 0, - "w": 632, - "h": 721 - }, - { - "x": 0, - "y": 0, - "w": 361, - "h": 721 - }, - { - "x": 0, - "y": 0, - "w": 1282, - "h": 721 - } - ] - } - } - ] - }, - "favorite_count": 128, - "favorited": false, - "full_text": "@JuliaDavisNews He's figuring it out lol. https://t.co/TfMqipN2or", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1739753183243633015", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 0, - "retweet_count": 13, - "retweeted": false, - "user_id_str": "1497613807774056449", - "id_str": "1739756645360505101" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739767298699727343", - "sortIndex": "1739819664587882466", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739767298699727343", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739767298699727343" - ], - "editable_until_msecs": "1703631421980", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:57:01 +0000 2023", - "conversation_id_str": "1739767298699727343", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1498461179890524161", - "name": "Prune60", - "screen_name": "Prune602", - "indices": [ - 3, - 12 - ] - }, - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 14, - 29 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @Prune602: @JuliaDavisNews “Everything is being done to silence my words! Happily, the Kremlin has a different position!…That’s why I ha…", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1643108654181236736", - "quoted_status_permalink": { - "url": "https://t.co/1PFs825gOx", - "expanded": "https://twitter.com/prune602/status/1643108654181236736", - "display": "twitter.com/prune602/statu…" - }, - "reply_count": 0, - "retweet_count": 9, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739767298699727343", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739757359814045754", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDk4NDYxMTc5ODkwNTI0MTYx", - "rest_id": "1498461179890524161", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Tue Mar 01 00:53:24 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Electrical/Power Systems Engineer, Queen of Anglo-Saxonia, ✏️*sigh* there will be typos, and spontaneous threads", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 12530, - "followers_count": 2864, - "friends_count": 192, "has_custom_timelines": true, "is_translator": false, - "listed_count": 84, - "location": "", - "media_count": 13271, - "name": "Prune60", - "normal_followers_count": 2864, - "pinned_tweet_ids_str": [ - "1628994623828885504" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1498461179890524161/1661909729", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1517279835999150082/Bte8DwHy_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Prune602", - "statuses_count": 31466, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739757359814045754" - ], - "editable_until_msecs": "1703629052000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "22290", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1643108654181236736", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDk4NDYxMTc5ODkwNTI0MTYx", - "rest_id": "1498461179890524161", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Tue Mar 01 00:53:24 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Electrical/Power Systems Engineer, Queen of Anglo-Saxonia, ✏️*sigh* there will be typos, and spontaneous threads", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 12530, - "followers_count": 2864, - "friends_count": 192, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 84, - "location": "", - "media_count": 13271, - "name": "Prune60", - "normal_followers_count": 2864, - "pinned_tweet_ids_str": [ - "1628994623828885504" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1498461179890524161/1661909729", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1517279835999150082/Bte8DwHy_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Prune602", - "statuses_count": 31466, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1643108654181236736" - ], - "editable_until_msecs": "1680584405000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "465524", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 6, - "bookmarked": false, - "created_at": "Tue Apr 04 04:30:05 +0000 2023", - "conversation_id_str": "1643107373446209536", - "display_text_range": [ - 16, - 142 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/PijddoMXxg", - "expanded_url": "https://twitter.com/Prune602/status/1643108654181236736/photo/1", - "id_str": "1643108650108571648", - "indices": [ - 143, - 166 - ], - "media_key": "3_1643108650108571648", - "media_url_https": "https://pbs.twimg.com/media/Fs1-nJkX0AAHkti.jpg", - "type": "photo", - "url": "https://t.co/PijddoMXxg", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 870, - "y": 210, - "h": 230, - "w": 230 - } - ] - }, - "medium": { - "faces": [ - { - "x": 509, - "y": 123, - "h": 134, - "w": 134 - } - ] - }, - "small": { - "faces": [ - { - "x": 288, - "y": 69, - "h": 76, - "w": 76 - } - ] - }, - "orig": { - "faces": [ - { - "x": 870, - "y": 210, - "h": 230, - "w": 230 - } - ] - } - }, - "sizes": { - "large": { - "h": 1152, - "w": 2048, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1152, - "width": 2048, - "focus_rects": [ - { - "x": 0, - "y": 5, - "w": 2048, - "h": 1147 - }, - { - "x": 896, - "y": 0, - "w": 1152, - "h": 1152 - }, - { - "x": 1037, - "y": 0, - "w": 1011, - "h": 1152 - }, - { - "x": 1472, - "y": 0, - "w": 576, - "h": 1152 - }, - { - "x": 0, - "y": 0, - "w": 2048, - "h": 1152 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/PijddoMXxg", - "expanded_url": "https://twitter.com/Prune602/status/1643108654181236736/photo/1", - "id_str": "1643108650108571648", - "indices": [ - 143, - 166 - ], - "media_key": "3_1643108650108571648", - "media_url_https": "https://pbs.twimg.com/media/Fs1-nJkX0AAHkti.jpg", - "type": "photo", - "url": "https://t.co/PijddoMXxg", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 870, - "y": 210, - "h": 230, - "w": 230 - } - ] - }, - "medium": { - "faces": [ - { - "x": 509, - "y": 123, - "h": 134, - "w": 134 - } - ] - }, - "small": { - "faces": [ - { - "x": 288, - "y": 69, - "h": 76, - "w": 76 - } - ] - }, - "orig": { - "faces": [ - { - "x": 870, - "y": 210, - "h": 230, - "w": 230 - } - ] - } - }, - "sizes": { - "large": { - "h": 1152, - "w": 2048, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1152, - "width": 2048, - "focus_rects": [ - { - "x": 0, - "y": 5, - "w": 2048, - "h": 1147 - }, - { - "x": 896, - "y": 0, - "w": 1152, - "h": 1152 - }, - { - "x": 1037, - "y": 0, - "w": 1011, - "h": 1152 - }, - { - "x": 1472, - "y": 0, - "w": 576, - "h": 1152 - }, - { - "x": 0, - "y": 0, - "w": 2048, - "h": 1152 - } - ] - } - } - ] - }, - "favorite_count": 260, - "favorited": false, - "full_text": "@JuliaDavisNews “You can fight the unclean only with holy fire”\n\n~ Vladimir Solovyov\n\nThis is dehumanization, a type of Incitement to Genocide https://t.co/PijddoMXxg", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1643107373446209536", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 10, - "reply_count": 15, - "retweet_count": 52, - "retweeted": false, - "user_id_str": "1498461179890524161", - "id_str": "1643108654181236736" - } - } - }, - "legacy": { - "bookmark_count": 2, - "bookmarked": false, - "created_at": "Tue Dec 26 21:17:32 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 16, - 281 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/65ungd3UlY", - "expanded_url": "https://twitter.com/Prune602/status/1739757359814045754/photo/1", - "id_str": "1739757354973802496", - "indices": [ - 282, - 305 - ], - "media_key": "3_1739757354973802496", - "media_url_https": "https://pbs.twimg.com/media/GCTcGMKWMAAU87d.jpg", - "type": "photo", - "url": "https://t.co/65ungd3UlY", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 830, - "y": 357, - "h": 57, - "w": 57 - } - ] - }, - "medium": { - "faces": [ - { - "x": 778, - "y": 334, - "h": 53, - "w": 53 - } - ] - }, - "small": { - "faces": [ - { - "x": 440, - "y": 189, - "h": 30, - "w": 30 - } - ] - }, - "orig": { - "faces": [ - { - "x": 830, - "y": 357, - "h": 57, - "w": 57 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 0, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 44, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - }, - { - "display_url": "pic.twitter.com/65ungd3UlY", - "expanded_url": "https://twitter.com/Prune602/status/1739757359814045754/photo/1", - "id_str": "1739757354952896512", - "indices": [ - 282, - 305 - ], - "media_key": "3_1739757354952896512", - "media_url_https": "https://pbs.twimg.com/media/GCTcGMFXMAAOgr_.jpg", - "type": "photo", - "url": "https://t.co/65ungd3UlY", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 430, - "y": 128, - "h": 115, - "w": 115 - }, - { - "x": 507, - "y": 188, - "h": 151, - "w": 151 - } - ] - }, - "medium": { - "faces": [ - { - "x": 403, - "y": 120, - "h": 107, - "w": 107 - }, - { - "x": 475, - "y": 176, - "h": 141, - "w": 141 - } - ] - }, - "small": { - "faces": [ - { - "x": 228, - "y": 68, - "h": 61, - "w": 61 - }, - { - "x": 269, - "y": 99, - "h": 80, - "w": 80 - } - ] - }, - "orig": { - "faces": [ - { - "x": 430, - "y": 128, - "h": 115, - "w": 115 - }, - { - "x": 507, - "y": 188, - "h": 151, - "w": 151 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - }, - { - "display_url": "pic.twitter.com/65ungd3UlY", - "expanded_url": "https://twitter.com/Prune602/status/1739757359814045754/photo/1", - "id_str": "1739757354952916992", - "indices": [ - 282, - 305 - ], - "media_key": "3_1739757354952916992", - "media_url_https": "https://pbs.twimg.com/media/GCTcGMFXgAA9pZG.jpg", - "type": "photo", - "url": "https://t.co/65ungd3UlY", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 557, - "y": 123, - "h": 175, - "w": 175 - }, - { - "x": 392, - "y": 178, - "h": 130, - "w": 130 - } - ] - }, - "medium": { - "faces": [ - { - "x": 522, - "y": 115, - "h": 164, - "w": 164 - }, - { - "x": 367, - "y": 166, - "h": 121, - "w": 121 - } - ] - }, - "small": { - "faces": [ - { - "x": 295, - "y": 65, - "h": 92, - "w": 92 - }, - { - "x": 208, - "y": 94, - "h": 69, - "w": 69 - } - ] - }, - "orig": { - "faces": [ - { - "x": 557, - "y": 123, - "h": 175, - "w": 175 - }, - { - "x": 392, - "y": 178, - "h": 130, - "w": 130 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - }, - { - "display_url": "pic.twitter.com/65ungd3UlY", - "expanded_url": "https://twitter.com/Prune602/status/1739757359814045754/photo/1", - "id_str": "1739757354957037568", - "indices": [ - 282, - 305 - ], - "media_key": "3_1739757354957037568", - "media_url_https": "https://pbs.twimg.com/media/GCTcGMGWYAAiipR.jpg", - "type": "photo", - "url": "https://t.co/65ungd3UlY", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 532, - "y": 141, - "h": 175, - "w": 175 - }, - { - "x": 367, - "y": 127, - "h": 132, - "w": 132 - }, - { - "x": 418, - "y": 125, - "h": 133, - "w": 133 - } - ] - }, - "medium": { - "faces": [ - { - "x": 498, - "y": 132, - "h": 164, - "w": 164 - }, - { - "x": 344, - "y": 119, - "h": 123, - "w": 123 - }, - { - "x": 391, - "y": 117, - "h": 124, - "w": 124 - } - ] - }, - "small": { - "faces": [ - { - "x": 282, - "y": 74, - "h": 92, - "w": 92 - }, - { - "x": 194, - "y": 67, - "h": 70, - "w": 70 - }, - { - "x": 222, - "y": 66, - "h": 70, - "w": 70 - } - ] - }, - "orig": { - "faces": [ - { - "x": 532, - "y": 141, - "h": 175, - "w": 175 - }, - { - "x": 367, - "y": 127, - "h": 132, - "w": 132 - }, - { - "x": 418, - "y": 125, - "h": 133, - "w": 133 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 0, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/65ungd3UlY", - "expanded_url": "https://twitter.com/Prune602/status/1739757359814045754/photo/1", - "id_str": "1739757354973802496", - "indices": [ - 282, - 305 - ], - "media_key": "3_1739757354973802496", - "media_url_https": "https://pbs.twimg.com/media/GCTcGMKWMAAU87d.jpg", - "type": "photo", - "url": "https://t.co/65ungd3UlY", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 830, - "y": 357, - "h": 57, - "w": 57 - } - ] - }, - "medium": { - "faces": [ - { - "x": 778, - "y": 334, - "h": 53, - "w": 53 - } - ] - }, - "small": { - "faces": [ - { - "x": 440, - "y": 189, - "h": 30, - "w": 30 - } - ] - }, - "orig": { - "faces": [ - { - "x": 830, - "y": 357, - "h": 57, - "w": 57 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 0, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 44, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - }, - { - "display_url": "pic.twitter.com/65ungd3UlY", - "expanded_url": "https://twitter.com/Prune602/status/1739757359814045754/photo/1", - "id_str": "1739757354952896512", - "indices": [ - 282, - 305 - ], - "media_key": "3_1739757354952896512", - "media_url_https": "https://pbs.twimg.com/media/GCTcGMFXMAAOgr_.jpg", - "type": "photo", - "url": "https://t.co/65ungd3UlY", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 430, - "y": 128, - "h": 115, - "w": 115 - }, - { - "x": 507, - "y": 188, - "h": 151, - "w": 151 - } - ] - }, - "medium": { - "faces": [ - { - "x": 403, - "y": 120, - "h": 107, - "w": 107 - }, - { - "x": 475, - "y": 176, - "h": 141, - "w": 141 - } - ] - }, - "small": { - "faces": [ - { - "x": 228, - "y": 68, - "h": 61, - "w": 61 - }, - { - "x": 269, - "y": 99, - "h": 80, - "w": 80 - } - ] - }, - "orig": { - "faces": [ - { - "x": 430, - "y": 128, - "h": 115, - "w": 115 - }, - { - "x": 507, - "y": 188, - "h": 151, - "w": 151 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - }, - { - "display_url": "pic.twitter.com/65ungd3UlY", - "expanded_url": "https://twitter.com/Prune602/status/1739757359814045754/photo/1", - "id_str": "1739757354952916992", - "indices": [ - 282, - 305 - ], - "media_key": "3_1739757354952916992", - "media_url_https": "https://pbs.twimg.com/media/GCTcGMFXgAA9pZG.jpg", - "type": "photo", - "url": "https://t.co/65ungd3UlY", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 557, - "y": 123, - "h": 175, - "w": 175 - }, - { - "x": 392, - "y": 178, - "h": 130, - "w": 130 - } - ] - }, - "medium": { - "faces": [ - { - "x": 522, - "y": 115, - "h": 164, - "w": 164 - }, - { - "x": 367, - "y": 166, - "h": 121, - "w": 121 - } - ] - }, - "small": { - "faces": [ - { - "x": 295, - "y": 65, - "h": 92, - "w": 92 - }, - { - "x": 208, - "y": 94, - "h": 69, - "w": 69 - } - ] - }, - "orig": { - "faces": [ - { - "x": 557, - "y": 123, - "h": 175, - "w": 175 - }, - { - "x": 392, - "y": 178, - "h": 130, - "w": 130 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - }, - { - "display_url": "pic.twitter.com/65ungd3UlY", - "expanded_url": "https://twitter.com/Prune602/status/1739757359814045754/photo/1", - "id_str": "1739757354957037568", - "indices": [ - 282, - 305 - ], - "media_key": "3_1739757354957037568", - "media_url_https": "https://pbs.twimg.com/media/GCTcGMGWYAAiipR.jpg", - "type": "photo", - "url": "https://t.co/65ungd3UlY", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 532, - "y": 141, - "h": 175, - "w": 175 - }, - { - "x": 367, - "y": 127, - "h": 132, - "w": 132 - }, - { - "x": 418, - "y": 125, - "h": 133, - "w": 133 - } - ] - }, - "medium": { - "faces": [ - { - "x": 498, - "y": 132, - "h": 164, - "w": 164 - }, - { - "x": 344, - "y": 119, - "h": 123, - "w": 123 - }, - { - "x": 391, - "y": 117, - "h": 124, - "w": 124 - } - ] - }, - "small": { - "faces": [ - { - "x": 282, - "y": 74, - "h": 92, - "w": 92 - }, - { - "x": 194, - "y": 67, - "h": 70, - "w": 70 - }, - { - "x": 222, - "y": 66, - "h": 70, - "w": 70 - } - ] - }, - "orig": { - "faces": [ - { - "x": 532, - "y": 141, - "h": 175, - "w": 175 - }, - { - "x": 367, - "y": 127, - "h": 132, - "w": 132 - }, - { - "x": 418, - "y": 125, - "h": 133, - "w": 133 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 0, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ] - }, - "favorite_count": 62, - "favorited": false, - "full_text": "@JuliaDavisNews “Everything is being done to silence my words! Happily, the Kremlin has a different position!…That’s why I have this opportunity to broadcast, we have this channel - thanks for that!”\n\n~ Vladimir Solovyov\n\nBecause the Kremlin approves of the Incitement to Genocide! https://t.co/65ungd3UlY", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1739753183243633015", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": true, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "quoted_status_id_str": "1643108654181236736", - "quoted_status_permalink": { - "url": "https://t.co/1PFs825gOx", - "expanded": "https://twitter.com/prune602/status/1643108654181236736", - "display": "twitter.com/prune602/statu…" - }, - "reply_count": 1, - "retweet_count": 9, - "retweeted": false, - "user_id_str": "1498461179890524161", - "id_str": "1739757359814045754" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739766804019323206", - "sortIndex": "1739819664587882465", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739766804019323206", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739766804019323206" - ], - "editable_until_msecs": "1703631304039", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:55:04 +0000 2023", - "conversation_id_str": "1739766804019323206", - "display_text_range": [ - 0, - 139 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/Q7ihgfuFL8", - "expanded_url": "https://twitter.com/Prune602/status/1739759081705943361/photo/1", - "id_str": "1739759076995653632", - "indices": [ - 116, - 139 - ], - "media_key": "3_1739759076995653632", - "media_url_https": "https://pbs.twimg.com/media/GCTdqbMWYAAyYLL.jpg", - "source_status_id_str": "1739759081705943361", - "source_user_id_str": "1498461179890524161", - "type": "photo", - "url": "https://t.co/Q7ihgfuFL8", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 298, - "y": 1, - "h": 83, - "w": 83 - }, - { - "x": 567, - "y": 145, - "h": 173, - "w": 173 - } - ] - }, - "medium": { - "faces": [ - { - "x": 279, - "y": 0, - "h": 77, - "w": 77 - }, - { - "x": 531, - "y": 135, - "h": 162, - "w": 162 - } - ] - }, - "small": { - "faces": [ - { - "x": 158, - "y": 0, - "h": 44, - "w": 44 - }, - { - "x": 301, - "y": 77, - "h": 91, - "w": 91 - } - ] - }, - "orig": { - "faces": [ - { - "x": 298, - "y": 1, - "h": 83, - "w": 83 - }, - { - "x": 567, - "y": 145, - "h": 173, - "w": 173 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 0, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 44, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1498461179890524161", - "name": "Prune60", - "screen_name": "Prune602", - "indices": [ - 3, - 12 - ] - }, - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 14, - 29 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/Q7ihgfuFL8", - "expanded_url": "https://twitter.com/Prune602/status/1739759081705943361/photo/1", - "id_str": "1739759076995653632", - "indices": [ - 116, - 139 - ], - "media_key": "3_1739759076995653632", - "media_url_https": "https://pbs.twimg.com/media/GCTdqbMWYAAyYLL.jpg", - "source_status_id_str": "1739759081705943361", - "source_user_id_str": "1498461179890524161", - "type": "photo", - "url": "https://t.co/Q7ihgfuFL8", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 298, - "y": 1, - "h": 83, - "w": 83 - }, - { - "x": 567, - "y": 145, - "h": 173, - "w": 173 - } - ] - }, - "medium": { - "faces": [ - { - "x": 279, - "y": 0, - "h": 77, - "w": 77 - }, - { - "x": 531, - "y": 135, - "h": 162, - "w": 162 - } - ] - }, - "small": { - "faces": [ - { - "x": 158, - "y": 0, - "h": 44, - "w": 44 - }, - { - "x": 301, - "y": 77, - "h": 91, - "w": 91 - } - ] - }, - "orig": { - "faces": [ - { - "x": 298, - "y": 1, - "h": 83, - "w": 83 - }, - { - "x": 567, - "y": 145, - "h": 173, - "w": 173 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 0, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 44, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @Prune602: @JuliaDavisNews “A human body is not beautiful at every age.”\n\n~ Vladimir Solovyov\n\nHe sounds bitter. https://t.co/Q7ihgfuFL8", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 0, - "retweet_count": 3, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739766804019323206", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739759081705943361", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDk4NDYxMTc5ODkwNTI0MTYx", - "rest_id": "1498461179890524161", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Tue Mar 01 00:53:24 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Electrical/Power Systems Engineer, Queen of Anglo-Saxonia, ✏️*sigh* there will be typos, and spontaneous threads", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 12530, - "followers_count": 2864, - "friends_count": 192, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 84, - "location": "", - "media_count": 13271, - "name": "Prune60", - "normal_followers_count": 2864, - "pinned_tweet_ids_str": [ - "1628994623828885504" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1498461179890524161/1661909729", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1517279835999150082/Bte8DwHy_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Prune602", - "statuses_count": 31466, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739759081705943361" - ], - "editable_until_msecs": "1703629462000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "13048", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:24:22 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 16, - 101 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/Q7ihgfuFL8", - "expanded_url": "https://twitter.com/Prune602/status/1739759081705943361/photo/1", - "id_str": "1739759076995653632", - "indices": [ - 102, - 125 - ], - "media_key": "3_1739759076995653632", - "media_url_https": "https://pbs.twimg.com/media/GCTdqbMWYAAyYLL.jpg", - "type": "photo", - "url": "https://t.co/Q7ihgfuFL8", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 298, - "y": 1, - "h": 83, - "w": 83 - }, - { - "x": 567, - "y": 145, - "h": 173, - "w": 173 - } - ] - }, - "medium": { - "faces": [ - { - "x": 279, - "y": 0, - "h": 77, - "w": 77 - }, - { - "x": 531, - "y": 135, - "h": 162, - "w": 162 - } - ] - }, - "small": { - "faces": [ - { - "x": 158, - "y": 0, - "h": 44, - "w": 44 - }, - { - "x": 301, - "y": 77, - "h": 91, - "w": 91 - } - ] - }, - "orig": { - "faces": [ - { - "x": 298, - "y": 1, - "h": 83, - "w": 83 - }, - { - "x": 567, - "y": 145, - "h": 173, - "w": 173 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 0, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 44, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/Q7ihgfuFL8", - "expanded_url": "https://twitter.com/Prune602/status/1739759081705943361/photo/1", - "id_str": "1739759076995653632", - "indices": [ - 102, - 125 - ], - "media_key": "3_1739759076995653632", - "media_url_https": "https://pbs.twimg.com/media/GCTdqbMWYAAyYLL.jpg", - "type": "photo", - "url": "https://t.co/Q7ihgfuFL8", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 298, - "y": 1, - "h": 83, - "w": 83 - }, - { - "x": 567, - "y": 145, - "h": 173, - "w": 173 - } - ] - }, - "medium": { - "faces": [ - { - "x": 279, - "y": 0, - "h": 77, - "w": 77 - }, - { - "x": 531, - "y": 135, - "h": 162, - "w": 162 - } - ] - }, - "small": { - "faces": [ - { - "x": 158, - "y": 0, - "h": 44, - "w": 44 - }, - { - "x": 301, - "y": 77, - "h": 91, - "w": 91 - } - ] - }, - "orig": { - "faces": [ - { - "x": 298, - "y": 1, - "h": 83, - "w": 83 - }, - { - "x": 567, - "y": 145, - "h": 173, - "w": 173 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 0, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 44, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ] - }, - "favorite_count": 53, - "favorited": false, - "full_text": "@JuliaDavisNews “A human body is not beautiful at every age.”\n\n~ Vladimir Solovyov\n\nHe sounds bitter. https://t.co/Q7ihgfuFL8", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1739753183243633015", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 5, - "retweet_count": 3, - "retweeted": false, - "user_id_str": "1498461179890524161", - "id_str": "1739759081705943361" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739766700373856489", - "sortIndex": "1739819664587882464", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739766700373856489", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzE3NTIxMw==", - "rest_id": "17175213", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed Nov 05 00:59:16 +0000 2008", - "default_profile": true, - "default_profile_image": false, - "description": "Defence editor at @TheEconomist, Visiting fellow at @warstudies King's College London.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "shashankjoshi.wordpress.com", - "expanded_url": "http://shashankjoshi.wordpress.com", - "url": "https://t.co/euRjbnk3WT", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 36102, - "followers_count": 194545, - "friends_count": 1787, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5880, - "location": "London", - "media_count": 4138, - "name": "Shashank Joshi", - "normal_followers_count": 194545, - "pinned_tweet_ids_str": [ - "1729977020002476084" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17175213/1688649354", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1509894709770076168/uNk9W2IH_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "shashj", - "statuses_count": 49138, - "translator_type": "none", - "url": "https://t.co/euRjbnk3WT", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739766700373856489" - ], - "editable_until_msecs": "1703631279328", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:54:39 +0000 2023", - "conversation_id_str": "1739766700373856489", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "142696927", - "name": "laurence norman", - "screen_name": "laurnorman", - "indices": [ - 3, - 14 - ] - }, - { - "id_str": "17175213", - "name": "Shashank Joshi", - "screen_name": "shashj", - "indices": [ - 16, - 23 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @laurnorman: @shashj Couple of months maybe I'd guess. There's a slippery slope from Houthis to Iran and from Red Sea missiles to missil…", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 2, - "retweeted": false, - "user_id_str": "17175213", - "id_str": "1739766700373856489", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739766397012525295", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDI2OTY5Mjc=", - "rest_id": "142696927", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue May 11 14:23:38 +0000 2010", - "default_profile": true, - "default_profile_image": false, - "description": "In Europe for The Wall Street Journal. Cover Iran nuclear, EU, European foreign policy & anything else that comes my way. My RT, someone else's view.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "wsj.com", - "expanded_url": "http://www.wsj.com", - "url": "https://t.co/RsOa7vEO2y", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 5756, - "followers_count": 30099, - "friends_count": 3808, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1070, - "location": "Europe", - "media_count": 464, - "name": "laurence norman", - "normal_followers_count": 30099, - "pinned_tweet_ids_str": [ - "1664237334303326208" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/142696927/1667302112", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1640638127566905344/VoLidvQN_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "laurnorman", - "statuses_count": 71859, - "translator_type": "none", - "url": "https://t.co/RsOa7vEO2y", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739766397012525295" - ], - "editable_until_msecs": "1703631207000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "15581", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 1, - "bookmarked": false, - "created_at": "Tue Dec 26 21:53:27 +0000 2023", - "conversation_id_str": "1739766108083659049", - "display_text_range": [ - 8, - 183 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "17175213", - "name": "Shashank Joshi", - "screen_name": "shashj", - "indices": [ - 0, - 7 - ] - } - ] - }, - "favorite_count": 13, - "favorited": false, - "full_text": "@shashj Couple of months maybe I'd guess. There's a slippery slope from Houthis to Iran and from Red Sea missiles to missiles fired at Saudi. I reckon they might want more calm first.", - "in_reply_to_screen_name": "shashj", - "in_reply_to_status_id_str": "1739766108083659049", - "in_reply_to_user_id_str": "17175213", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 3, - "retweet_count": 2, - "retweeted": false, - "user_id_str": "142696927", - "id_str": "1739766397012525295" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739766674109206980", - "sortIndex": "1739819664587882463", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739766674109206980", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739766674109206980" - ], - "editable_until_msecs": "1703631273066", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:54:33 +0000 2023", - "conversation_id_str": "1739766674109206980", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/6SvUvhaY26", - "expanded_url": "https://twitter.com/Prune602/status/1739761328422559804/photo/1", - "id_str": "1739761324026953728", - "indices": [ - 117, - 140 - ], - "media_key": "3_1739761324026953728", - "media_url_https": "https://pbs.twimg.com/media/GCTftOCXAAA4_IW.jpg", - "source_status_id_str": "1739761328422559804", - "source_user_id_str": "1498461179890524161", - "type": "photo", - "url": "https://t.co/6SvUvhaY26", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 501, - "y": 148, - "h": 171, - "w": 171 - } - ] - }, - "medium": { - "faces": [ - { - "x": 469, - "y": 138, - "h": 160, - "w": 160 - } - ] - }, - "small": { - "faces": [ - { - "x": 266, - "y": 78, - "h": 90, - "w": 90 - } - ] - }, - "orig": { - "faces": [ - { - "x": 501, - "y": 148, - "h": 171, - "w": 171 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1498461179890524161", - "name": "Prune60", - "screen_name": "Prune602", - "indices": [ - 3, - 12 - ] - }, - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 14, - 29 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/6SvUvhaY26", - "expanded_url": "https://twitter.com/Prune602/status/1739761328422559804/photo/1", - "id_str": "1739761324026953728", - "indices": [ - 117, - 140 - ], - "media_key": "3_1739761324026953728", - "media_url_https": "https://pbs.twimg.com/media/GCTftOCXAAA4_IW.jpg", - "source_status_id_str": "1739761328422559804", - "source_user_id_str": "1498461179890524161", - "type": "photo", - "url": "https://t.co/6SvUvhaY26", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 501, - "y": 148, - "h": 171, - "w": 171 - } - ] - }, - "medium": { - "faces": [ - { - "x": 469, - "y": 138, - "h": 160, - "w": 160 - } - ] - }, - "small": { - "faces": [ - { - "x": 266, - "y": 78, - "h": 90, - "w": 90 - } - ] - }, - "orig": { - "faces": [ - { - "x": 501, - "y": 148, - "h": 171, - "w": 171 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @Prune602: @JuliaDavisNews “We should get rid of all this, get rid of all these vatniks!”\n\n~ Vladimir Solovyov\n\n🍿 https://t.co/6SvUvhaY26", - "is_quote_status": true, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "quoted_status_id_str": "1624443076541353989", - "quoted_status_permalink": { - "url": "https://t.co/yX3h7BQNdk", - "expanded": "https://twitter.com/prune602/status/1624443076541353989", - "display": "twitter.com/prune602/statu…" - }, - "reply_count": 0, - "retweet_count": 3, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739766674109206980", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739761328422559804", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDk4NDYxMTc5ODkwNTI0MTYx", - "rest_id": "1498461179890524161", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Tue Mar 01 00:53:24 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Electrical/Power Systems Engineer, Queen of Anglo-Saxonia, ✏️*sigh* there will be typos, and spontaneous threads", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 12530, - "followers_count": 2864, - "friends_count": 192, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 84, - "location": "", - "media_count": 13271, - "name": "Prune60", - "normal_followers_count": 2864, - "pinned_tweet_ids_str": [ - "1628994623828885504" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1498461179890524161/1661909729", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1517279835999150082/Bte8DwHy_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Prune602", - "statuses_count": 31466, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739761328422559804" - ], - "editable_until_msecs": "1703629998000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "19461", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1624443076541353989", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDk4NDYxMTc5ODkwNTI0MTYx", - "rest_id": "1498461179890524161", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Tue Mar 01 00:53:24 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Electrical/Power Systems Engineer, Queen of Anglo-Saxonia, ✏️*sigh* there will be typos, and spontaneous threads", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 12530, - "followers_count": 2864, - "friends_count": 192, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 84, - "location": "", - "media_count": 13271, - "name": "Prune60", - "normal_followers_count": 2864, - "pinned_tweet_ids_str": [ - "1628994623828885504" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1498461179890524161/1661909729", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1517279835999150082/Bte8DwHy_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Prune602", - "statuses_count": 31466, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1624443076541353989" - ], - "editable_until_msecs": "1676134184000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "218495", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 11, - "bookmarked": false, - "created_at": "Sat Feb 11 16:19:44 +0000 2023", - "conversation_id_str": "1624295423530729476", - "display_text_range": [ - 16, - 83 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/H6aqhKn9No", - "expanded_url": "https://twitter.com/Prune602/status/1624443076541353989/photo/1", - "id_str": "1624443071671697409", - "indices": [ - 84, - 107 - ], - "media_key": "3_1624443071671697409", - "media_url_https": "https://pbs.twimg.com/media/FosuXfTWAAEG8zz.jpg", - "type": "photo", - "url": "https://t.co/H6aqhKn9No", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 1152, - "w": 2048, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1152, - "width": 2048, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 2048, - "h": 1147 - }, - { - "x": 89, - "y": 0, - "w": 1152, - "h": 1152 - }, - { - "x": 160, - "y": 0, - "w": 1011, - "h": 1152 - }, - { - "x": 377, - "y": 0, - "w": 576, - "h": 1152 - }, - { - "x": 0, - "y": 0, - "w": 2048, - "h": 1152 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/H6aqhKn9No", - "expanded_url": "https://twitter.com/Prune602/status/1624443076541353989/photo/1", - "id_str": "1624443071671697409", - "indices": [ - 84, - 107 - ], - "media_key": "3_1624443071671697409", - "media_url_https": "https://pbs.twimg.com/media/FosuXfTWAAEG8zz.jpg", - "type": "photo", - "url": "https://t.co/H6aqhKn9No", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 1152, - "w": 2048, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1152, - "width": 2048, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 2048, - "h": 1147 - }, - { - "x": 89, - "y": 0, - "w": 1152, - "h": 1152 - }, - { - "x": 160, - "y": 0, - "w": 1011, - "h": 1152 - }, - { - "x": 377, - "y": 0, - "w": 576, - "h": 1152 - }, - { - "x": 0, - "y": 0, - "w": 2048, - "h": 1152 - } - ] - } - } - ] - }, - "favorite_count": 931, - "favorited": false, - "full_text": "@JuliaDavisNews “Understand, it turns out that we are the Orcs”\n\n~Vladimir Solovyov https://t.co/H6aqhKn9No", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1624295423530729476", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 20, - "reply_count": 67, - "retweet_count": 131, - "retweeted": false, - "user_id_str": "1498461179890524161", - "id_str": "1624443076541353989" - } - } - }, - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:33:18 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 16, - 102 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/6SvUvhaY26", - "expanded_url": "https://twitter.com/Prune602/status/1739761328422559804/photo/1", - "id_str": "1739761324026953728", - "indices": [ - 103, - 126 - ], - "media_key": "3_1739761324026953728", - "media_url_https": "https://pbs.twimg.com/media/GCTftOCXAAA4_IW.jpg", - "type": "photo", - "url": "https://t.co/6SvUvhaY26", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 501, - "y": 148, - "h": 171, - "w": 171 - } - ] - }, - "medium": { - "faces": [ - { - "x": 469, - "y": 138, - "h": 160, - "w": 160 - } - ] - }, - "small": { - "faces": [ - { - "x": 266, - "y": 78, - "h": 90, - "w": 90 - } - ] - }, - "orig": { - "faces": [ - { - "x": 501, - "y": 148, - "h": 171, - "w": 171 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/6SvUvhaY26", - "expanded_url": "https://twitter.com/Prune602/status/1739761328422559804/photo/1", - "id_str": "1739761324026953728", - "indices": [ - 103, - 126 - ], - "media_key": "3_1739761324026953728", - "media_url_https": "https://pbs.twimg.com/media/GCTftOCXAAA4_IW.jpg", - "type": "photo", - "url": "https://t.co/6SvUvhaY26", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 501, - "y": 148, - "h": 171, - "w": 171 - } - ] - }, - "medium": { - "faces": [ - { - "x": 469, - "y": 138, - "h": 160, - "w": 160 - } - ] - }, - "small": { - "faces": [ - { - "x": 266, - "y": 78, - "h": 90, - "w": 90 - } - ] - }, - "orig": { - "faces": [ - { - "x": 501, - "y": 148, - "h": 171, - "w": 171 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ] - }, - "favorite_count": 46, - "favorited": false, - "full_text": "@JuliaDavisNews “We should get rid of all this, get rid of all these vatniks!”\n\n~ Vladimir Solovyov\n\n🍿 https://t.co/6SvUvhaY26", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1739753183243633015", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": true, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "quoted_status_id_str": "1624443076541353989", - "quoted_status_permalink": { - "url": "https://t.co/yX3h7BQNdk", - "expanded": "https://twitter.com/prune602/status/1624443076541353989", - "display": "twitter.com/prune602/statu…" - }, - "reply_count": 1, - "retweet_count": 3, - "retweeted": false, - "user_id_str": "1498461179890524161", - "id_str": "1739761328422559804" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739766583117984037", - "sortIndex": "1739819664587882462", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739766583117984037", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739766583117984037" - ], - "editable_until_msecs": "1703631251372", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:54:11 +0000 2023", - "conversation_id_str": "1739766583117984037", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1498461179890524161", - "name": "Prune60", - "screen_name": "Prune602", - "indices": [ - 3, - 12 - ] - }, - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 14, - 29 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @Prune602: @JuliaDavisNews “Understand, these things are totally connected!”\n\n~ Vladimir Solovyov\n\nNarrator: They were not “totally con…", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 1, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739766583117984037", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739761933950062835", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDk4NDYxMTc5ODkwNTI0MTYx", - "rest_id": "1498461179890524161", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Tue Mar 01 00:53:24 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Electrical/Power Systems Engineer, Queen of Anglo-Saxonia, ✏️*sigh* there will be typos, and spontaneous threads", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 12530, - "followers_count": 2864, - "friends_count": 192, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 84, - "location": "", - "media_count": 13271, - "name": "Prune60", - "normal_followers_count": 2864, - "pinned_tweet_ids_str": [ - "1628994623828885504" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1498461179890524161/1661909729", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1517279835999150082/Bte8DwHy_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Prune602", - "statuses_count": 31466, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739761933950062835" - ], - "editable_until_msecs": "1703630142000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "12831", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:35:42 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 16, - 132 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/Vd6fRm4GxM", - "expanded_url": "https://twitter.com/Prune602/status/1739761933950062835/photo/1", - "id_str": "1739761928958832640", - "indices": [ - 133, - 156 - ], - "media_key": "3_1739761928958832640", - "media_url_https": "https://pbs.twimg.com/media/GCTgQblW8AAKdNS.jpg", - "type": "photo", - "url": "https://t.co/Vd6fRm4GxM", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 568, - "y": 107, - "h": 168, - "w": 168 - } - ] - }, - "medium": { - "faces": [ - { - "x": 532, - "y": 100, - "h": 157, - "w": 157 - } - ] - }, - "small": { - "faces": [ - { - "x": 301, - "y": 56, - "h": 89, - "w": 89 - } - ] - }, - "orig": { - "faces": [ - { - "x": 568, - "y": 107, - "h": 168, - "w": 168 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/Vd6fRm4GxM", - "expanded_url": "https://twitter.com/Prune602/status/1739761933950062835/photo/1", - "id_str": "1739761928958832640", - "indices": [ - 133, - 156 - ], - "media_key": "3_1739761928958832640", - "media_url_https": "https://pbs.twimg.com/media/GCTgQblW8AAKdNS.jpg", - "type": "photo", - "url": "https://t.co/Vd6fRm4GxM", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 568, - "y": 107, - "h": 168, - "w": 168 - } - ] - }, - "medium": { - "faces": [ - { - "x": 532, - "y": 100, - "h": 157, - "w": 157 - } - ] - }, - "small": { - "faces": [ - { - "x": 301, - "y": 56, - "h": 89, - "w": 89 - } - ] - }, - "orig": { - "faces": [ - { - "x": 568, - "y": 107, - "h": 168, - "w": 168 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ] - }, - "favorite_count": 39, - "favorited": false, - "full_text": "@JuliaDavisNews “Understand, these things are totally connected!”\n\n~ Vladimir Solovyov\n\nNarrator: They were not “totally connected” https://t.co/Vd6fRm4GxM", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1739753183243633015", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 1, - "retweet_count": 1, - "retweeted": false, - "user_id_str": "1498461179890524161", - "id_str": "1739761933950062835" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739766432026476826", - "sortIndex": "1739819664587882461", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739766432026476826", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739766432026476826" - ], - "editable_until_msecs": "1703631215349", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:53:35 +0000 2023", - "conversation_id_str": "1739766432026476826", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1498461179890524161", - "name": "Prune60", - "screen_name": "Prune602", - "indices": [ - 3, - 12 - ] - }, - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 14, - 29 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @Prune602: @JuliaDavisNews “Yes, a strike was carried out on Feodosia”\n\n~ Vladimir Solovyov\n\nThe Russian Navy lost a landing ship with a…", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1739756385720566036", - "quoted_status_permalink": { - "url": "https://t.co/XzpIvPd7Bz", - "expanded": "https://twitter.com/prune602/status/1739756385720566036", - "display": "twitter.com/prune602/statu…" - }, - "reply_count": 0, - "retweet_count": 8, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739766432026476826", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739763602746208550", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDk4NDYxMTc5ODkwNTI0MTYx", - "rest_id": "1498461179890524161", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Tue Mar 01 00:53:24 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Electrical/Power Systems Engineer, Queen of Anglo-Saxonia, ✏️*sigh* there will be typos, and spontaneous threads", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 12530, - "followers_count": 2864, - "friends_count": 192, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 84, - "location": "", - "media_count": 13271, - "name": "Prune60", - "normal_followers_count": 2864, - "pinned_tweet_ids_str": [ - "1628994623828885504" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1498461179890524161/1661909729", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1517279835999150082/Bte8DwHy_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Prune602", - "statuses_count": 31466, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739763602746208550" - ], - "editable_until_msecs": "1703630540000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "18577", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739756385720566036", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDk4NDYxMTc5ODkwNTI0MTYx", - "rest_id": "1498461179890524161", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Tue Mar 01 00:53:24 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Electrical/Power Systems Engineer, Queen of Anglo-Saxonia, ✏️*sigh* there will be typos, and spontaneous threads", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 12530, - "followers_count": 2864, - "friends_count": 192, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 84, - "location": "", - "media_count": 13271, - "name": "Prune60", - "normal_followers_count": 2864, - "pinned_tweet_ids_str": [ - "1628994623828885504" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1498461179890524161/1661909729", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1517279835999150082/Bte8DwHy_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Prune602", - "statuses_count": 31466, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739756385720566036" - ], - "editable_until_msecs": "1703628820000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "32069", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 1, - "bookmarked": false, - "created_at": "Tue Dec 26 21:13:40 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 16, - 62 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/yYjqFYO2QQ", - "expanded_url": "https://twitter.com/Prune602/status/1739756385720566036/photo/1", - "id_str": "1739756381127761920", - "indices": [ - 63, - 86 - ], - "media_key": "3_1739756381127761920", - "media_url_https": "https://pbs.twimg.com/media/GCTbNgTW4AAOfDn.jpg", - "type": "photo", - "url": "https://t.co/yYjqFYO2QQ", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 683, - "y": 228, - "h": 61, - "w": 61 - }, - { - "x": 528, - "y": 185, - "h": 153, - "w": 153 - } - ] - }, - "medium": { - "faces": [ - { - "x": 640, - "y": 213, - "h": 57, - "w": 57 - }, - { - "x": 495, - "y": 173, - "h": 143, - "w": 143 - } - ] - }, - "small": { - "faces": [ - { - "x": 362, - "y": 121, - "h": 32, - "w": 32 - }, - { - "x": 280, - "y": 98, - "h": 81, - "w": 81 - } - ] - }, - "orig": { - "faces": [ - { - "x": 683, - "y": 228, - "h": 61, - "w": 61 - }, - { - "x": 528, - "y": 185, - "h": 153, - "w": 153 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 248, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 292, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 428, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/yYjqFYO2QQ", - "expanded_url": "https://twitter.com/Prune602/status/1739756385720566036/photo/1", - "id_str": "1739756381127761920", - "indices": [ - 63, - 86 - ], - "media_key": "3_1739756381127761920", - "media_url_https": "https://pbs.twimg.com/media/GCTbNgTW4AAOfDn.jpg", - "type": "photo", - "url": "https://t.co/yYjqFYO2QQ", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 683, - "y": 228, - "h": 61, - "w": 61 - }, - { - "x": 528, - "y": 185, - "h": 153, - "w": 153 - } - ] - }, - "medium": { - "faces": [ - { - "x": 640, - "y": 213, - "h": 57, - "w": 57 - }, - { - "x": 495, - "y": 173, - "h": 143, - "w": 143 - } - ] - }, - "small": { - "faces": [ - { - "x": 362, - "y": 121, - "h": 32, - "w": 32 - }, - { - "x": 280, - "y": 98, - "h": 81, - "w": 81 - } - ] - }, - "orig": { - "faces": [ - { - "x": 683, - "y": 228, - "h": 61, - "w": 61 - }, - { - "x": 528, - "y": 185, - "h": 153, - "w": 153 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 248, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 292, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 428, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ] - }, - "favorite_count": 75, - "favorited": false, - "full_text": "@JuliaDavisNews “They hate me!”\n\n~ Vladimir Solovyov\n\nProbably https://t.co/yYjqFYO2QQ", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1739753183243633015", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 1, - "reply_count": 4, - "retweet_count": 5, - "retweeted": false, - "user_id_str": "1498461179890524161", - "id_str": "1739756385720566036" - } - } - }, - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:42:20 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 16, - 294 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/1QMHYo2jHG", - "expanded_url": "https://twitter.com/Prune602/status/1739763602746208550/photo/1", - "id_str": "1739763597406846976", - "indices": [ - 295, - 318 - ], - "media_key": "3_1739763597406846976", - "media_url_https": "https://pbs.twimg.com/media/GCThxjCXQAAPi2U.jpg", - "type": "photo", - "url": "https://t.co/1QMHYo2jHG", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 437, - "y": 102, - "h": 127, - "w": 127 - }, - { - "x": 505, - "y": 176, - "h": 147, - "w": 147 - } - ] - }, - "medium": { - "faces": [ - { - "x": 409, - "y": 95, - "h": 119, - "w": 119 - }, - { - "x": 473, - "y": 165, - "h": 137, - "w": 137 - } - ] - }, - "small": { - "faces": [ - { - "x": 232, - "y": 54, - "h": 67, - "w": 67 - }, - { - "x": 268, - "y": 93, - "h": 78, - "w": 78 - } - ] - }, - "orig": { - "faces": [ - { - "x": 437, - "y": 102, - "h": 127, - "w": 127 - }, - { - "x": 505, - "y": 176, - "h": 147, - "w": 147 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/1QMHYo2jHG", - "expanded_url": "https://twitter.com/Prune602/status/1739763602746208550/photo/1", - "id_str": "1739763597406846976", - "indices": [ - 295, - 318 - ], - "media_key": "3_1739763597406846976", - "media_url_https": "https://pbs.twimg.com/media/GCThxjCXQAAPi2U.jpg", - "type": "photo", - "url": "https://t.co/1QMHYo2jHG", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 437, - "y": 102, - "h": 127, - "w": 127 - }, - { - "x": 505, - "y": 176, - "h": 147, - "w": 147 - } - ] - }, - "medium": { - "faces": [ - { - "x": 409, - "y": 95, - "h": 119, - "w": 119 - }, - { - "x": 473, - "y": 165, - "h": 137, - "w": 137 - } - ] - }, - "small": { - "faces": [ - { - "x": 232, - "y": 54, - "h": 67, - "w": 67 - }, - { - "x": 268, - "y": 93, - "h": 78, - "w": 78 - } - ] - }, - "orig": { - "faces": [ - { - "x": 437, - "y": 102, - "h": 127, - "w": 127 - }, - { - "x": 505, - "y": 176, - "h": 147, - "w": 147 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ] - }, - "favorite_count": 54, - "favorited": false, - "full_text": "@JuliaDavisNews “Yes, a strike was carried out on Feodosia”\n\n~ Vladimir Solovyov\n\nThe Russian Navy lost a landing ship with a lot of explosive cargo, but Solovyov is going to talk about a naked party and how he is actually the victim instead. \n\n🇷🇺: 😅 It’s fine, everything is FINE! DON’T PANIC! https://t.co/1QMHYo2jHG", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1739753183243633015", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": true, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "quoted_status_id_str": "1739756385720566036", - "quoted_status_permalink": { - "url": "https://t.co/XzpIvPd7Bz", - "expanded": "https://twitter.com/prune602/status/1739756385720566036", - "display": "twitter.com/prune602/statu…" - }, - "reply_count": 0, - "retweet_count": 8, - "retweeted": false, - "user_id_str": "1498461179890524161", - "id_str": "1739763602746208550" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739766384723214644", - "sortIndex": "1739819664587882460", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739766384723214644", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739766384723214644" - ], - "editable_until_msecs": "1703631204071", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:53:24 +0000 2023", - "conversation_id_str": "1739766384723214644", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1498461179890524161", - "name": "Prune60", - "screen_name": "Prune602", - "indices": [ - 3, - 12 - ] - }, - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 14, - 29 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @Prune602: @JuliaDavisNews “They were quoting the head of Crimea, Mr. Aksyonov”\n\n~ Vladimir Solovyov\n\n🙋‍♀️ Can I share a quote from him?…", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1637291115589058560", - "quoted_status_permalink": { - "url": "https://t.co/SuMpG9e5nq", - "expanded": "https://twitter.com/prune602/status/1637291115589058560", - "display": "twitter.com/prune602/statu…" - }, - "reply_count": 0, - "retweet_count": 1, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739766384723214644", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739764730561003611", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDk4NDYxMTc5ODkwNTI0MTYx", - "rest_id": "1498461179890524161", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Tue Mar 01 00:53:24 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Electrical/Power Systems Engineer, Queen of Anglo-Saxonia, ✏️*sigh* there will be typos, and spontaneous threads", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 12530, - "followers_count": 2864, - "friends_count": 192, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 84, - "location": "", - "media_count": 13271, - "name": "Prune60", - "normal_followers_count": 2864, - "pinned_tweet_ids_str": [ - "1628994623828885504" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1498461179890524161/1661909729", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1517279835999150082/Bte8DwHy_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Prune602", - "statuses_count": 31466, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739764730561003611" - ], - "editable_until_msecs": "1703630809000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "18182", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1637291115589058560", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDk4NDYxMTc5ODkwNTI0MTYx", - "rest_id": "1498461179890524161", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Tue Mar 01 00:53:24 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Electrical/Power Systems Engineer, Queen of Anglo-Saxonia, ✏️*sigh* there will be typos, and spontaneous threads", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 12530, - "followers_count": 2864, - "friends_count": 192, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 84, - "location": "", - "media_count": 13271, - "name": "Prune60", - "normal_followers_count": 2864, - "pinned_tweet_ids_str": [ - "1628994623828885504" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1498461179890524161/1661909729", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1517279835999150082/Bte8DwHy_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Prune602", - "statuses_count": 31466, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1637291115589058560" - ], - "editable_until_msecs": "1679197396000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "32619", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quotedRefResult": { - "result": { - "__typename": "Tweet", - "rest_id": "1637072073607507970" - } - }, - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Sun Mar 19 03:13:16 +0000 2023", - "conversation_id_str": "1637291115589058560", - "display_text_range": [ - 0, - 132 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/6hBf7RI4HG", - "expanded_url": "https://twitter.com/Prune602/status/1637291115589058560/photo/1", - "id_str": "1637291111331799040", - "indices": [ - 133, - 156 - ], - "media_key": "3_1637291111331799040", - "media_url_https": "https://pbs.twimg.com/media/FrjTl0zWIAAH3gc.jpg", - "type": "photo", - "url": "https://t.co/6hBf7RI4HG", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 24, - "y": 66, - "h": 68, - "w": 68 - } - ] - }, - "medium": { - "faces": [ - { - "x": 14, - "y": 38, - "h": 39, - "w": 39 - } - ] - }, - "small": { - "faces": [ - { - "x": 7, - "y": 21, - "h": 22, - "w": 22 - } - ] - }, - "orig": { - "faces": [ - { - "x": 24, - "y": 66, - "h": 68, - "w": 68 - } - ] - } - }, - "sizes": { - "large": { - "h": 1152, - "w": 2048, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1152, - "width": 2048, - "focus_rects": [ - { - "x": 0, - "y": 5, - "w": 2048, - "h": 1147 - }, - { - "x": 896, - "y": 0, - "w": 1152, - "h": 1152 - }, - { - "x": 979, - "y": 0, - "w": 1011, - "h": 1152 - }, - { - "x": 1196, - "y": 0, - "w": 576, - "h": 1152 - }, - { - "x": 0, - "y": 0, - "w": 2048, - "h": 1152 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/6hBf7RI4HG", - "expanded_url": "https://twitter.com/Prune602/status/1637291115589058560/photo/1", - "id_str": "1637291111331799040", - "indices": [ - 133, - 156 - ], - "media_key": "3_1637291111331799040", - "media_url_https": "https://pbs.twimg.com/media/FrjTl0zWIAAH3gc.jpg", - "type": "photo", - "url": "https://t.co/6hBf7RI4HG", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 24, - "y": 66, - "h": 68, - "w": 68 - } - ] - }, - "medium": { - "faces": [ - { - "x": 14, - "y": 38, - "h": 39, - "w": 39 - } - ] - }, - "small": { - "faces": [ - { - "x": 7, - "y": 21, - "h": 22, - "w": 22 - } - ] - }, - "orig": { - "faces": [ - { - "x": 24, - "y": 66, - "h": 68, - "w": 68 - } - ] - } - }, - "sizes": { - "large": { - "h": 1152, - "w": 2048, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1152, - "width": 2048, - "focus_rects": [ - { - "x": 0, - "y": 5, - "w": 2048, - "h": 1147 - }, - { - "x": 896, - "y": 0, - "w": 1152, - "h": 1152 - }, - { - "x": 979, - "y": 0, - "w": 1011, - "h": 1152 - }, - { - "x": 1196, - "y": 0, - "w": 576, - "h": 1152 - }, - { - "x": 0, - "y": 0, - "w": 2048, - "h": 1152 - } - ] - } - } - ] - }, - "favorite_count": 14, - "favorited": false, - "full_text": "“Crimea is definitely a Russian region forever”\n\n~ Sergey Aksenov \n\nInteresting…I heard someone say something similar about Kherson. https://t.co/6hBf7RI4HG", - "is_quote_status": true, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "quoted_status_id_str": "1637072073607507970", - "quoted_status_permalink": { - "url": "https://t.co/pYgQ18aY39", - "expanded": "https://twitter.com/WinstonCatNews/status/1637072073607507970", - "display": "twitter.com/WinstonCatNews…" - }, - "reply_count": 2, - "retweet_count": 2, - "retweeted": false, - "user_id_str": "1498461179890524161", - "id_str": "1637291115589058560" - } - } - }, - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:46:49 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 16, - 181 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/O60Xgrfdvl", - "expanded_url": "https://twitter.com/Prune602/status/1739764730561003611/photo/1", - "id_str": "1739764726412816384", - "indices": [ - 182, - 205 - ], - "media_key": "3_1739764726412816384", - "media_url_https": "https://pbs.twimg.com/media/GCTizQ6XMAAXMHK.jpg", - "type": "photo", - "url": "https://t.co/O60Xgrfdvl", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 433, - "y": 103, - "h": 128, - "w": 128 - }, - { - "x": 506, - "y": 187, - "h": 147, - "w": 147 - } - ] - }, - "medium": { - "faces": [ - { - "x": 405, - "y": 96, - "h": 120, - "w": 120 - }, - { - "x": 474, - "y": 175, - "h": 137, - "w": 137 - } - ] - }, - "small": { - "faces": [ - { - "x": 230, - "y": 54, - "h": 68, - "w": 68 - }, - { - "x": 268, - "y": 99, - "h": 78, - "w": 78 - } - ] - }, - "orig": { - "faces": [ - { - "x": 433, - "y": 103, - "h": 128, - "w": 128 - }, - { - "x": 506, - "y": 187, - "h": 147, - "w": 147 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/O60Xgrfdvl", - "expanded_url": "https://twitter.com/Prune602/status/1739764730561003611/photo/1", - "id_str": "1739764726412816384", - "indices": [ - 182, - 205 - ], - "media_key": "3_1739764726412816384", - "media_url_https": "https://pbs.twimg.com/media/GCTizQ6XMAAXMHK.jpg", - "type": "photo", - "url": "https://t.co/O60Xgrfdvl", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 433, - "y": 103, - "h": 128, - "w": 128 - }, - { - "x": 506, - "y": 187, - "h": 147, - "w": 147 - } - ] - }, - "medium": { - "faces": [ - { - "x": 405, - "y": 96, - "h": 120, - "w": 120 - }, - { - "x": 474, - "y": 175, - "h": 137, - "w": 137 - } - ] - }, - "small": { - "faces": [ - { - "x": 230, - "y": 54, - "h": 68, - "w": 68 - }, - { - "x": 268, - "y": 99, - "h": 78, - "w": 78 - } - ] - }, - "orig": { - "faces": [ - { - "x": 433, - "y": 103, - "h": 128, - "w": 128 - }, - { - "x": 506, - "y": 187, - "h": 147, - "w": 147 - } - ] - } - }, - "sizes": { - "large": { - "h": 720, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 720, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 3, - "w": 1280, - "h": 717 - }, - { - "x": 560, - "y": 0, - "w": 720, - "h": 720 - }, - { - "x": 648, - "y": 0, - "w": 632, - "h": 720 - }, - { - "x": 920, - "y": 0, - "w": 360, - "h": 720 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 720 - } - ] - } - } - ] - }, - "favorite_count": 22, - "favorited": false, - "full_text": "@JuliaDavisNews “They were quoting the head of Crimea, Mr. Aksyonov”\n\n~ Vladimir Solovyov\n\n🙋‍♀️ Can I share a quote from him?\n\n(SPOILERS: Someone said the same thing about Kherson) https://t.co/O60Xgrfdvl", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1739753183243633015", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": true, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "quoted_status_id_str": "1637291115589058560", - "quoted_status_permalink": { - "url": "https://t.co/SuMpG9e5nq", - "expanded": "https://twitter.com/prune602/status/1637291115589058560", - "display": "twitter.com/prune602/statu…" - }, - "reply_count": 5, - "retweet_count": 1, - "retweeted": false, - "user_id_str": "1498461179890524161", - "id_str": "1739764730561003611" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739766325575074224", - "sortIndex": "1739819664587882459", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739766325575074224", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMjc0MzI=", - "rest_id": "105327432", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 16 01:34:50 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "thedailybeast.com/author/julia-d…", - "expanded_url": "https://www.thedailybeast.com/author/julia-davis", - "url": "https://t.co/jkgE3TNxS4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 166272, - "followers_count": 456992, - "friends_count": 1616, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 7022, - "location": "United States", - "media_count": 21336, - "name": "Julia Davis", - "normal_followers_count": 456992, - "pinned_tweet_ids_str": [ - "1528031848240140288" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", - "profile_interstitial_type": "", - "screen_name": "JuliaDavisNews", - "statuses_count": 117116, - "translator_type": "none", - "url": "https://t.co/jkgE3TNxS4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739766325575074224" - ], - "editable_until_msecs": "1703631189969", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:53:09 +0000 2023", - "conversation_id_str": "1739766325575074224", - "display_text_range": [ - 0, - 139 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1498461179890524161", - "name": "Prune60", - "screen_name": "Prune602", - "indices": [ - 3, - 12 - ] - }, - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 14, - 29 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @Prune602: @JuliaDavisNews “We are the grown ups, we have the right to do whatever we want with our rear.”\n\n~ Vladimir Solovyov\n\nBy all…", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 5, - "retweeted": false, - "user_id_str": "105327432", - "id_str": "1739766325575074224", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739766055227015278", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDk4NDYxMTc5ODkwNTI0MTYx", - "rest_id": "1498461179890524161", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Tue Mar 01 00:53:24 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Electrical/Power Systems Engineer, Queen of Anglo-Saxonia, ✏️*sigh* there will be typos, and spontaneous threads", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 12530, - "followers_count": 2864, - "friends_count": 192, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 84, - "location": "", - "media_count": 13271, - "name": "Prune60", - "normal_followers_count": 2864, - "pinned_tweet_ids_str": [ - "1628994623828885504" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1498461179890524161/1661909729", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1517279835999150082/Bte8DwHy_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Prune602", - "statuses_count": 31466, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739766055227015278" - ], - "editable_until_msecs": "1703631125000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "10973", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:52:05 +0000 2023", - "conversation_id_str": "1739753183243633015", - "display_text_range": [ - 16, - 159 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/7RobTXznlt", - "expanded_url": "https://twitter.com/Prune602/status/1739766055227015278/photo/1", - "id_str": "1739766050667782144", - "indices": [ - 160, - 183 - ], - "media_key": "3_1739766050667782144", - "media_url_https": "https://pbs.twimg.com/media/GCTkAWJWYAAB-tG.jpg", - "type": "photo", - "url": "https://t.co/7RobTXznlt", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 546, - "y": 112, - "h": 171, - "w": 171 - }, - { - "x": 537, - "y": 833, - "h": 171, - "w": 171 - } - ] - }, - "medium": { - "faces": [ - { - "x": 462, - "y": 94, - "h": 144, - "w": 144 - }, - { - "x": 454, - "y": 705, - "h": 144, - "w": 144 - } - ] - }, - "small": { - "faces": [ - { - "x": 261, - "y": 53, - "h": 82, - "w": 82 - }, - { - "x": 257, - "y": 399, - "h": 82, - "w": 82 - } - ] - }, - "orig": { - "faces": [ - { - "x": 546, - "y": 112, - "h": 171, - "w": 171 - }, - { - "x": 537, - "y": 833, - "h": 171, - "w": 171 - } - ] - } - }, - "sizes": { - "large": { - "h": 1416, - "w": 1290, - "resize": "fit" - }, - "medium": { - "h": 1200, - "w": 1093, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 619, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1416, - "width": 1290, - "focus_rects": [ - { - "x": 0, - "y": 310, - "w": 1290, - "h": 722 - }, - { - "x": 0, - "y": 26, - "w": 1290, - "h": 1290 - }, - { - "x": 0, - "y": 0, - "w": 1242, - "h": 1416 - }, - { - "x": 0, - "y": 0, - "w": 708, - "h": 1416 - }, - { - "x": 0, - "y": 0, - "w": 1290, - "h": 1416 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "105327432", - "name": "Julia Davis", - "screen_name": "JuliaDavisNews", - "indices": [ - 0, - 15 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/7RobTXznlt", - "expanded_url": "https://twitter.com/Prune602/status/1739766055227015278/photo/1", - "id_str": "1739766050667782144", - "indices": [ - 160, - 183 - ], - "media_key": "3_1739766050667782144", - "media_url_https": "https://pbs.twimg.com/media/GCTkAWJWYAAB-tG.jpg", - "type": "photo", - "url": "https://t.co/7RobTXznlt", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 546, - "y": 112, - "h": 171, - "w": 171 - }, - { - "x": 537, - "y": 833, - "h": 171, - "w": 171 - } - ] - }, - "medium": { - "faces": [ - { - "x": 462, - "y": 94, - "h": 144, - "w": 144 - }, - { - "x": 454, - "y": 705, - "h": 144, - "w": 144 - } - ] - }, - "small": { - "faces": [ - { - "x": 261, - "y": 53, - "h": 82, - "w": 82 - }, - { - "x": 257, - "y": 399, - "h": 82, - "w": 82 - } - ] - }, - "orig": { - "faces": [ - { - "x": 546, - "y": 112, - "h": 171, - "w": 171 - }, - { - "x": 537, - "y": 833, - "h": 171, - "w": 171 - } - ] - } - }, - "sizes": { - "large": { - "h": 1416, - "w": 1290, - "resize": "fit" - }, - "medium": { - "h": 1200, - "w": 1093, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 619, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1416, - "width": 1290, - "focus_rects": [ - { - "x": 0, - "y": 310, - "w": 1290, - "h": 722 - }, - { - "x": 0, - "y": 26, - "w": 1290, - "h": 1290 - }, - { - "x": 0, - "y": 0, - "w": 1242, - "h": 1416 - }, - { - "x": 0, - "y": 0, - "w": 708, - "h": 1416 - }, - { - "x": 0, - "y": 0, - "w": 1290, - "h": 1416 - } - ] - } - } - ] - }, - "favorite_count": 31, - "favorited": false, - "full_text": "@JuliaDavisNews “We are the grown ups, we have the right to do whatever we want with our rear.”\n\n~ Vladimir Solovyov\n\nBy all means, make love not war Solovyov! https://t.co/7RobTXznlt", - "in_reply_to_screen_name": "JuliaDavisNews", - "in_reply_to_status_id_str": "1739753183243633015", - "in_reply_to_user_id_str": "105327432", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 1, - "reply_count": 1, - "retweet_count": 5, - "retweeted": false, - "user_id_str": "1498461179890524161", - "id_str": "1739766055227015278" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739766108083659049", - "sortIndex": "1739819664587882458", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739766108083659049", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzE3NTIxMw==", - "rest_id": "17175213", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed Nov 05 00:59:16 +0000 2008", - "default_profile": true, - "default_profile_image": false, - "description": "Defence editor at @TheEconomist, Visiting fellow at @warstudies King's College London.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "shashankjoshi.wordpress.com", - "expanded_url": "http://shashankjoshi.wordpress.com", - "url": "https://t.co/euRjbnk3WT", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 36102, - "followers_count": 194545, - "friends_count": 1787, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5880, - "location": "London", - "media_count": 4138, - "name": "Shashank Joshi", - "normal_followers_count": 194545, - "pinned_tweet_ids_str": [ - "1729977020002476084" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17175213/1688649354", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1509894709770076168/uNk9W2IH_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "shashj", - "statuses_count": 49138, - "translator_type": "none", - "url": "https://t.co/euRjbnk3WT", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739766108083659049" - ], - "editable_until_msecs": "1703631138000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "47289", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739746985652158755", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNTE1OTI4Ng==", - "rest_id": "25159286", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Wed Mar 18 21:29:04 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Official Twitter for U.S. Central Command (CENTCOM). \n\nCENTCOM History Documentary: https://t.co/CpeADerysF…", - "entities": { - "description": { - "urls": [ - { - "display_url": "centcom.mil/ABOUT-US/HISTO", - "expanded_url": "http://centcom.mil/ABOUT-US/HISTO", - "url": "https://t.co/CpeADerysF", - "indices": [ - 84, - 107 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "centcom.mil/ABOUT-US/HISTO…", - "expanded_url": "https://www.centcom.mil/ABOUT-US/HISTORY/", - "url": "https://t.co/zejC90uziB", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 6812, - "followers_count": 575783, - "friends_count": 1496, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5245, - "location": "MacDill AFB, Tampa, FL", - "media_count": 2198, - "name": "U.S. Central Command", - "normal_followers_count": 575783, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/25159286/1672577436", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1610948856052580353/rdDsOIn6_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "CENTCOM", - "statuses_count": 14839, - "translator_type": "none", - "url": "https://t.co/zejC90uziB", - "verified": false, - "verified_type": "Government", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739746985652158755" - ], - "editable_until_msecs": "1703626578000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "1540405", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "note_tweet": { - "is_expandable": true, - "note_tweet_results": { - "result": { - "id": "Tm90ZVR3ZWV0OjE3Mzk3NDY5ODU1NDczNzg2ODg=", - "text": "U.S. assets, to include the USS LABOON (DDG 58) and F/A-18 Super Hornets from the Eisenhower Carrier Strike Group, shot down twelve one-way attack drones, three anti-ship ballistic missiles, and two land attack cruise missiles in the Southern Red Sea that were fired by the Houthis over a 10 hour period which began at approximately 6:30 a.m. (Sanaa time) on December 26. There was no damage to ships in the area or reported injuries.", - "entity_set": { - "hashtags": [], - "symbols": [], - "urls": [], - "user_mentions": [] - }, - "richtext": { - "richtext_tags": [] - }, - "media": { - "inline_media": [] - } - } - } - }, - "legacy": { - "bookmark_count": 212, - "bookmarked": false, - "created_at": "Tue Dec 26 20:36:18 +0000 2023", - "conversation_id_str": "1739746985652158755", - "display_text_range": [ - 0, - 274 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/vRQ5e6Au6d", - "expanded_url": "https://twitter.com/CENTCOM/status/1739746985652158755/photo/1", - "id_str": "1739746982590300160", - "indices": [ - 275, - 298 - ], - "media_key": "3_1739746982590300160", - "media_url_https": "https://pbs.twimg.com/media/GCTSqcBaQAAEZ0c.jpg", - "type": "photo", - "url": "https://t.co/vRQ5e6Au6d", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - }, - "medium": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - }, - "small": { - "faces": [ - { - "x": 214, - "y": 66, - "h": 259, - "w": 259 - } - ] - }, - "orig": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - } - }, - "sizes": { - "large": { - "h": 651, - "w": 1199, - "resize": "fit" - }, - "medium": { - "h": 651, - "w": 1199, - "resize": "fit" - }, - "small": { - "h": 369, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 651, - "width": 1199, - "focus_rects": [ - { - "x": 18, - "y": 0, - "w": 1163, - "h": 651 - }, - { - "x": 274, - "y": 0, - "w": 651, - "h": 651 - }, - { - "x": 314, - "y": 0, - "w": 571, - "h": 651 - }, - { - "x": 436, - "y": 0, - "w": 326, - "h": 651 - }, - { - "x": 0, - "y": 0, - "w": 1199, - "h": 651 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/vRQ5e6Au6d", - "expanded_url": "https://twitter.com/CENTCOM/status/1739746985652158755/photo/1", - "id_str": "1739746982590300160", - "indices": [ - 275, - 298 - ], - "media_key": "3_1739746982590300160", - "media_url_https": "https://pbs.twimg.com/media/GCTSqcBaQAAEZ0c.jpg", - "type": "photo", - "url": "https://t.co/vRQ5e6Au6d", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - }, - "medium": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - }, - "small": { - "faces": [ - { - "x": 214, - "y": 66, - "h": 259, - "w": 259 - } - ] - }, - "orig": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - } - }, - "sizes": { - "large": { - "h": 651, - "w": 1199, - "resize": "fit" - }, - "medium": { - "h": 651, - "w": 1199, - "resize": "fit" - }, - "small": { - "h": 369, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 651, - "width": 1199, - "focus_rects": [ - { - "x": 18, - "y": 0, - "w": 1163, - "h": 651 - }, - { - "x": 274, - "y": 0, - "w": 651, - "h": 651 - }, - { - "x": 314, - "y": 0, - "w": 571, - "h": 651 - }, - { - "x": 436, - "y": 0, - "w": 326, - "h": 651 - }, - { - "x": 0, - "y": 0, - "w": 1199, - "h": 651 - } - ] - } - } - ] - }, - "favorite_count": 4598, - "favorited": false, - "full_text": "U.S. assets, to include the USS LABOON (DDG 58) and F/A-18 Super Hornets from the Eisenhower Carrier Strike Group, shot down twelve one-way attack drones, three anti-ship ballistic missiles, and two land attack cruise missiles in the Southern Red Sea that were fired by the… https://t.co/vRQ5e6Au6d", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 448, - "reply_count": 547, - "retweet_count": 1358, - "retweeted": false, - "user_id_str": "25159286", - "id_str": "1739746985652158755" - } - } - }, - "legacy": { - "bookmark_count": 16, - "bookmarked": false, - "created_at": "Tue Dec 26 21:52:18 +0000 2023", - "conversation_id_str": "1739766108083659049", - "display_text_range": [ - 0, - 135 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 236, - "favorited": false, - "full_text": "Prediction: there will be strikes on Houthi infrastructure in Yemen within a couple of weeks. This situation does not seem sustainable.", - "is_quote_status": true, - "lang": "en", - "quote_count": 5, - "quoted_status_id_str": "1739746985652158755", - "quoted_status_permalink": { - "url": "https://t.co/wQLbqG8b2R", - "expanded": "https://twitter.com/centcom/status/1739746985652158755", - "display": "twitter.com/centcom/status…" - }, - "reply_count": 22, - "retweet_count": 34, - "retweeted": false, - "user_id_str": "17175213", - "id_str": "1739766108083659049" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739765578007474333", - "sortIndex": "1739819664587882457", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739765578007474333", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo0NTQwOTk5MTk=", - "rest_id": "454099919", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Tue Jan 03 16:36:02 +0000 2012", - "default_profile": false, - "default_profile_image": false, - "description": "Professor of Political Science, Director of Freeman Spogli Institute & Hoover Senior Fellow all at Stanford University. U.S. Ambassador to Russia, 2012-2014.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "michaelmcfaul.substack.com", - "expanded_url": "https://michaelmcfaul.substack.com/", - "url": "https://t.co/Mdi9pqQ58Q", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 46606, - "followers_count": 900854, - "friends_count": 2092, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 10476, - "location": "Stanford, California", - "media_count": 3445, - "name": "Michael McFaul", - "normal_followers_count": 900854, - "pinned_tweet_ids_str": [ - "1515923887720071168" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/454099919/1667071005", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1483538323368910851/gqSpEuaL_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "McFaul", - "statuses_count": 122048, - "translator_type": "none", - "url": "https://t.co/Mdi9pqQ58Q", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739765578007474333" - ], - "editable_until_msecs": "1703631011735", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:50:11 +0000 2023", - "conversation_id_str": "1739765578007474333", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "82299300", - "name": "Alexey Navalny", - "screen_name": "navalny", - "indices": [ - 3, - 11 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @navalny: 1/9 I am your new Santa Claus.\n\nWell, I now have a sheepskin coat, an ushanka hat (a fur hat with ear-covering flaps), and soo…", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 2581, - "retweeted": false, - "user_id_str": "454099919", - "id_str": "1739765578007474333", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739557690060210196", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo4MjI5OTMwMA==", - "rest_id": "82299300", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Wed Oct 14 07:12:44 +0000 2009", - "default_profile": true, - "default_profile_image": false, - "description": "Основатель Фонда борьбы с коррупцией, лидер партии Россия Будущего.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "navalny.com", - "expanded_url": "http://navalny.com/", - "url": "http://t.co/vUATkvwKPm", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 11557, - "followers_count": 2954112, - "friends_count": 1256, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 9037, - "location": "Moscow", - "media_count": 11849, - "name": "Alexey Navalny", - "normal_followers_count": 2954112, - "pinned_tweet_ids_str": [ - "1627632098608644099" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/82299300/1386663884", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1532731296014913543/kWwAPiq7_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "navalny", - "statuses_count": 137914, - "translator_type": "none", - "url": "http://t.co/vUATkvwKPm", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739557690060210196" - ], - "editable_until_msecs": "1703581447000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "2235368", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 322, - "bookmarked": false, - "created_at": "Tue Dec 26 08:04:07 +0000 2023", - "conversation_id_str": "1739557690060210196", - "display_text_range": [ - 0, - 246 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 12829, - "favorited": false, - "full_text": "1/9 I am your new Santa Claus.\n\nWell, I now have a sheepskin coat, an ushanka hat (a fur hat with ear-covering flaps), and soon I will get valenki (a traditional Russian winter footwear). I have grown a beard for the 20 days of my transportation.", - "is_quote_status": false, - "lang": "en", - "quote_count": 348, - "reply_count": 406, - "retweet_count": 2581, - "retweeted": false, - "user_id_str": "82299300", - "id_str": "1739557690060210196" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739764275973955929", - "sortIndex": "1739819664587882456", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739764275973955929", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjMwMTg2NTM=", - "rest_id": "163018653", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Mon Jul 05 09:44:27 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Ambassador-at-large @MFA_Ukraine, Amb to Austria (2014-2021). Author of “Ukraine vs Darkness. Undiplomatic Thoughts”. Personal account.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "amazon.com/Ukraine-vs-Dar…", - "expanded_url": "https://www.amazon.com/Ukraine-vs-Darkness-Undiplomatic-Ukrainian-ebook/dp/B08WKF3B2K", - "url": "https://t.co/ERA9Ntt061", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 27535, - "followers_count": 264737, - "friends_count": 1232, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 4333, - "location": "Kyiv", - "media_count": 6463, - "name": "olexander scherba🇺🇦", - "normal_followers_count": 264737, - "pinned_tweet_ids_str": [ - "1396956590713020416" - ], - "possibly_sensitive": true, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/163018653/1646220178", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/671642770549956608/yR9Is6BD_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "olex_scherba", - "statuses_count": 39119, - "translator_type": "none", - "url": "https://t.co/ERA9Ntt061", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1696586841602834861", - "professional_type": "Business", - "category": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739764275973955929" - ], - "editable_until_msecs": "1703630701000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "17133", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPad", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739744292015407202", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTM3MTMwODc1Mjk2NTYzMjAw", - "rest_id": "1537130875296563200", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Wed Jun 15 17:54:58 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "https://t.co/ecJv657h6u", - "entities": { - "description": { - "urls": [ - { - "display_url": "buymeacoffee.com/jayinkyiv", - "expanded_url": "https://www.buymeacoffee.com/jayinkyiv", - "url": "https://t.co/ecJv657h6u", - "indices": [ - 0, - 23 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "prytulafoundation.org", - "expanded_url": "https://prytulafoundation.org/", - "url": "https://t.co/iJ6X5XGm56", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 28632, - "followers_count": 66558, - "friends_count": 1329, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 1484, - "location": "Kyiv", - "media_count": 8144, - "name": "Jay in Kyiv", - "normal_followers_count": 66558, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1677733643811160065/KvmrKArN_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "JayinKyiv", - "statuses_count": 24179, - "translator_type": "none", - "url": "https://t.co/iJ6X5XGm56", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739744292015407202" - ], - "editable_until_msecs": "1703625936000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "76112", - "state": "EnabledWithCount" - }, - "source": "Twitter for Android", - "note_tweet": { - "is_expandable": true, - "note_tweet_results": { - "result": { - "id": "Tm90ZVR3ZWV0OjE3Mzk3NDQyOTE5NDQxMDgwMzI=", - "text": "No matter the level of Russian losses at the front, Putin's domestic situation will be fine as long as Russians perceive them as continuing to take land.\n\nThe key to bringing down Putin and putting an end to his entire global terror binge is to humiliate him in Ukraine.\n\nUkrainians are willing to do all the work if just supplied the weapons to do it.\n\nThe fact that the civilized world is wasting such a golden opportunity in favor of instead choosing decades of global war is incredible.", - "entity_set": { - "hashtags": [], - "symbols": [], - "urls": [], - "user_mentions": [] - } - } - } - }, - "legacy": { - "bookmark_count": 25, - "bookmarked": false, - "created_at": "Tue Dec 26 20:25:36 +0000 2023", - "conversation_id_str": "1739744292015407202", - "display_text_range": [ - 0, - 271 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 2456, - "favorited": false, - "full_text": "No matter the level of Russian losses at the front, Putin's domestic situation will be fine as long as Russians perceive them as continuing to take land.\n\nThe key to bringing down Putin and putting an end to his entire global terror binge is to humiliate him in Ukraine.…", - "is_quote_status": false, - "lang": "en", - "quote_count": 16, - "reply_count": 88, - "retweet_count": 567, - "retweeted": false, - "user_id_str": "1537130875296563200", - "id_str": "1739744292015407202" - } - } - }, - "legacy": { - "bookmark_count": 2, - "bookmarked": false, - "created_at": "Tue Dec 26 21:45:01 +0000 2023", - "conversation_id_str": "1739764275973955929", - "display_text_range": [ - 0, - 281 - ], - "entities": { - "hashtags": [ - { - "indices": [ - 264, - 281 - ], - "text": "StandWithUkraine" - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 296, - "favorited": false, - "full_text": "Just to think - finally America has a partner in a key part of the world that isn’t in need of building a nation, promoting democracy or shedding US blood. A partner who wants one thing: fight for freedom & win.\n\nWould America want to throw it under the bus?\n\n#StandWithUkraine", - "is_quote_status": true, - "lang": "en", - "quote_count": 2, - "quoted_status_id_str": "1739744292015407202", - "quoted_status_permalink": { - "url": "https://t.co/2n3PGwz2rh", - "expanded": "https://twitter.com/jayinkyiv/status/1739744292015407202", - "display": "twitter.com/jayinkyiv/stat…" - }, - "reply_count": 16, - "retweet_count": 100, - "retweeted": false, - "user_id_str": "163018653", - "id_str": "1739764275973955929" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739762003256938683", - "sortIndex": "1739819664587882455", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739762003256938683", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjgyNzE0OA==", - "rest_id": "16827148", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Fri Oct 17 16:55:19 +0000 2008", - "default_profile": false, - "default_profile_image": false, - "description": "Ukraine correspondent @FT. 13+ years reporting in Ukraine. Author of THE WAR CAME TO US, published by @BloomsburyBooks, out now: https://t.co/Vfr0Qg7iIt", - "entities": { - "description": { - "urls": [ - { - "display_url": "linktr.ee/thewarcametous", - "expanded_url": "http://linktr.ee/thewarcametous", - "url": "https://t.co/Vfr0Qg7iIt", - "indices": [ - 129, - 152 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "ft.com/christopher-mi…", - "expanded_url": "https://www.ft.com/christopher-miller", - "url": "https://t.co/gCKlU6Hspj", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 54164, - "followers_count": 412997, - "friends_count": 4339, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 10748, - "location": "Kyiv via Bakhmut; also NYC", - "media_count": 8235, - "name": "Christopher Miller", - "normal_followers_count": 412997, - "pinned_tweet_ids_str": [ - "1681278741144633344" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16827148/1679318245", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1530061394619600896/GR0eYnkX_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "ChristopherJM", - "statuses_count": 73513, - "translator_type": "none", - "url": "https://t.co/gCKlU6Hspj", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1504925671306534915", - "professional_type": "Creator", - "category": [ - { - "id": 955, - "name": "Journalist", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "card": { - "rest_id": "https://t.co/L0YWz1aIiC", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 367, - "width": 700, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 150, - "width": 266, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "Debt-funded scheme would sidestep Hungary to quickly release money for Kyiv", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.ft.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 320, - "width": 569, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 394, - "width": 700, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "4898091", - "path": [] - } - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 367, - "width": 700, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 81, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 394, - "width": 700, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 394, - "width": 700, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "ft.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 42, - "green": 46, - "red": 45 - }, - "percentage": 51.36 - }, - { - "rgb": { - "blue": 122, - "green": 109, - "red": 91 - }, - "percentage": 36.57 - }, - { - "rgb": { - "blue": 95, - "green": 107, - "red": 122 - }, - "percentage": 9.38 - }, - { - "rgb": { - "blue": 81, - "green": 73, - "red": 61 - }, - "percentage": 1.6 - }, - { - "rgb": { - "blue": 170, - "green": 198, - "red": 237 - }, - "percentage": 0.63 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "EU readies €20bn plan B to fund Ukraine", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 42, - "green": 46, - "red": 45 - }, - "percentage": 51.36 - }, - { - "rgb": { - "blue": 122, - "green": 109, - "red": 91 - }, - "percentage": 36.57 - }, - { - "rgb": { - "blue": 95, - "green": 107, - "red": 122 - }, - "percentage": 9.38 - }, - { - "rgb": { - "blue": 81, - "green": 73, - "red": 61 - }, - "percentage": 1.6 - }, - { - "rgb": { - "blue": 170, - "green": 198, - "red": 237 - }, - "percentage": 0.63 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 394, - "width": 700, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 42, - "green": 46, - "red": 45 - }, - "percentage": 51.36 - }, - { - "rgb": { - "blue": 122, - "green": 109, - "red": 91 - }, - "percentage": 36.57 - }, - { - "rgb": { - "blue": 95, - "green": 107, - "red": 122 - }, - "percentage": 9.38 - }, - { - "rgb": { - "blue": 81, - "green": 73, - "red": 61 - }, - "percentage": 1.6 - }, - { - "rgb": { - "blue": 170, - "green": 198, - "red": 237 - }, - "percentage": 0.63 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 394, - "width": 700, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/L0YWz1aIiC", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 394, - "width": 700, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/L0YWz1aIiC", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjo0ODk4MDkx", - "rest_id": "4898091", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Apr 16 16:54:19 +0000 2007", - "default_profile": false, - "default_profile_image": false, - "description": "This account is now closed. For the best of FT journalism, including breaking news and analysis, follow @ft", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ft.com", - "expanded_url": "https://www.ft.com", - "url": "https://t.co/XKMxG94Z9c", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 89, - "followers_count": 7590674, - "friends_count": 1035, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 48303, - "location": "London / New York / Hong Kong", - "media_count": 24308, - "name": "Financial Times", - "normal_followers_count": 7590674, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4898091/1694438163", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/931161479398686721/FI3te2Sw_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "FinancialTimes", - "statuses_count": 337121, - "translator_type": "none", - "url": "https://t.co/XKMxG94Z9c", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739762003256938683" - ], - "editable_until_msecs": "1703630159000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "36928", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 11, - "bookmarked": false, - "created_at": "Tue Dec 26 21:35:59 +0000 2023", - "conversation_id_str": "1739762003256938683", - "display_text_range": [ - 0, - 227 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "on.ft.com/3NGkKvx", - "expanded_url": "https://on.ft.com/3NGkKvx", - "url": "https://t.co/L0YWz1aIiC", - "indices": [ - 204, - 227 - ] - } - ], - "user_mentions": [ - { - "id_str": "783049484465008640", - "name": "Paola Tamma", - "screen_name": "paolatamma", - "indices": [ - 181, - 192 - ] - }, - { - "id_str": "22558481", - "name": "Henry Foy", - "screen_name": "HenryJFoy", - "indices": [ - 193, - 203 - ] - } - ] - }, - "favorite_count": 629, - "favorited": false, - "full_text": "The EU is preparing a back-up plan worth up to €20bn for Ukraine, using a debt structure that sidesteps the objections of Hungary’s Viktor Orbán about funding the war-torn country.\n@paolatamma @HenryJFoy\nhttps://t.co/L0YWz1aIiC", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 6, - "reply_count": 9, - "retweet_count": 175, - "retweeted": false, - "user_id_str": "16827148", - "id_str": "1739762003256938683" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739761296814518681", - "sortIndex": "1739819664587882454", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739761296814518681", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjgyNzE0OA==", - "rest_id": "16827148", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Fri Oct 17 16:55:19 +0000 2008", - "default_profile": false, - "default_profile_image": false, - "description": "Ukraine correspondent @FT. 13+ years reporting in Ukraine. Author of THE WAR CAME TO US, published by @BloomsburyBooks, out now: https://t.co/Vfr0Qg7iIt", - "entities": { - "description": { - "urls": [ - { - "display_url": "linktr.ee/thewarcametous", - "expanded_url": "http://linktr.ee/thewarcametous", - "url": "https://t.co/Vfr0Qg7iIt", - "indices": [ - 129, - 152 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "ft.com/christopher-mi…", - "expanded_url": "https://www.ft.com/christopher-miller", - "url": "https://t.co/gCKlU6Hspj", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 54164, - "followers_count": 412997, - "friends_count": 4339, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 10748, - "location": "Kyiv via Bakhmut; also NYC", - "media_count": 8235, - "name": "Christopher Miller", - "normal_followers_count": 412997, - "pinned_tweet_ids_str": [ - "1681278741144633344" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16827148/1679318245", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1530061394619600896/GR0eYnkX_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "ChristopherJM", - "statuses_count": 73513, - "translator_type": "none", - "url": "https://t.co/gCKlU6Hspj", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1504925671306534915", - "professional_type": "Creator", - "category": [ - { - "id": 955, - "name": "Journalist", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739761296814518681" - ], - "editable_until_msecs": "1703629991000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "18938", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 2, - "bookmarked": false, - "created_at": "Tue Dec 26 21:33:11 +0000 2023", - "conversation_id_str": "1739761296814518681", - "display_text_range": [ - 0, - 257 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/vClkNp5w2o", - "expanded_url": "https://twitter.com/ChristopherJM/status/1739761296814518681/photo/1", - "id_str": "1739761282839105536", - "indices": [ - 258, - 281 - ], - "media_key": "3_1739761282839105536", - "media_url_https": "https://pbs.twimg.com/media/GCTfq0maUAA9RNX.jpg", - "type": "photo", - "url": "https://t.co/vClkNp5w2o", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "all": { - "tags": [ - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - }, - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - }, - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - } - ] - }, - "large": { - "faces": [ - { - "x": 324, - "y": 1446, - "h": 124, - "w": 124 - }, - { - "x": 866, - "y": 284, - "h": 186, - "w": 186 - } - ] - }, - "medium": { - "faces": [ - { - "x": 189, - "y": 847, - "h": 72, - "w": 72 - }, - { - "x": 507, - "y": 166, - "h": 108, - "w": 108 - } - ] - }, - "small": { - "faces": [ - { - "x": 107, - "y": 480, - "h": 41, - "w": 41 - }, - { - "x": 287, - "y": 94, - "h": 61, - "w": 61 - } - ] - }, - "orig": { - "faces": [ - { - "x": 324, - "y": 1446, - "h": 124, - "w": 124 - }, - { - "x": 866, - "y": 284, - "h": 186, - "w": 186 - } - ] - } - }, - "sizes": { - "large": { - "h": 2048, - "w": 1536, - "resize": "fit" - }, - "medium": { - "h": 1200, - "w": 900, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 510, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 2048, - "width": 1536, - "focus_rects": [ - { - "x": 0, - "y": 30, - "w": 1536, - "h": 860 - }, - { - "x": 0, - "y": 0, - "w": 1536, - "h": 1536 - }, - { - "x": 0, - "y": 0, - "w": 1536, - "h": 1751 - }, - { - "x": 460, - "y": 0, - "w": 1024, - "h": 2048 - }, - { - "x": 0, - "y": 0, - "w": 1536, - "h": 2048 - } - ] - } - }, - { - "display_url": "pic.twitter.com/vClkNp5w2o", - "expanded_url": "https://twitter.com/ChristopherJM/status/1739761296814518681/photo/1", - "id_str": "1739761282830745600", - "indices": [ - 258, - 281 - ], - "media_key": "3_1739761282830745600", - "media_url_https": "https://pbs.twimg.com/media/GCTfq0kawAAwwJS.jpg", - "type": "photo", - "url": "https://t.co/vClkNp5w2o", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "all": { - "tags": [ - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - }, - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - }, - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - } - ] - }, - "large": { - "faces": [ - { - "x": 648, - "y": 636, - "h": 156, - "w": 156 - } - ] - }, - "medium": { - "faces": [ - { - "x": 379, - "y": 372, - "h": 91, - "w": 91 - } - ] - }, - "small": { - "faces": [ - { - "x": 215, - "y": 211, - "h": 51, - "w": 51 - } - ] - }, - "orig": { - "faces": [ - { - "x": 648, - "y": 636, - "h": 156, - "w": 156 - } - ] - } - }, - "sizes": { - "large": { - "h": 1536, - "w": 2048, - "resize": "fit" - }, - "medium": { - "h": 900, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 510, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1536, - "width": 2048, - "focus_rects": [ - { - "x": 0, - "y": 195, - "w": 2048, - "h": 1147 - }, - { - "x": 0, - "y": 0, - "w": 1536, - "h": 1536 - }, - { - "x": 0, - "y": 0, - "w": 1347, - "h": 1536 - }, - { - "x": 0, - "y": 0, - "w": 768, - "h": 1536 - }, - { - "x": 0, - "y": 0, - "w": 2048, - "h": 1536 - } - ] - } - }, - { - "display_url": "pic.twitter.com/vClkNp5w2o", - "expanded_url": "https://twitter.com/ChristopherJM/status/1739761296814518681/photo/1", - "id_str": "1739761282839203840", - "indices": [ - 258, - 281 - ], - "media_key": "3_1739761282839203840", - "media_url_https": "https://pbs.twimg.com/media/GCTfq0mb0AAr3Fx.jpg", - "type": "photo", - "url": "https://t.co/vClkNp5w2o", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "all": { - "tags": [ - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - }, - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - }, - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - } - ] - }, - "large": { - "faces": [ - { - "x": 382, - "y": 1754, - "h": 76, - "w": 76 - }, - { - "x": 146, - "y": 1194, - "h": 78, - "w": 78 - }, - { - "x": 72, - "y": 1200, - "h": 78, - "w": 78 - }, - { - "x": 368, - "y": 1650, - "h": 88, - "w": 88 - }, - { - "x": 50, - "y": 948, - "h": 92, - "w": 92 - }, - { - "x": 1212, - "y": 1688, - "h": 96, - "w": 96 - } - ] - }, - "medium": { - "faces": [ - { - "x": 223, - "y": 1027, - "h": 44, - "w": 44 - }, - { - "x": 85, - "y": 699, - "h": 45, - "w": 45 - }, - { - "x": 42, - "y": 703, - "h": 45, - "w": 45 - }, - { - "x": 215, - "y": 966, - "h": 51, - "w": 51 - }, - { - "x": 29, - "y": 555, - "h": 53, - "w": 53 - }, - { - "x": 710, - "y": 989, - "h": 56, - "w": 56 - } - ] - }, - "small": { - "faces": [ - { - "x": 126, - "y": 582, - "h": 25, - "w": 25 - }, - { - "x": 48, - "y": 396, - "h": 25, - "w": 25 - }, - { - "x": 23, - "y": 398, - "h": 25, - "w": 25 - }, - { - "x": 122, - "y": 547, - "h": 29, - "w": 29 - }, - { - "x": 16, - "y": 314, - "h": 30, - "w": 30 - }, - { - "x": 402, - "y": 560, - "h": 31, - "w": 31 - } - ] - }, - "orig": { - "faces": [ - { - "x": 382, - "y": 1754, - "h": 76, - "w": 76 - }, - { - "x": 146, - "y": 1194, - "h": 78, - "w": 78 - }, - { - "x": 72, - "y": 1200, - "h": 78, - "w": 78 - }, - { - "x": 368, - "y": 1650, - "h": 88, - "w": 88 - }, - { - "x": 50, - "y": 948, - "h": 92, - "w": 92 - }, - { - "x": 1212, - "y": 1688, - "h": 96, - "w": 96 - } - ] - } - }, - "sizes": { - "large": { - "h": 2048, - "w": 1536, - "resize": "fit" - }, - "medium": { - "h": 1200, - "w": 900, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 510, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 2048, - "width": 1536, - "focus_rects": [ - { - "x": 0, - "y": 542, - "w": 1536, - "h": 860 - }, - { - "x": 0, - "y": 204, - "w": 1536, - "h": 1536 - }, - { - "x": 0, - "y": 97, - "w": 1536, - "h": 1751 - }, - { - "x": 51, - "y": 0, - "w": 1024, - "h": 2048 - }, - { - "x": 0, - "y": 0, - "w": 1536, - "h": 2048 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "15447034", - "name": "Powell's Books", - "screen_name": "Powells", - "indices": [ - 69, - 77 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/vClkNp5w2o", - "expanded_url": "https://twitter.com/ChristopherJM/status/1739761296814518681/photo/1", - "id_str": "1739761282839105536", - "indices": [ - 258, - 281 - ], - "media_key": "3_1739761282839105536", - "media_url_https": "https://pbs.twimg.com/media/GCTfq0maUAA9RNX.jpg", - "type": "photo", - "url": "https://t.co/vClkNp5w2o", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "all": { - "tags": [ - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - }, - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - }, - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - } - ] - }, - "large": { - "faces": [ - { - "x": 324, - "y": 1446, - "h": 124, - "w": 124 - }, - { - "x": 866, - "y": 284, - "h": 186, - "w": 186 - } - ] - }, - "medium": { - "faces": [ - { - "x": 189, - "y": 847, - "h": 72, - "w": 72 - }, - { - "x": 507, - "y": 166, - "h": 108, - "w": 108 - } - ] - }, - "small": { - "faces": [ - { - "x": 107, - "y": 480, - "h": 41, - "w": 41 - }, - { - "x": 287, - "y": 94, - "h": 61, - "w": 61 - } - ] - }, - "orig": { - "faces": [ - { - "x": 324, - "y": 1446, - "h": 124, - "w": 124 - }, - { - "x": 866, - "y": 284, - "h": 186, - "w": 186 - } - ] - } - }, - "sizes": { - "large": { - "h": 2048, - "w": 1536, - "resize": "fit" - }, - "medium": { - "h": 1200, - "w": 900, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 510, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 2048, - "width": 1536, - "focus_rects": [ - { - "x": 0, - "y": 30, - "w": 1536, - "h": 860 - }, - { - "x": 0, - "y": 0, - "w": 1536, - "h": 1536 - }, - { - "x": 0, - "y": 0, - "w": 1536, - "h": 1751 - }, - { - "x": 460, - "y": 0, - "w": 1024, - "h": 2048 - }, - { - "x": 0, - "y": 0, - "w": 1536, - "h": 2048 - } - ] - } - }, - { - "display_url": "pic.twitter.com/vClkNp5w2o", - "expanded_url": "https://twitter.com/ChristopherJM/status/1739761296814518681/photo/1", - "id_str": "1739761282830745600", - "indices": [ - 258, - 281 - ], - "media_key": "3_1739761282830745600", - "media_url_https": "https://pbs.twimg.com/media/GCTfq0kawAAwwJS.jpg", - "type": "photo", - "url": "https://t.co/vClkNp5w2o", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "all": { - "tags": [ - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - }, - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - }, - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - } - ] - }, - "large": { - "faces": [ - { - "x": 648, - "y": 636, - "h": 156, - "w": 156 - } - ] - }, - "medium": { - "faces": [ - { - "x": 379, - "y": 372, - "h": 91, - "w": 91 - } - ] - }, - "small": { - "faces": [ - { - "x": 215, - "y": 211, - "h": 51, - "w": 51 - } - ] - }, - "orig": { - "faces": [ - { - "x": 648, - "y": 636, - "h": 156, - "w": 156 - } - ] - } - }, - "sizes": { - "large": { - "h": 1536, - "w": 2048, - "resize": "fit" - }, - "medium": { - "h": 900, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 510, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1536, - "width": 2048, - "focus_rects": [ - { - "x": 0, - "y": 195, - "w": 2048, - "h": 1147 - }, - { - "x": 0, - "y": 0, - "w": 1536, - "h": 1536 - }, - { - "x": 0, - "y": 0, - "w": 1347, - "h": 1536 - }, - { - "x": 0, - "y": 0, - "w": 768, - "h": 1536 - }, - { - "x": 0, - "y": 0, - "w": 2048, - "h": 1536 - } - ] - } - }, - { - "display_url": "pic.twitter.com/vClkNp5w2o", - "expanded_url": "https://twitter.com/ChristopherJM/status/1739761296814518681/photo/1", - "id_str": "1739761282839203840", - "indices": [ - 258, - 281 - ], - "media_key": "3_1739761282839203840", - "media_url_https": "https://pbs.twimg.com/media/GCTfq0mb0AAr3Fx.jpg", - "type": "photo", - "url": "https://t.co/vClkNp5w2o", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "all": { - "tags": [ - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - }, - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - }, - { - "user_id": "20597436", - "name": "Bloomsbury U.S.", - "screen_name": "BloomsburyPub", - "type": "user" - } - ] - }, - "large": { - "faces": [ - { - "x": 382, - "y": 1754, - "h": 76, - "w": 76 - }, - { - "x": 146, - "y": 1194, - "h": 78, - "w": 78 - }, - { - "x": 72, - "y": 1200, - "h": 78, - "w": 78 - }, - { - "x": 368, - "y": 1650, - "h": 88, - "w": 88 - }, - { - "x": 50, - "y": 948, - "h": 92, - "w": 92 - }, - { - "x": 1212, - "y": 1688, - "h": 96, - "w": 96 - } - ] - }, - "medium": { - "faces": [ - { - "x": 223, - "y": 1027, - "h": 44, - "w": 44 - }, - { - "x": 85, - "y": 699, - "h": 45, - "w": 45 - }, - { - "x": 42, - "y": 703, - "h": 45, - "w": 45 - }, - { - "x": 215, - "y": 966, - "h": 51, - "w": 51 - }, - { - "x": 29, - "y": 555, - "h": 53, - "w": 53 - }, - { - "x": 710, - "y": 989, - "h": 56, - "w": 56 - } - ] - }, - "small": { - "faces": [ - { - "x": 126, - "y": 582, - "h": 25, - "w": 25 - }, - { - "x": 48, - "y": 396, - "h": 25, - "w": 25 - }, - { - "x": 23, - "y": 398, - "h": 25, - "w": 25 - }, - { - "x": 122, - "y": 547, - "h": 29, - "w": 29 - }, - { - "x": 16, - "y": 314, - "h": 30, - "w": 30 - }, - { - "x": 402, - "y": 560, - "h": 31, - "w": 31 - } - ] - }, - "orig": { - "faces": [ - { - "x": 382, - "y": 1754, - "h": 76, - "w": 76 - }, - { - "x": 146, - "y": 1194, - "h": 78, - "w": 78 - }, - { - "x": 72, - "y": 1200, - "h": 78, - "w": 78 - }, - { - "x": 368, - "y": 1650, - "h": 88, - "w": 88 - }, - { - "x": 50, - "y": 948, - "h": 92, - "w": 92 - }, - { - "x": 1212, - "y": 1688, - "h": 96, - "w": 96 - } - ] - } - }, - "sizes": { - "large": { - "h": 2048, - "w": 1536, - "resize": "fit" - }, - "medium": { - "h": 1200, - "w": 900, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 510, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 2048, - "width": 1536, - "focus_rects": [ - { - "x": 0, - "y": 542, - "w": 1536, - "h": 860 - }, - { - "x": 0, - "y": 204, - "w": 1536, - "h": 1536 - }, - { - "x": 0, - "y": 97, - "w": 1536, - "h": 1751 - }, - { - "x": 51, - "y": 0, - "w": 1024, - "h": 2048 - }, - { - "x": 0, - "y": 0, - "w": 1536, - "h": 2048 - } - ] - } - } - ] - }, - "favorite_count": 227, - "favorited": false, - "full_text": "I spent Christmas in my hometown of Portland, Oregon, and stopped by @Powells, where I stumbled upon a giant poster of my book cover in the window. If you’re in PDX, Powell’s has a few autographed copies of The War Came To Us: Life And Death In Ukraine. 🇺🇦📖 https://t.co/vClkNp5w2o", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 1, - "reply_count": 5, - "retweet_count": 13, - "retweeted": false, - "user_id_str": "16827148", - "id_str": "1739761296814518681" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739759775410164061", - "sortIndex": "1739819664587882453", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739759775410164061", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzE3NTIxMw==", - "rest_id": "17175213", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed Nov 05 00:59:16 +0000 2008", - "default_profile": true, - "default_profile_image": false, - "description": "Defence editor at @TheEconomist, Visiting fellow at @warstudies King's College London.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "shashankjoshi.wordpress.com", - "expanded_url": "http://shashankjoshi.wordpress.com", - "url": "https://t.co/euRjbnk3WT", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 36102, - "followers_count": 194545, - "friends_count": 1787, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5880, - "location": "London", - "media_count": 4138, - "name": "Shashank Joshi", - "normal_followers_count": 194545, - "pinned_tweet_ids_str": [ - "1729977020002476084" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17175213/1688649354", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1509894709770076168/uNk9W2IH_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "shashj", - "statuses_count": 49138, - "translator_type": "none", - "url": "https://t.co/euRjbnk3WT", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/00JHZuIz7v", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 367, - "width": 700, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 150, - "width": 266, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "Debt-funded scheme would sidestep Hungary to quickly release money for Kyiv", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.ft.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 320, - "width": 569, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 394, - "width": 700, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "4898091", - "path": [] - } - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 367, - "width": 700, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 81, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 394, - "width": 700, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 394, - "width": 700, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "ft.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 42, - "green": 46, - "red": 45 - }, - "percentage": 51.36 - }, - { - "rgb": { - "blue": 122, - "green": 109, - "red": 91 - }, - "percentage": 36.57 - }, - { - "rgb": { - "blue": 95, - "green": 107, - "red": 122 - }, - "percentage": 9.38 - }, - { - "rgb": { - "blue": 81, - "green": 73, - "red": 61 - }, - "percentage": 1.6 - }, - { - "rgb": { - "blue": 170, - "green": 198, - "red": 237 - }, - "percentage": 0.63 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "EU readies €20bn plan B to fund Ukraine", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 42, - "green": 46, - "red": 45 - }, - "percentage": 51.36 - }, - { - "rgb": { - "blue": 122, - "green": 109, - "red": 91 - }, - "percentage": 36.57 - }, - { - "rgb": { - "blue": 95, - "green": 107, - "red": 122 - }, - "percentage": 9.38 - }, - { - "rgb": { - "blue": 81, - "green": 73, - "red": 61 - }, - "percentage": 1.6 - }, - { - "rgb": { - "blue": 170, - "green": 198, - "red": 237 - }, - "percentage": 0.63 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 394, - "width": 700, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 42, - "green": 46, - "red": 45 - }, - "percentage": 51.36 - }, - { - "rgb": { - "blue": 122, - "green": 109, - "red": 91 - }, - "percentage": 36.57 - }, - { - "rgb": { - "blue": 95, - "green": 107, - "red": 122 - }, - "percentage": 9.38 - }, - { - "rgb": { - "blue": 81, - "green": 73, - "red": 61 - }, - "percentage": 1.6 - }, - { - "rgb": { - "blue": 170, - "green": 198, - "red": 237 - }, - "percentage": 0.63 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 394, - "width": 700, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/00JHZuIz7v", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 394, - "width": 700, - "url": "https://pbs.twimg.com/card_img/1739753095742062592/TXEN_Uy6?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/00JHZuIz7v", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjo0ODk4MDkx", - "rest_id": "4898091", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Apr 16 16:54:19 +0000 2007", - "default_profile": false, - "default_profile_image": false, - "description": "This account is now closed. For the best of FT journalism, including breaking news and analysis, follow @ft", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ft.com", - "expanded_url": "https://www.ft.com", - "url": "https://t.co/XKMxG94Z9c", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 89, - "followers_count": 7590674, - "friends_count": 1035, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 48303, - "location": "London / New York / Hong Kong", - "media_count": 24308, - "name": "Financial Times", - "normal_followers_count": 7590674, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/4898091/1694438163", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/931161479398686721/FI3te2Sw_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "FinancialTimes", - "statuses_count": 337121, - "translator_type": "none", - "url": "https://t.co/XKMxG94Z9c", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739759775410164061" - ], - "editable_until_msecs": "1703629628000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "76024", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 38, - "bookmarked": false, - "created_at": "Tue Dec 26 21:27:08 +0000 2023", - "conversation_id_str": "1739759775410164061", - "display_text_range": [ - 0, - 216 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "ft.com/content/7ef39c…", - "expanded_url": "https://www.ft.com/content/7ef39cca-262d-4c52-8b59-1ac008ca7f56", - "url": "https://t.co/00JHZuIz7v", - "indices": [ - 193, - 216 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 1114, - "favorited": false, - "full_text": "Doesn’t exactly scream war fatigue, does it? “The EU is preparing a back-up plan worth up to €20bn for Ukraine, using a debt structure that sidesteps the objections of Hungary’s Viktor Orbán…” https://t.co/00JHZuIz7v", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 12, - "reply_count": 26, - "retweet_count": 238, - "retweeted": false, - "user_id_str": "17175213", - "id_str": "1739759775410164061" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739759572838220248", - "sortIndex": "1739819664587882452", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739759572838220248", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjgyNzE0OA==", - "rest_id": "16827148", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Fri Oct 17 16:55:19 +0000 2008", - "default_profile": false, - "default_profile_image": false, - "description": "Ukraine correspondent @FT. 13+ years reporting in Ukraine. Author of THE WAR CAME TO US, published by @BloomsburyBooks, out now: https://t.co/Vfr0Qg7iIt", - "entities": { - "description": { - "urls": [ - { - "display_url": "linktr.ee/thewarcametous", - "expanded_url": "http://linktr.ee/thewarcametous", - "url": "https://t.co/Vfr0Qg7iIt", - "indices": [ - 129, - 152 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "ft.com/christopher-mi…", - "expanded_url": "https://www.ft.com/christopher-miller", - "url": "https://t.co/gCKlU6Hspj", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 54164, - "followers_count": 412997, - "friends_count": 4339, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 10748, - "location": "Kyiv via Bakhmut; also NYC", - "media_count": 8235, - "name": "Christopher Miller", - "normal_followers_count": 412997, - "pinned_tweet_ids_str": [ - "1681278741144633344" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16827148/1679318245", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1530061394619600896/GR0eYnkX_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "ChristopherJM", - "statuses_count": 73513, - "translator_type": "none", - "url": "https://t.co/gCKlU6Hspj", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1504925671306534915", - "professional_type": "Creator", - "category": [ - { - "id": 955, - "name": "Journalist", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739759572838220248" - ], - "editable_until_msecs": "1703629579991", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:26:19 +0000 2023", - "conversation_id_str": "1739759572838220248", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "112012718", - "name": "Mark Krutov", - "screen_name": "kromark", - "indices": [ - 3, - 11 - ] - }, - { - "id_str": "17663776", - "name": "Planet", - "screen_name": "planet", - "indices": [ - 38, - 45 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @kromark: The first low-resolution @planet satellite images of the Feodosia port, captured on December 26 at 11:25 local time, show that…", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 232, - "retweeted": false, - "user_id_str": "16827148", - "id_str": "1739759572838220248", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739723900169142706", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMTIwMTI3MTg=", - "rest_id": "112012718", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sat Feb 06 23:43:26 +0000 2010", - "default_profile": true, - "default_profile_image": false, - "description": "Radio Free Europe/Radio Liberty. Views of my own. RT ≠ endorsement. Read the whole threads before replying. Email krotovm@rferl.org for inquiries.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "svoboda.org", - "expanded_url": "http://www.svoboda.org", - "url": "https://t.co/nw5bF11N5O", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 3767, - "followers_count": 32583, - "friends_count": 1480, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1143, - "location": "Prague, Czech Republic", - "media_count": 2011, - "name": "Mark Krutov", - "normal_followers_count": 32583, - "pinned_tweet_ids_str": [ - "1739723900169142706" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/112012718/1571232303", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/849665482206699520/7-5NH3Hx_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "kromark", - "statuses_count": 5314, - "translator_type": "none", - "url": "https://t.co/nw5bF11N5O", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1483907721594351622", - "professional_type": "Creator", - "category": [ - { - "id": 580, - "name": "Media & News Company", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739723900169142706" - ], - "editable_until_msecs": "1703621074000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "277205", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 36, - "bookmarked": false, - "created_at": "Tue Dec 26 19:04:34 +0000 2023", - "conversation_id_str": "1739723900169142706", - "display_text_range": [ - 0, - 251 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/DY51NpJEMv", - "expanded_url": "https://twitter.com/kromark/status/1739723900169142706/video/1", - "id_str": "1739723757885734912", - "indices": [ - 252, - 275 - ], - "media_key": "7_1739723757885734912", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1739723757885734912/pu/img/awlG-adL5lC-0N6g.jpg", - "type": "video", - "url": "https://t.co/DY51NpJEMv", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 1080, - "w": 1920, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1080, - "width": 1920, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 16, - 9 - ], - "duration_millis": 3750, - "variants": [ - { - "bitrate": 256000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739723757885734912/pu/vid/avc1/480x270/5qlywahDAjTjpcyn.mp4?tag=12" - }, - { - "bitrate": 2176000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739723757885734912/pu/vid/avc1/1280x720/H_MfT-bCUG2aSjS6.mp4?tag=12" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1739723757885734912/pu/pl/-UiR3Gl-nl6dprkw.m3u8?tag=12&container=fmp4" - }, - { - "bitrate": 832000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739723757885734912/pu/vid/avc1/640x360/kcOWQOL5QK1-XiSU.mp4?tag=12" - } - ] - } - } - ], - "symbols": [], - "timestamps": [ - { - "indices": [ - 99, - 104 - ], - "seconds": 685, - "text": "11:25" - } - ], - "urls": [], - "user_mentions": [ - { - "id_str": "17663776", - "name": "Planet", - "screen_name": "planet", - "indices": [ - 25, - 32 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/DY51NpJEMv", - "expanded_url": "https://twitter.com/kromark/status/1739723900169142706/video/1", - "id_str": "1739723757885734912", - "indices": [ - 252, - 275 - ], - "media_key": "7_1739723757885734912", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1739723757885734912/pu/img/awlG-adL5lC-0N6g.jpg", - "type": "video", - "url": "https://t.co/DY51NpJEMv", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 1080, - "w": 1920, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1080, - "width": 1920, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 16, - 9 - ], - "duration_millis": 3750, - "variants": [ - { - "bitrate": 256000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739723757885734912/pu/vid/avc1/480x270/5qlywahDAjTjpcyn.mp4?tag=12" - }, - { - "bitrate": 2176000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739723757885734912/pu/vid/avc1/1280x720/H_MfT-bCUG2aSjS6.mp4?tag=12" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1739723757885734912/pu/pl/-UiR3Gl-nl6dprkw.m3u8?tag=12&container=fmp4" - }, - { - "bitrate": 832000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739723757885734912/pu/vid/avc1/640x360/kcOWQOL5QK1-XiSU.mp4?tag=12" - } - ] - } - } - ] - }, - "favorite_count": 1169, - "favorited": false, - "full_text": "The first low-resolution @planet satellite images of the Feodosia port, captured on December 26 at 11:25 local time, show that one more vessel (yellow square) is indeed partially sunk following the Ukrainian strike on the 'Novocherkassk' landing ship. https://t.co/DY51NpJEMv", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 39, - "reply_count": 18, - "retweet_count": 232, - "retweeted": false, - "user_id_str": "112012718", - "id_str": "1739723900169142706" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739759430085079069", - "sortIndex": "1739819664587882451", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739759430085079069", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjgyNzE0OA==", - "rest_id": "16827148", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Fri Oct 17 16:55:19 +0000 2008", - "default_profile": false, - "default_profile_image": false, - "description": "Ukraine correspondent @FT. 13+ years reporting in Ukraine. Author of THE WAR CAME TO US, published by @BloomsburyBooks, out now: https://t.co/Vfr0Qg7iIt", - "entities": { - "description": { - "urls": [ - { - "display_url": "linktr.ee/thewarcametous", - "expanded_url": "http://linktr.ee/thewarcametous", - "url": "https://t.co/Vfr0Qg7iIt", - "indices": [ - 129, - 152 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "ft.com/christopher-mi…", - "expanded_url": "https://www.ft.com/christopher-miller", - "url": "https://t.co/gCKlU6Hspj", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 54164, - "followers_count": 412997, - "friends_count": 4339, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 10748, - "location": "Kyiv via Bakhmut; also NYC", - "media_count": 8235, - "name": "Christopher Miller", - "normal_followers_count": 412997, - "pinned_tweet_ids_str": [ - "1681278741144633344" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/16827148/1679318245", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1530061394619600896/GR0eYnkX_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "ChristopherJM", - "statuses_count": 73513, - "translator_type": "none", - "url": "https://t.co/gCKlU6Hspj", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1504925671306534915", - "professional_type": "Creator", - "category": [ - { - "id": 955, - "name": "Journalist", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739759430085079069" - ], - "editable_until_msecs": "1703629545956", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:25:45 +0000 2023", - "conversation_id_str": "1739759430085079069", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1564334750", - "name": "Brady Africk", - "screen_name": "bradyafr", - "indices": [ - 3, - 12 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @bradyafr: The burning wreckage of a Russian warship struck by Ukraine is visible in new satellite imagery of Crimea. \n\nPhotos from the…", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 105, - "retweeted": false, - "user_id_str": "16827148", - "id_str": "1739759430085079069", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739724000723435533", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTY0MzM0NzUw", - "rest_id": "1564334750", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Tue Jul 02 23:18:49 +0000 2013", - "default_profile": false, - "default_profile_image": false, - "description": "Maps and satellite imagery 🛰🌻🔭 | @AEIfdp media relations | Tweets and opinions are my own", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "read.bradyafrick.com", - "expanded_url": "http://read.bradyafrick.com", - "url": "https://t.co/XgOnBuhqiS", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 9367, - "followers_count": 46946, - "friends_count": 980, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1388, - "location": "Washington, D.C.", - "media_count": 789, - "name": "Brady Africk", - "normal_followers_count": 46946, - "pinned_tweet_ids_str": [ - "1722226317880652051" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1564334750/1556864516", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1545489621773058056/y7XEe_qS_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "bradyafr", - "statuses_count": 1529, - "translator_type": "none", - "url": "https://t.co/XgOnBuhqiS", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739724000723435533" - ], - "editable_until_msecs": "1703621098000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "126882", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 13, - "bookmarked": false, - "created_at": "Tue Dec 26 19:04:58 +0000 2023", - "conversation_id_str": "1739724000723435533", - "display_text_range": [ - 0, - 235 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/x3Nafe9COT", - "expanded_url": "https://twitter.com/bradyafr/status/1739724000723435533/video/1", - "id_str": "1739723971694678016", - "indices": [ - 236, - 259 - ], - "media_key": "7_1739723971694678016", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1739723971694678016/pu/img/eY3LH6te_GaP4S_U.jpg", - "type": "video", - "url": "https://t.co/x3Nafe9COT", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 1080, - "w": 1080, - "resize": "fit" - }, - "medium": { - "h": 1080, - "w": 1080, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1080, - "width": 1080, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 1, - 1 - ], - "duration_millis": 5906, - "variants": [ - { - "bitrate": 832000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739723971694678016/pu/vid/avc1/540x540/6T-ji33onbpZKQcx.mp4?tag=12" - }, - { - "bitrate": 432000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739723971694678016/pu/vid/avc1/320x320/_CVzmFJQtcHGLC65.mp4?tag=12" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1739723971694678016/pu/pl/oEVztVTdDsdS74P9.m3u8?tag=12&container=fmp4" - }, - { - "bitrate": 1280000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739723971694678016/pu/vid/avc1/720x720/g7BcSS6WmFCaccIq.mp4?tag=12" - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/x3Nafe9COT", - "expanded_url": "https://twitter.com/bradyafr/status/1739724000723435533/video/1", - "id_str": "1739723971694678016", - "indices": [ - 236, - 259 - ], - "media_key": "7_1739723971694678016", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1739723971694678016/pu/img/eY3LH6te_GaP4S_U.jpg", - "type": "video", - "url": "https://t.co/x3Nafe9COT", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 1080, - "w": 1080, - "resize": "fit" - }, - "medium": { - "h": 1080, - "w": 1080, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1080, - "width": 1080, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 1, - 1 - ], - "duration_millis": 5906, - "variants": [ - { - "bitrate": 832000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739723971694678016/pu/vid/avc1/540x540/6T-ji33onbpZKQcx.mp4?tag=12" - }, - { - "bitrate": 432000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739723971694678016/pu/vid/avc1/320x320/_CVzmFJQtcHGLC65.mp4?tag=12" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1739723971694678016/pu/pl/oEVztVTdDsdS74P9.m3u8?tag=12&container=fmp4" - }, - { - "bitrate": 1280000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739723971694678016/pu/vid/avc1/720x720/g7BcSS6WmFCaccIq.mp4?tag=12" - } - ] - } - } - ] - }, - "favorite_count": 528, - "favorited": false, - "full_text": "The burning wreckage of a Russian warship struck by Ukraine is visible in new satellite imagery of Crimea. \n\nPhotos from the ground show the ship is destroyed but higher resolution imagery is needed to assess other damage in the area. https://t.co/x3Nafe9COT", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 1, - "reply_count": 16, - "retweet_count": 105, - "retweeted": false, - "user_id_str": "1564334750", - "id_str": "1739724000723435533" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739759372580823303", - "sortIndex": "1739819664587882450", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739759372580823303", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo0NTQwOTk5MTk=", - "rest_id": "454099919", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Tue Jan 03 16:36:02 +0000 2012", - "default_profile": false, - "default_profile_image": false, - "description": "Professor of Political Science, Director of Freeman Spogli Institute & Hoover Senior Fellow all at Stanford University. U.S. Ambassador to Russia, 2012-2014.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "michaelmcfaul.substack.com", - "expanded_url": "https://michaelmcfaul.substack.com/", - "url": "https://t.co/Mdi9pqQ58Q", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 46606, - "followers_count": 900854, - "friends_count": 2092, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 10476, - "location": "Stanford, California", - "media_count": 3445, - "name": "Michael McFaul", - "normal_followers_count": 900854, - "pinned_tweet_ids_str": [ - "1515923887720071168" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/454099919/1667071005", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1483538323368910851/gqSpEuaL_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "McFaul", - "statuses_count": 122048, - "translator_type": "none", - "url": "https://t.co/Mdi9pqQ58Q", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739759372580823303" - ], - "editable_until_msecs": "1703629532000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "17498", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 2, - "bookmarked": false, - "created_at": "Tue Dec 26 21:25:32 +0000 2023", - "conversation_id_str": "1739759372580823303", - "display_text_range": [ - 0, - 23 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "open.substack.com/pub/michaelmcf…", - "expanded_url": "https://open.substack.com/pub/michaelmcfaul/p/podcast-how-did-we-get-here-a-conversation?r=17z4l&utm_medium=ios&utm_campaign=post", - "url": "https://t.co/4fkaQ6fAkc", - "indices": [ - 0, - 23 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 12, - "favorited": false, - "full_text": "https://t.co/4fkaQ6fAkc", - "is_quote_status": false, - "lang": "zxx", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 11, - "retweet_count": 2, - "retweeted": false, - "user_id_str": "454099919", - "id_str": "1739759372580823303" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739759076936999216", - "sortIndex": "1739819664587882449", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739759076936999216", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDA1ODQ2NTAwNTgzMzIxNjAx", - "rest_id": "1005846500583321601", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sun Jun 10 16:17:48 +0000 2018", - "default_profile": true, - "default_profile_image": false, - "description": "Dad. Spouse to @natsechobbyist. Vet. NYT Best-selling Author. Ex NSC/WH Staff. Senior Advisor @votevets. Dr. & Senior Fellow, SAIS, JHU. 🧵 @alexander_s_vindman", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "alexandervindman.substack.com", - "expanded_url": "https://alexandervindman.substack.com", - "url": "https://t.co/vyo9QsFIcu", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 14442, - "followers_count": 927419, - "friends_count": 1642, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5737, - "location": "Florida, USA", - "media_count": 309, - "name": "Alexander S. Vindman ❎", - "normal_followers_count": 927419, - "pinned_tweet_ids_str": [ - "1725146404589334755" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1005846500583321601/1682038223", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1438653431837872135/6170zRMd_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "AVindman", - "statuses_count": 6286, - "translator_type": "none", - "url": "https://t.co/vyo9QsFIcu", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1469829466885132297", - "professional_type": "Business", - "category": [ - { - "id": 956, - "name": "Writer", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739759076936999216" - ], - "editable_until_msecs": "1703629461759", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:24:21 +0000 2023", - "conversation_id_str": "1739759076936999216", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "242765117", - "name": "Mac William Bishop", - "screen_name": "MacWBishop", - "indices": [ - 3, - 14 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @MacWBishop: The Russian landing ship Novocherkassk, hull no. 142, was built at Stocznia Gdańsk – at the time known as the Vladimir Leni…", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 96, - "retweeted": false, - "user_id_str": "1005846500583321601", - "id_str": "1739759076936999216", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739634587049841094", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNDI3NjUxMTc=", - "rest_id": "242765117", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Tue Jan 25 15:03:24 +0000 2011", - "default_profile": false, - "default_profile_image": false, - "description": "Roving foreign correspondent. International affairs & conflict. Bylines: Rolling Stone, New York Times, FT, Foreign Policy & elsewhere. Marine infantry veteran.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "macwilliambishop.com", - "expanded_url": "http://macwilliambishop.com", - "url": "https://t.co/UGPPEoAWgB", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 6141, - "followers_count": 18652, - "friends_count": 5527, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 459, - "location": "Out and about", - "media_count": 1122, - "name": "Mac William Bishop", - "normal_followers_count": 18652, - "pinned_tweet_ids_str": [ - "1278437361169379329" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/242765117/1572123160", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1508871947345608720/87gGhKaX_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "MacWBishop", - "statuses_count": 16489, - "translator_type": "none", - "url": "https://t.co/UGPPEoAWgB", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739634587049841094" - ], - "editable_until_msecs": "1703599781000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "104296", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 54, - "bookmarked": false, - "created_at": "Tue Dec 26 13:09:41 +0000 2023", - "conversation_id_str": "1739634587049841094", - "display_text_range": [ - 0, - 270 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/zPmXKs1OU8", - "expanded_url": "https://twitter.com/MacWBishop/status/1739634587049841094/photo/1", - "id_str": "1739634526454697985", - "indices": [ - 271, - 294 - ], - "media_key": "3_1739634526454697985", - "media_url_https": "https://pbs.twimg.com/media/GCRsYoRWUAEuVaK.jpg", - "type": "photo", - "url": "https://t.co/zPmXKs1OU8", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 833, - "w": 1480, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 833, - "width": 1480, - "focus_rects": [ - { - "x": 0, - "y": 4, - "w": 1480, - "h": 829 - }, - { - "x": 324, - "y": 0, - "w": 833, - "h": 833 - }, - { - "x": 375, - "y": 0, - "w": 731, - "h": 833 - }, - { - "x": 532, - "y": 0, - "w": 417, - "h": 833 - }, - { - "x": 0, - "y": 0, - "w": 1480, - "h": 833 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/zPmXKs1OU8", - "expanded_url": "https://twitter.com/MacWBishop/status/1739634587049841094/photo/1", - "id_str": "1739634526454697985", - "indices": [ - 271, - 294 - ], - "media_key": "3_1739634526454697985", - "media_url_https": "https://pbs.twimg.com/media/GCRsYoRWUAEuVaK.jpg", - "type": "photo", - "url": "https://t.co/zPmXKs1OU8", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 833, - "w": 1480, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 833, - "width": 1480, - "focus_rects": [ - { - "x": 0, - "y": 4, - "w": 1480, - "h": 829 - }, - { - "x": 324, - "y": 0, - "w": 833, - "h": 833 - }, - { - "x": 375, - "y": 0, - "w": 731, - "h": 833 - }, - { - "x": 532, - "y": 0, - "w": 417, - "h": 833 - }, - { - "x": 0, - "y": 0, - "w": 1480, - "h": 833 - } - ] - } - } - ] - }, - "favorite_count": 539, - "favorited": false, - "full_text": "The Russian landing ship Novocherkassk, hull no. 142, was built at Stocznia Gdańsk – at the time known as the Vladimir Lenin Shipyard – in the People’s Republic of Poland, in the mid-1980s.\n\nThe ship’s history offers a window to understanding the 30+ year road to now... https://t.co/zPmXKs1OU8", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "place": { - "bounding_box": { - "coordinates": [ - [ - [ - 22.1357201, - 44.386383 - ], - [ - 22.1357201, - 52.379475 - ], - [ - 40.227172, - 52.379475 - ], - [ - 40.227172, - 44.386383 - ], - [ - 22.1357201, - 44.386383 - ] - ] - ], - "type": "Polygon" - }, - "country": "Ukraine", - "country_code": "UA", - "full_name": "Ukraine", - "name": "Ukraine", - "id": "084d0d0155787e9d", - "place_type": "country", - "url": "https://api.twitter.com/1.1/geo/id/084d0d0155787e9d.json" - }, - "quote_count": 16, - "reply_count": 15, - "retweet_count": 96, - "retweeted": false, - "user_id_str": "242765117", - "id_str": "1739634587049841094" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "list-conversation-1739819664587882544", - "sortIndex": "1739819664587882448", - "content": { - "entryType": "TimelineTimelineModule", - "__typename": "TimelineTimelineModule", - "items": [ - { - "entryId": "list-conversation-1739819664587882544-tweet-1739757942683939229", - "item": { - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739757942683939229", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzE3NTIxMw==", - "rest_id": "17175213", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed Nov 05 00:59:16 +0000 2008", - "default_profile": true, - "default_profile_image": false, - "description": "Defence editor at @TheEconomist, Visiting fellow at @warstudies King's College London.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "shashankjoshi.wordpress.com", - "expanded_url": "http://shashankjoshi.wordpress.com", - "url": "https://t.co/euRjbnk3WT", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 36102, - "followers_count": 194545, - "friends_count": 1787, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5880, - "location": "London", - "media_count": 4138, - "name": "Shashank Joshi", - "normal_followers_count": 194545, - "pinned_tweet_ids_str": [ - "1729977020002476084" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17175213/1688649354", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1509894709770076168/uNk9W2IH_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "shashj", - "statuses_count": 49138, - "translator_type": "none", - "url": "https://t.co/euRjbnk3WT", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/phcrazUIbk", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 150, - "width": 267, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "John Healey, the shadow defence secretary, said recent conflicts should be a wake up call to ministers after years of underinvestment", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.thetimes.co.uk", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 320, - "width": 569, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 675, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 81, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 675, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 675, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "thetimes.co.uk", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 56, - "green": 58, - "red": 59 - }, - "percentage": 46.96 - }, - { - "rgb": { - "blue": 143, - "green": 145, - "red": 149 - }, - "percentage": 35.06 - }, - { - "rgb": { - "blue": 88, - "green": 105, - "red": 113 - }, - "percentage": 0.87 - }, - { - "rgb": { - "blue": 128, - "green": 148, - "red": 153 - }, - "percentage": 0.53 - }, - { - "rgb": { - "blue": 82, - "green": 59, - "red": 47 - }, - "percentage": 0.33 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Labour pledges urgent review of Britain’s defence capabilities", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 56, - "green": 58, - "red": 59 - }, - "percentage": 46.96 - }, - { - "rgb": { - "blue": 143, - "green": 145, - "red": 149 - }, - "percentage": 35.06 - }, - { - "rgb": { - "blue": 88, - "green": 105, - "red": 113 - }, - "percentage": 0.87 - }, - { - "rgb": { - "blue": 128, - "green": 148, - "red": 153 - }, - "percentage": 0.53 - }, - { - "rgb": { - "blue": 82, - "green": 59, - "red": 47 - }, - "percentage": 0.33 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 675, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 56, - "green": 58, - "red": 59 - }, - "percentage": 46.96 - }, - { - "rgb": { - "blue": 143, - "green": 145, - "red": 149 - }, - "percentage": 35.06 - }, - { - "rgb": { - "blue": 88, - "green": 105, - "red": 113 - }, - "percentage": 0.87 - }, - { - "rgb": { - "blue": 128, - "green": 148, - "red": 153 - }, - "percentage": 0.53 - }, - { - "rgb": { - "blue": 82, - "green": 59, - "red": 47 - }, - "percentage": 0.33 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 675, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/phcrazUIbk", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 675, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/phcrazUIbk", - "user_refs_results": [] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739757942683939229" - ], - "editable_until_msecs": "1703629191000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "26013", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 6, - "bookmarked": false, - "created_at": "Tue Dec 26 21:19:51 +0000 2023", - "conversation_id_str": "1739757942683939229", - "display_text_range": [ - 0, - 277 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "thetimes.co.uk/article/labour…", - "expanded_url": "https://www.thetimes.co.uk/article/labour-pledges-urgent-review-of-britains-defence-capabilities-flwcnjv5l", - "url": "https://t.co/phcrazUIbk", - "indices": [ - 254, - 277 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 36, - "favorited": false, - "full_text": "Interesting claim here on why homeland BMD isn’t a priority: “Defence sources insist that hijacked aircraft present a more likely aerial threat to the UK and that ballistic missiles would have to traverse European airspace before hitting British cities” https://t.co/phcrazUIbk", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 1, - "reply_count": 15, - "retweet_count": 4, - "retweeted": false, - "user_id_str": "17175213", - "id_str": "1739757942683939229" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "list-conversation-1739819664587882544-tweet-1739758824154607754", - "item": { - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739758824154607754", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzE3NTIxMw==", - "rest_id": "17175213", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed Nov 05 00:59:16 +0000 2008", - "default_profile": true, - "default_profile_image": false, - "description": "Defence editor at @TheEconomist, Visiting fellow at @warstudies King's College London.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "shashankjoshi.wordpress.com", - "expanded_url": "http://shashankjoshi.wordpress.com", - "url": "https://t.co/euRjbnk3WT", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 36102, - "followers_count": 194545, - "friends_count": 1787, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5880, - "location": "London", - "media_count": 4138, - "name": "Shashank Joshi", - "normal_followers_count": 194545, - "pinned_tweet_ids_str": [ - "1729977020002476084" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17175213/1688649354", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1509894709770076168/uNk9W2IH_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "shashj", - "statuses_count": 49138, - "translator_type": "none", - "url": "https://t.co/euRjbnk3WT", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739758824154607754" - ], - "editable_until_msecs": "1703629401000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "12740", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739757942683939229", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzE3NTIxMw==", - "rest_id": "17175213", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed Nov 05 00:59:16 +0000 2008", - "default_profile": true, - "default_profile_image": false, - "description": "Defence editor at @TheEconomist, Visiting fellow at @warstudies King's College London.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "shashankjoshi.wordpress.com", - "expanded_url": "http://shashankjoshi.wordpress.com", - "url": "https://t.co/euRjbnk3WT", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 36102, - "followers_count": 194545, - "friends_count": 1787, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5880, - "location": "London", - "media_count": 4138, - "name": "Shashank Joshi", - "normal_followers_count": 194545, - "pinned_tweet_ids_str": [ - "1729977020002476084" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17175213/1688649354", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1509894709770076168/uNk9W2IH_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "shashj", - "statuses_count": 49138, - "translator_type": "none", - "url": "https://t.co/euRjbnk3WT", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/phcrazUIbk", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 150, - "width": 267, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "John Healey, the shadow defence secretary, said recent conflicts should be a wake up call to ministers after years of underinvestment", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.thetimes.co.uk", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 320, - "width": 569, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 675, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 81, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 675, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 675, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "thetimes.co.uk", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 56, - "green": 58, - "red": 59 - }, - "percentage": 46.96 - }, - { - "rgb": { - "blue": 143, - "green": 145, - "red": 149 - }, - "percentage": 35.06 - }, - { - "rgb": { - "blue": 88, - "green": 105, - "red": 113 - }, - "percentage": 0.87 - }, - { - "rgb": { - "blue": 128, - "green": 148, - "red": 153 - }, - "percentage": 0.53 - }, - { - "rgb": { - "blue": 82, - "green": 59, - "red": 47 - }, - "percentage": 0.33 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Labour pledges urgent review of Britain’s defence capabilities", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 56, - "green": 58, - "red": 59 - }, - "percentage": 46.96 - }, - { - "rgb": { - "blue": 143, - "green": 145, - "red": 149 - }, - "percentage": 35.06 - }, - { - "rgb": { - "blue": 88, - "green": 105, - "red": 113 - }, - "percentage": 0.87 - }, - { - "rgb": { - "blue": 128, - "green": 148, - "red": 153 - }, - "percentage": 0.53 - }, - { - "rgb": { - "blue": 82, - "green": 59, - "red": 47 - }, - "percentage": 0.33 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 675, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 56, - "green": 58, - "red": 59 - }, - "percentage": 46.96 - }, - { - "rgb": { - "blue": 143, - "green": 145, - "red": 149 - }, - "percentage": 35.06 - }, - { - "rgb": { - "blue": 88, - "green": 105, - "red": 113 - }, - "percentage": 0.87 - }, - { - "rgb": { - "blue": 128, - "green": 148, - "red": 153 - }, - "percentage": 0.53 - }, - { - "rgb": { - "blue": 82, - "green": 59, - "red": 47 - }, - "percentage": 0.33 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 675, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/phcrazUIbk", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 675, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739757735619522561/Un9FOnlo?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/phcrazUIbk", - "user_refs_results": [] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739757942683939229" - ], - "editable_until_msecs": "1703629191000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "26013", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 6, - "bookmarked": false, - "created_at": "Tue Dec 26 21:19:51 +0000 2023", - "conversation_id_str": "1739757942683939229", - "display_text_range": [ - 0, - 277 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "thetimes.co.uk/article/labour…", - "expanded_url": "https://www.thetimes.co.uk/article/labour-pledges-urgent-review-of-britains-defence-capabilities-flwcnjv5l", - "url": "https://t.co/phcrazUIbk", - "indices": [ - 254, - 277 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 36, - "favorited": false, - "full_text": "Interesting claim here on why homeland BMD isn’t a priority: “Defence sources insist that hijacked aircraft present a more likely aerial threat to the UK and that ballistic missiles would have to traverse European airspace before hitting British cities” https://t.co/phcrazUIbk", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 1, - "reply_count": 15, - "retweet_count": 4, - "retweeted": false, - "user_id_str": "17175213", - "id_str": "1739757942683939229" - } - } - }, - "legacy": { - "bookmark_count": 1, - "bookmarked": false, - "created_at": "Tue Dec 26 21:23:21 +0000 2023", - "conversation_id_str": "1739757942683939229", - "display_text_range": [ - 0, - 162 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 45, - "favorited": false, - "full_text": "Except this doesn’t really address the problem of Russian sea-launched cruise missiles & air-launched ballistic ones fired at Britain from the North Atlantic?", - "in_reply_to_screen_name": "shashj", - "in_reply_to_status_id_str": "1739757942683939229", - "in_reply_to_user_id_str": "17175213", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1739757942683939229", - "quoted_status_permalink": { - "url": "https://t.co/EJPbXrEyeT", - "expanded": "https://twitter.com/shashj/status/1739757942683939229", - "display": "twitter.com/shashj/status/…" - }, - "reply_count": 4, - "retweet_count": 4, - "retweeted": false, - "user_id_str": "17175213", - "id_str": "1739758824154607754" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - } - ], - "metadata": { - "conversationMetadata": { - "allTweetIds": [ - "1739757942683939229", - "1739758824154607754" - ], - "enableDeduplication": true - } - }, - "displayType": "VerticalConversation", - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739756955642535986", - "sortIndex": "1739819664587882447", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739756955642535986", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyOTAxMDcxMA==", - "rest_id": "29010710", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Sun Apr 05 16:13:47 +0000 2009", - "default_profile": true, - "default_profile_image": false, - "description": "Nationality: journalist. Freelancer, made in the BBC. Reporting what you need to know, not what you want to hear. Also, Lonely Planet guides.", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 21152, - "followers_count": 71447, - "friends_count": 4528, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 2098, - "location": "", - "media_count": 5820, - "name": "Leonid ХВ Ragozin", - "normal_followers_count": 71447, - "pinned_tweet_ids_str": [ - "1729962328265748716" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/29010710/1610454802", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1098307078991593474/vBl5zWMc_normal.png", - "profile_interstitial_type": "", - "screen_name": "leonidragozin", - "statuses_count": 63823, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1630527445676818432", - "professional_type": "Business", - "category": [ - { - "id": 579, - "name": "Media & News", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739756955642535986" - ], - "editable_until_msecs": "1703628956000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "5183", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739484921322971562", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMjQ2NDE0MDIxNDU0MTEwNzIx", - "rest_id": "1246414021454110721", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sat Apr 04 12:27:29 +0000 2020", - "default_profile": true, - "default_profile_image": false, - "description": "Soviet history and the post-Soviet present.\n\nReimagining Soviet Georgia - https://t.co/BnudWIQzIF \n\nfrom the bay area, northern california", - "entities": { - "description": { - "urls": [ - { - "display_url": "anchor.fm/sovietgeorgia", - "expanded_url": "http://anchor.fm/sovietgeorgia", - "url": "https://t.co/BnudWIQzIF", - "indices": [ - 74, - 97 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "anchor.fm/sovietgeorgia/", - "expanded_url": "https://anchor.fm/sovietgeorgia/", - "url": "https://t.co/YYWi8iEqpQ", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 18079, - "followers_count": 2476, - "friends_count": 3298, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 23, - "location": "თბილისი, საქართველო ", - "media_count": 287, - "name": "Bryan Gigantino", - "normal_followers_count": 2476, - "pinned_tweet_ids_str": [ - "1422175382271401986" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1246414021454110721/1698860285", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1284021624090636291/EYagVn7g_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "bryan_gigantino", - "statuses_count": 8155, - "translator_type": "none", - "url": "https://t.co/YYWi8iEqpQ", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/3Hl2nqQVKH", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1737908571034066944/kH_ZHLZt?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 150, - "width": 208, - "url": "https://pbs.twimg.com/card_img/1737908571034066944/kH_ZHLZt?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "Canada’s Nazi ovation gaffe in the House of Commons was just the tip of the iceberg. For years, the country deliberately admitted World War II Nazi collaborators in the hopes of dismantling political...", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "jacobin.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 288, - "width": 400, - "url": "https://pbs.twimg.com/card_img/1737908571034066944/kH_ZHLZt?format=jpg&name=400x400" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737908571034066944/kH_ZHLZt?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 737, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1737908571034066944/kH_ZHLZt?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737908571034066944/kH_ZHLZt?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1737908571034066944/kH_ZHLZt?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 72, - "width": 100, - "url": "https://pbs.twimg.com/card_img/1737908571034066944/kH_ZHLZt?format=jpg&name=100x100" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 737, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1737908571034066944/kH_ZHLZt?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 737, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1737908571034066944/kH_ZHLZt?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "jacobin.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737908571034066944/kH_ZHLZt?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 75, - "green": 75, - "red": 75 - }, - "percentage": 49.17 - }, - { - "rgb": { - "blue": 193, - "green": 193, - "red": 193 - }, - "percentage": 30.43 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "To Crush Left-Wing Organizing, Canada Embraced Ukrainian Nazi Collaborators", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 75, - "green": 75, - "red": 75 - }, - "percentage": 49.17 - }, - { - "rgb": { - "blue": 193, - "green": 193, - "red": 193 - }, - "percentage": 30.43 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 737, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1737908571034066944/kH_ZHLZt?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737908571034066944/kH_ZHLZt?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 75, - "green": 75, - "red": 75 - }, - "percentage": 49.17 - }, - { - "rgb": { - "blue": 193, - "green": 193, - "red": 193 - }, - "percentage": 30.43 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 737, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1737908571034066944/kH_ZHLZt?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/3Hl2nqQVKH", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 737, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1737908571034066944/kH_ZHLZt?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/3Hl2nqQVKH", - "user_refs_results": [] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739484921322971562" - ], - "editable_until_msecs": "1703564097000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "9933", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPad", - "legacy": { - "bookmark_count": 40, - "bookmarked": false, - "created_at": "Tue Dec 26 03:14:57 +0000 2023", - "conversation_id_str": "1739484921322971562", - "display_text_range": [ - 0, - 243 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "jacobin.com/2023/12/canada…", - "expanded_url": "https://jacobin.com/2023/12/canada-ukrainian-nationalists-socialists-history-anti-communism-nazi-collaborators/", - "url": "https://t.co/3Hl2nqQVKH", - "indices": [ - 220, - 243 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 114, - "favorited": false, - "full_text": "On how Ukrainian nazi collaborators emigrated to Canada after World War II, actively opposed left wing organizing (especially of other Ukrainian immigrants!) and tied the Ukrainian-Canadian identity to anti-communism. \n\nhttps://t.co/3Hl2nqQVKH", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 4, - "reply_count": 2, - "retweet_count": 41, - "retweeted": false, - "user_id_str": "1246414021454110721", - "id_str": "1739484921322971562" - } - } - }, - "legacy": { - "bookmark_count": 4, - "bookmarked": false, - "created_at": "Tue Dec 26 21:15:56 +0000 2023", - "conversation_id_str": "1739756955642535986", - "display_text_range": [ - 0, - 11 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 14, - "favorited": false, - "full_text": "Useful read", - "is_quote_status": true, - "lang": "en", - "quote_count": 1, - "quoted_status_id_str": "1739484921322971562", - "quoted_status_permalink": { - "url": "https://t.co/OUM7YrLbhB", - "expanded": "https://twitter.com/bryan_gigantino/status/1739484921322971562", - "display": "twitter.com/bryan_gigantin…" - }, - "reply_count": 3, - "retweet_count": 3, - "retweeted": false, - "user_id_str": "29010710", - "id_str": "1739756955642535986" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739756280661549283", - "sortIndex": "1739819664587882446", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739756280661549283", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjMwMTg2NTM=", - "rest_id": "163018653", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Mon Jul 05 09:44:27 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Ambassador-at-large @MFA_Ukraine, Amb to Austria (2014-2021). Author of “Ukraine vs Darkness. Undiplomatic Thoughts”. Personal account.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "amazon.com/Ukraine-vs-Dar…", - "expanded_url": "https://www.amazon.com/Ukraine-vs-Darkness-Undiplomatic-Ukrainian-ebook/dp/B08WKF3B2K", - "url": "https://t.co/ERA9Ntt061", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 27535, - "followers_count": 264737, - "friends_count": 1232, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 4333, - "location": "Kyiv", - "media_count": 6463, - "name": "olexander scherba🇺🇦", - "normal_followers_count": 264737, - "pinned_tweet_ids_str": [ - "1396956590713020416" - ], - "possibly_sensitive": true, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/163018653/1646220178", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/671642770549956608/yR9Is6BD_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "olex_scherba", - "statuses_count": 39119, - "translator_type": "none", - "url": "https://t.co/ERA9Ntt061", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1696586841602834861", - "professional_type": "Business", - "category": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/WDFNRzH4t4", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 147, - "width": 280, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "Join Timothy Snyder’s fundraiser! The history professor is raising funds towards a situational alert system for Ukraine’s Air Defence Forces. Protect Ukrainian towns from terrorist attacks.", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "u24.gov.ua", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 315, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=600x600" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 76, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_alt_text", - "value": { - "string_value": "Safe Skies", - "type": "STRING" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "u24.gov.ua", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_alt_text", - "value": { - "string_value": "Safe Skies", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 37, - "green": 36, - "red": 31 - }, - "percentage": 48.29 - }, - { - "rgb": { - "blue": 130, - "green": 126, - "red": 134 - }, - "percentage": 34.28 - }, - { - "rgb": { - "blue": 71, - "green": 108, - "red": 112 - }, - "percentage": 10.46 - }, - { - "rgb": { - "blue": 241, - "green": 241, - "red": 241 - }, - "percentage": 4.57 - }, - { - "rgb": { - "blue": 62, - "green": 39, - "red": 31 - }, - "percentage": 1.0 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Safe Skies", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 37, - "green": 36, - "red": 31 - }, - "percentage": 48.29 - }, - { - "rgb": { - "blue": 130, - "green": 126, - "red": 134 - }, - "percentage": 34.28 - }, - { - "rgb": { - "blue": 71, - "green": 108, - "red": 112 - }, - "percentage": 10.46 - }, - { - "rgb": { - "blue": 241, - "green": 241, - "red": 241 - }, - "percentage": 4.57 - }, - { - "rgb": { - "blue": 62, - "green": 39, - "red": 31 - }, - "percentage": 1.0 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 37, - "green": 36, - "red": 31 - }, - "percentage": 48.29 - }, - { - "rgb": { - "blue": 130, - "green": 126, - "red": 134 - }, - "percentage": 34.28 - }, - { - "rgb": { - "blue": 71, - "green": 108, - "red": 112 - }, - "percentage": 10.46 - }, - { - "rgb": { - "blue": 241, - "green": 241, - "red": 241 - }, - "percentage": 4.57 - }, - { - "rgb": { - "blue": 62, - "green": 39, - "red": 31 - }, - "percentage": 1.0 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/WDFNRzH4t4", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/WDFNRzH4t4", - "user_refs_results": [] - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739756280661549283" - ], - "editable_until_msecs": "1703628795075", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPad", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:13:15 +0000 2023", - "conversation_id_str": "1739756280661549283", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [ - { - "indices": [ - 117, - 127 - ], - "text": "SafeSkies" - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "3129968261", - "name": "Timothy Snyder", - "screen_name": "TimothyDSnyder", - "indices": [ - 3, - 18 - ] - }, - { - "id_str": "1513194611396816909", - "name": "UNITED24", - "screen_name": "U24_gov_ua", - "indices": [ - 128, - 139 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @TimothyDSnyder: More Ukrainians deserve more silent nights. You can help with this.\nAnti-drone system fundraiser #SafeSkies @U24_gov_ua…", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": true, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 0, - "retweet_count": 526, - "retweeted": false, - "user_id_str": "163018653", - "id_str": "1739756280661549283", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739755694104932512", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjozMTI5OTY4MjYx", - "rest_id": "3129968261", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Mon Mar 30 21:25:57 +0000 2015", - "default_profile": false, - "default_profile_image": false, - "description": "Levin Professor of History at Yale. Author of \"On Tyranny,\" with 20 new lessons on Ukraine, \"Our Malady,\" \"Road to Unfreedom,\" \"Black Earth,\" and \"Bloodlands\"", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "snyder.substack.com", - "expanded_url": "http://snyder.substack.com", - "url": "https://t.co/K08VDpolcl", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 2, - "followers_count": 539640, - "friends_count": 52, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 6140, - "location": "", - "media_count": 438, - "name": "Timothy Snyder", - "normal_followers_count": 539640, - "pinned_tweet_ids_str": [ - "1326319545427107840" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3129968261/1663344988", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/582655768471552000/8Ad5TU8L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "TimothyDSnyder", - "statuses_count": 4194, - "translator_type": "none", - "url": "https://t.co/K08VDpolcl", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/WDFNRzH4t4", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 147, - "width": 280, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "Join Timothy Snyder’s fundraiser! The history professor is raising funds towards a situational alert system for Ukraine’s Air Defence Forces. Protect Ukrainian towns from terrorist attacks.", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "u24.gov.ua", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 315, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=600x600" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 76, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_alt_text", - "value": { - "string_value": "Safe Skies", - "type": "STRING" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "u24.gov.ua", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_alt_text", - "value": { - "string_value": "Safe Skies", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 37, - "green": 36, - "red": 31 - }, - "percentage": 48.29 - }, - { - "rgb": { - "blue": 130, - "green": 126, - "red": 134 - }, - "percentage": 34.28 - }, - { - "rgb": { - "blue": 71, - "green": 108, - "red": 112 - }, - "percentage": 10.46 - }, - { - "rgb": { - "blue": 241, - "green": 241, - "red": 241 - }, - "percentage": 4.57 - }, - { - "rgb": { - "blue": 62, - "green": 39, - "red": 31 - }, - "percentage": 1.0 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Safe Skies", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 37, - "green": 36, - "red": 31 - }, - "percentage": 48.29 - }, - { - "rgb": { - "blue": 130, - "green": 126, - "red": 134 - }, - "percentage": 34.28 - }, - { - "rgb": { - "blue": 71, - "green": 108, - "red": 112 - }, - "percentage": 10.46 - }, - { - "rgb": { - "blue": 241, - "green": 241, - "red": 241 - }, - "percentage": 4.57 - }, - { - "rgb": { - "blue": 62, - "green": 39, - "red": 31 - }, - "percentage": 1.0 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 37, - "green": 36, - "red": 31 - }, - "percentage": 48.29 - }, - { - "rgb": { - "blue": 130, - "green": 126, - "red": 134 - }, - "percentage": 34.28 - }, - { - "rgb": { - "blue": 71, - "green": 108, - "red": 112 - }, - "percentage": 10.46 - }, - { - "rgb": { - "blue": 241, - "green": 241, - "red": 241 - }, - "percentage": 4.57 - }, - { - "rgb": { - "blue": 62, - "green": 39, - "red": 31 - }, - "percentage": 1.0 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/WDFNRzH4t4", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "alt": "Safe Skies", - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737471941869744128/VYBRw55d?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/WDFNRzH4t4", - "user_refs_results": [] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739755694104932512" - ], - "editable_until_msecs": "1703628655000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "64479", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 28, - "bookmarked": false, - "created_at": "Tue Dec 26 21:10:55 +0000 2023", - "conversation_id_str": "1739755694104932512", - "display_text_range": [ - 0, - 144 - ], - "entities": { - "hashtags": [ - { - "indices": [ - 97, - 107 - ], - "text": "SafeSkies" - } - ], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "u24.gov.ua/safeskies", - "expanded_url": "https://u24.gov.ua/safeskies", - "url": "https://t.co/WDFNRzH4t4", - "indices": [ - 121, - 144 - ] - } - ], - "user_mentions": [ - { - "id_str": "1513194611396816909", - "name": "UNITED24", - "screen_name": "U24_gov_ua", - "indices": [ - 108, - 119 - ] - } - ] - }, - "favorite_count": 2024, - "favorited": false, - "full_text": "More Ukrainians deserve more silent nights. You can help with this.\nAnti-drone system fundraiser #SafeSkies @U24_gov_ua \nhttps://t.co/WDFNRzH4t4", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 12, - "reply_count": 24, - "retweet_count": 526, - "retweeted": false, - "user_id_str": "3129968261", - "id_str": "1739755694104932512" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739753966076846256", - "sortIndex": "1739819664587882445", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739753966076846256", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMzc4OTQ3NzY5MTg0OTc2ODk2", - "rest_id": "1378947769184976896", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Apr 05 05:49:20 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Aiden Aslin\nBritish national. \nUkrainian marine 2018-2022\nPress Enquires Contact Humfrey@hunterprofiles.com\nOrder Putin's Prisoner Via link down below", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linktr.ee/Cossackgundi?u…", - "expanded_url": "https://linktr.ee/Cossackgundi?utm_source=linktree_admin_share", - "url": "https://t.co/avg3IXp4r5", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 3808, - "followers_count": 123992, - "friends_count": 252, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1817, - "location": "Ukraine ", - "media_count": 533, - "name": "COSSACKGUNDI", - "normal_followers_count": 123992, - "pinned_tweet_ids_str": [ - "1666857718387290135" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1378947769184976896/1689946967", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1482420026753921026/rWZRbEqN_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "cossackgundi", - "statuses_count": 3931, - "translator_type": "none", - "url": "https://t.co/avg3IXp4r5", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1692598619482862021", - "professional_type": "Creator", - "category": [ - { - "id": 957, - "name": "Author", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739753966076846256" - ], - "editable_until_msecs": "1703628243000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "8390", - "state": "EnabledWithCount" - }, - "source": "Twitter for Android", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739416279713300669", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMzc4OTQ3NzY5MTg0OTc2ODk2", - "rest_id": "1378947769184976896", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Apr 05 05:49:20 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Aiden Aslin\nBritish national. \nUkrainian marine 2018-2022\nPress Enquires Contact Humfrey@hunterprofiles.com\nOrder Putin's Prisoner Via link down below", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linktr.ee/Cossackgundi?u…", - "expanded_url": "https://linktr.ee/Cossackgundi?utm_source=linktree_admin_share", - "url": "https://t.co/avg3IXp4r5", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 3808, - "followers_count": 123992, - "friends_count": 252, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1817, - "location": "Ukraine ", - "media_count": 533, - "name": "COSSACKGUNDI", - "normal_followers_count": 123992, - "pinned_tweet_ids_str": [ - "1666857718387290135" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1378947769184976896/1689946967", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1482420026753921026/rWZRbEqN_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "cossackgundi", - "statuses_count": 3931, - "translator_type": "none", - "url": "https://t.co/avg3IXp4r5", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1692598619482862021", - "professional_type": "Creator", - "category": [ - { - "id": 957, - "name": "Author", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739416279713300669" - ], - "editable_until_msecs": "1703547732000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "24079", - "state": "EnabledWithCount" - }, - "source": "Twitter for Android", - "quotedRefResult": { - "result": { - "__typename": "Tweet", - "rest_id": "1739322172479258987" - } - }, - "legacy": { - "bookmark_count": 1, - "bookmarked": false, - "created_at": "Mon Dec 25 22:42:12 +0000 2023", - "conversation_id_str": "1739416279713300669", - "display_text_range": [ - 0, - 181 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 75, - "favorited": false, - "full_text": "70 tickets left $50 for a ticket all Funds are going to medical equipment and supplies! Second and third place runner up prizes included. If you're not able to grab share and boost.", - "is_quote_status": true, - "lang": "en", - "quote_count": 2, - "quoted_status_id_str": "1739322172479258987", - "quoted_status_permalink": { - "url": "https://t.co/fBvFwYSBzH", - "expanded": "https://twitter.com/cossackgundi/status/1739322172479258987", - "display": "twitter.com/cossackgundi/s…" - }, - "reply_count": 1, - "retweet_count": 25, - "retweeted": false, - "user_id_str": "1378947769184976896", - "id_str": "1739416279713300669" - } - } - }, - "legacy": { - "bookmark_count": 1, - "bookmarked": false, - "created_at": "Tue Dec 26 21:04:03 +0000 2023", - "conversation_id_str": "1739753966076846256", - "display_text_range": [ - 0, - 219 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 33, - "favorited": false, - "full_text": "63 tickets left\nKeep this going $50 for a donation ticket all funds going to Frontline medical supplies and equipment. \n\nMain prize is Russian Plate carrier and helmet with runner up prizes Russian uniforms and patches.", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1739416279713300669", - "quoted_status_permalink": { - "url": "https://t.co/WbywCGeJlN", - "expanded": "https://twitter.com/cossackgundi/status/1739416279713300669", - "display": "twitter.com/cossackgundi/s…" - }, - "reply_count": 1, - "retweet_count": 5, - "retweeted": false, - "user_id_str": "1378947769184976896", - "id_str": "1739753966076846256" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739753762757939285", - "sortIndex": "1739819664587882444", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739753762757939285", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo1Nzk3NDc1NjQ=", - "rest_id": "579747564", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon May 14 08:03:59 +0000 2012", - "default_profile": true, - "default_profile_image": false, - "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "presidentilves.ee", - "expanded_url": "http://www.presidentilves.ee", - "url": "https://t.co/lnQ9ajxxvK", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 20830, - "followers_count": 195135, - "friends_count": 1921, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 2114, - "location": "Estonia", - "media_count": 1101, - "name": "toomas ilves, ex-verif", - "normal_followers_count": 195135, - "pinned_tweet_ids_str": [ - "1597508496828006401" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "IlvesToomas", - "statuses_count": 205440, - "translator_type": "none", - "url": "https://t.co/lnQ9ajxxvK", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739753762757939285" - ], - "editable_until_msecs": "1703628194760", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": true, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 21:03:14 +0000 2023", - "conversation_id_str": "1739753762757939285", - "display_text_range": [ - 0, - 112 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1355070840979791873", - "name": "Simmo Saar 🌻", - "screen_name": "saar_simmo", - "indices": [ - 3, - 14 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @saar_simmo: Ja ärgem unustagem, et iga selline pauk tähendab, et need künad ei saa kunagi Läänemerele tulla.", - "is_quote_status": true, - "lang": "et", - "quote_count": 0, - "quoted_status_id_str": "1739551109667049518", - "quoted_status_permalink": { - "url": "https://t.co/KRwcWo2urR", - "expanded": "https://twitter.com/gerashchenko_en/status/1739551109667049518", - "display": "twitter.com/gerashchenko_e…" - }, - "reply_count": 0, - "retweet_count": 14, - "retweeted": false, - "user_id_str": "579747564", - "id_str": "1739753762757939285", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739557763871560086", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMzU1MDcwODQwOTc5NzkxODcz", - "rest_id": "1355070840979791873", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Fri Jan 29 08:30:48 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Sõltumatu kommunikatsiooniekspert. Vanad autod, vanad kellad ja kõik kassid ning pind eduraportöörluse tagumikus. NAFO expansion is non-negotiable.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "valiant.ee", - "expanded_url": "http://www.valiant.ee", - "url": "https://t.co/4Kh0gdWBR1", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 423340, - "followers_count": 4736, - "friends_count": 506, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 41, - "location": "Estonia", - "media_count": 4151, - "name": "Simmo Saar 🌻", - "normal_followers_count": 4736, - "pinned_tweet_ids_str": [ - "1603626557188280320" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1355070840979791873/1645858976", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1355071385744396288/dspYnRJP_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "saar_simmo", - "statuses_count": 19902, - "translator_type": "none", - "url": "https://t.co/4Kh0gdWBR1", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739557763871560086" - ], - "editable_until_msecs": "1703581464000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": true, - "views": { - "count": "14005", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739551109667049518", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTA1NDgxOTQ5ODU0NTAyOTE1", - "rest_id": "1505481949854502915", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Sun Mar 20 09:52:25 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Ukrainian patriot. Advisor to the Minister of Internal Affairs of Ukraine. Founder of the Institute of the Future. Official enemy of Russian propaganda", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 3770, - "followers_count": 540878, - "friends_count": 1026, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5593, - "location": "Ukraine", - "media_count": 11673, - "name": "Anton Gerashchenko", - "normal_followers_count": 540878, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1505481949854502915/1650720026", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1553728604835647488/AKRkDR_K_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Gerashchenko_en", - "statuses_count": 14518, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1518938760821497857", - "professional_type": "Creator", - "category": [ - { - "id": 934, - "name": "Social Media Influencer", - "icon_name": "IconBriefcaseStroke" - } - ] - }, - "super_follow_eligible": true - } - } - }, - "unmention_data": {}, - "edit_control": { - "initial_tweet_id": "1739545872411635779", - "edit_control_initial": { - "edit_tweet_ids": [ - "1739545872411635779", - "1739551109667049518" - ], - "editable_until_msecs": "1703578629000", - "is_edit_eligible": true, - "edits_remaining": "4" - } - }, - "previous_counts": { - "bookmark_count": 8, - "favorite_count": 1170, - "quote_count": 13, - "reply_count": 47, - "retweet_count": 109 - }, - "is_translatable": false, - "views": { - "count": "838573", - "state": "EnabledWithCount" - }, - "source": "Twitter for Android", - "legacy": { - "bookmark_count": 80, - "bookmarked": false, - "created_at": "Tue Dec 26 07:37:58 +0000 2023", - "conversation_id_str": "1739551109667049518", - "display_text_range": [ - 0, - 210 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/oB4pwCHi2x", - "expanded_url": "https://twitter.com/Gerashchenko_en/status/1739551109667049518/video/1", - "id_str": "1739545838446141440", - "indices": [ - 211, - 234 - ], - "media_key": "7_1739545838446141440", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1739545838446141440/pu/img/HUGGbOfNq-YL1ysM.jpg", - "type": "video", - "url": "https://t.co/oB4pwCHi2x", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 1080, - "w": 1080, - "resize": "fit" - }, - "medium": { - "h": 1080, - "w": 1080, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1080, - "width": 1080, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 1, - 1 - ], - "duration_millis": 16300, - "variants": [ - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1739545838446141440/pu/pl/0H630jRmngJO7VaX.m3u8?tag=12&container=fmp4" - }, - { - "bitrate": 432000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739545838446141440/pu/vid/avc1/320x320/1oGxg9HfSLpXOLup.mp4?tag=12" - }, - { - "bitrate": 1280000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739545838446141440/pu/vid/avc1/720x720/nvxfBa1cQZdtVNrS.mp4?tag=12" - }, - { - "bitrate": 832000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739545838446141440/pu/vid/avc1/540x540/KTJtMIYAsYzSxOqp.mp4?tag=12" - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/oB4pwCHi2x", - "expanded_url": "https://twitter.com/Gerashchenko_en/status/1739551109667049518/video/1", - "id_str": "1739545838446141440", - "indices": [ - 211, - 234 - ], - "media_key": "7_1739545838446141440", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1739545838446141440/pu/img/HUGGbOfNq-YL1ysM.jpg", - "type": "video", - "url": "https://t.co/oB4pwCHi2x", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 1080, - "w": 1080, - "resize": "fit" - }, - "medium": { - "h": 1080, - "w": 1080, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1080, - "width": 1080, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 1, - 1 - ], - "duration_millis": 16300, - "variants": [ - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1739545838446141440/pu/pl/0H630jRmngJO7VaX.m3u8?tag=12&container=fmp4" - }, - { - "bitrate": 432000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739545838446141440/pu/vid/avc1/320x320/1oGxg9HfSLpXOLup.mp4?tag=12" - }, - { - "bitrate": 1280000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739545838446141440/pu/vid/avc1/720x720/nvxfBa1cQZdtVNrS.mp4?tag=12" - }, - { - "bitrate": 832000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739545838446141440/pu/vid/avc1/540x540/KTJtMIYAsYzSxOqp.mp4?tag=12" - } - ] - } - } - ] - }, - "favorite_count": 15892, - "favorited": false, - "full_text": "Russian Novocherkask landing ship has been hit by Ukrainian tactical aviation in occupied Crimea - Ukrainian Air Forces.\n\n\"I follow the Moskva...\" I find myself humming this morning.\n\nGlory to Ukrainian Heroes! https://t.co/oB4pwCHi2x", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 112, - "reply_count": 424, - "retweet_count": 2025, - "retweeted": false, - "user_id_str": "1505481949854502915", - "id_str": "1739551109667049518" - } - } - }, - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 08:04:24 +0000 2023", - "conversation_id_str": "1739557763871560086", - "display_text_range": [ - 0, - 96 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 299, - "favorited": false, - "full_text": "Ja ärgem unustagem, et iga selline pauk tähendab, et need künad ei saa kunagi Läänemerele tulla.", - "is_quote_status": true, - "lang": "et", - "quote_count": 1, - "quoted_status_id_str": "1739551109667049518", - "quoted_status_permalink": { - "url": "https://t.co/KRwcWo2urR", - "expanded": "https://twitter.com/gerashchenko_en/status/1739551109667049518", - "display": "twitter.com/gerashchenko_e…" - }, - "reply_count": 2, - "retweet_count": 14, - "retweeted": false, - "user_id_str": "1355070840979791873", - "id_str": "1739557763871560086" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739752415585341890", - "sortIndex": "1739819664587882443", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739752415585341890", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo1Nzk3NDc1NjQ=", - "rest_id": "579747564", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon May 14 08:03:59 +0000 2012", - "default_profile": true, - "default_profile_image": false, - "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "presidentilves.ee", - "expanded_url": "http://www.presidentilves.ee", - "url": "https://t.co/lnQ9ajxxvK", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 20830, - "followers_count": 195135, - "friends_count": 1921, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 2114, - "location": "Estonia", - "media_count": 1101, - "name": "toomas ilves, ex-verif", - "normal_followers_count": 195135, - "pinned_tweet_ids_str": [ - "1597508496828006401" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "IlvesToomas", - "statuses_count": 205440, - "translator_type": "none", - "url": "https://t.co/lnQ9ajxxvK", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739752415585341890" - ], - "editable_until_msecs": "1703627873569", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 20:57:53 +0000 2023", - "conversation_id_str": "1739752415585341890", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "2389205874", - "name": "Christopher Dunnett", - "screen_name": "ccdunnett", - "indices": [ - 3, - 13 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @ccdunnett: I was in Fulbright with Petro in Ukraine during Maidan. His research was on “russkiy mir” in Ukraine, didn’t exactly hide hi…", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1737156573435134217", - "quoted_status_permalink": { - "url": "https://t.co/xRAhnGkHff", - "expanded": "https://twitter.com/foreignpolicy/status/1737156573435134217", - "display": "twitter.com/foreignpolicy/…" - }, - "reply_count": 0, - "retweet_count": 307, - "retweeted": false, - "user_id_str": "579747564", - "id_str": "1739752415585341890", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739617443125788767", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyMzg5MjA1ODc0", - "rest_id": "2389205874", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Fri Mar 14 14:40:07 +0000 2014", - "default_profile": true, - "default_profile_image": false, - "description": "Fulbright in Ukraine ‘13-14, SAIS, formerly IMF. Tweets my own, and re-tweet/like is not an endorsement.", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 2289, - "followers_count": 298, - "friends_count": 728, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 15, - "location": "Washington, DC", - "media_count": 89, - "name": "Christopher Dunnett", - "normal_followers_count": 298, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1577093486347698180/GuU7hZGD_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "ccdunnett", - "statuses_count": 1554, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739617443125788767" - ], - "editable_until_msecs": "1703595693000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "78684", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1737156573435134217", - "birdwatch_pivot": { - "callToAction": { - "prompt": "Do you find this helpful?", - "title": "Rate it", - "destinationUrl": "https://twitter.com/i/birdwatch/n/1739410631554424951" - }, - "destinationUrl": "https://twitter.com/i/birdwatch/n/1739410631554424951", - "footer": { - "text": "Context is written by people who use X, and appears when rated helpful by others. Find out more.", - "entities": [ - { - "fromIndex": 83, - "toIndex": 96, - "ref": { - "type": "TimelineUrl", - "url": "https://twitter.com/i/flow/join-birdwatch", - "urlType": "ExternalUrl" - } - } - ] - }, - "note": { - "rest_id": "1739410631554424951" - }, - "subtitle": { - "text": "Russian speakers are not oppressed in Ukraine. A significant portion of the Ukrainian people speak Russian, or a mix of Ukrainian and Russian.\n\nThis does not make them Russian, nor \"Russophiles.\"\n\nThe entire article is recycled pro-russian propaganda points from the last year.\n\nen.m.wikipedia.org/wiki/Russian_l…", - "entities": [ - { - "fromIndex": 279, - "toIndex": 313, - "ref": { - "type": "TimelineUrl", - "url": "https://t.co/3c9At9sER6", - "urlType": "ExternalUrl" - } - } - ] - }, - "title": "Readers added context they thought people might want to know", - "shorttitle": "Readers added context", - "visualStyle": "Default", - "iconType": "BirdwatchV1Icon" - }, - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNjc5MjI3NQ==", - "rest_id": "26792275", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Thu Mar 26 16:57:01 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "The magazine for global politics, economics, and ideas | Sign up for our newsletters: https://t.co/vasoTyHsYj", - "entities": { - "description": { - "urls": [ - { - "display_url": "foreignpolicy.com/newsletters/", - "expanded_url": "http://foreignpolicy.com/newsletters/", - "url": "https://t.co/vasoTyHsYj", - "indices": [ - 86, - 109 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "foreignpolicy.com", - "expanded_url": "http://www.foreignpolicy.com", - "url": "https://t.co/91lmodrlGD", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 1685, - "followers_count": 1256993, - "friends_count": 1082, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 19641, - "location": "", - "media_count": 22078, - "name": "Foreign Policy", - "normal_followers_count": 1256993, - "pinned_tweet_ids_str": [ - "1711455629506675198" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/26792275/1694553117", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1387089996532879364/WYZKsRZu_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "ForeignPolicy", - "statuses_count": 146922, - "translator_type": "regular", - "url": "https://t.co/91lmodrlGD", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1499431575976620038", - "professional_type": "Business", - "category": [ - { - "id": 580, - "name": "Media & News Company", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "card": { - "rest_id": "https://t.co/QgGokbmddp", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739305397570371584/4pXtx683?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 150, - "width": 225, - "url": "https://pbs.twimg.com/card_img/1739305397570371584/4pXtx683?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "Wartime unity hasn’t healed the wounds of the country’s past.", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "foreignpolicy.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 320, - "width": 480, - "url": "https://pbs.twimg.com/card_img/1739305397570371584/4pXtx683?format=jpg&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739305397570371584/4pXtx683?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 666, - "width": 1000, - "url": "https://pbs.twimg.com/card_img/1739305397570371584/4pXtx683?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "26792275", - "path": [] - } - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739305397570371584/4pXtx683?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739305397570371584/4pXtx683?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 67, - "width": 100, - "url": "https://pbs.twimg.com/card_img/1739305397570371584/4pXtx683?format=jpg&name=100x100" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 666, - "width": 1000, - "url": "https://pbs.twimg.com/card_img/1739305397570371584/4pXtx683?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 666, - "width": 1000, - "url": "https://pbs.twimg.com/card_img/1739305397570371584/4pXtx683?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "foreignpolicy.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739305397570371584/4pXtx683?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 209, - "green": 209, - "red": 214 - }, - "percentage": 59.24 - }, - { - "rgb": { - "blue": 99, - "green": 113, - "red": 132 - }, - "percentage": 19.95 - }, - { - "rgb": { - "blue": 81, - "green": 145, - "red": 173 - }, - "percentage": 9.1 - }, - { - "rgb": { - "blue": 51, - "green": 160, - "red": 200 - }, - "percentage": 1.38 - }, - { - "rgb": { - "blue": 35, - "green": 43, - "red": 70 - }, - "percentage": 1.09 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Ukraine Has a Civil Rights Problem", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 209, - "green": 209, - "red": 214 - }, - "percentage": 59.24 - }, - { - "rgb": { - "blue": 99, - "green": 113, - "red": 132 - }, - "percentage": 19.95 - }, - { - "rgb": { - "blue": 81, - "green": 145, - "red": 173 - }, - "percentage": 9.1 - }, - { - "rgb": { - "blue": 51, - "green": 160, - "red": 200 - }, - "percentage": 1.38 - }, - { - "rgb": { - "blue": 35, - "green": 43, - "red": 70 - }, - "percentage": 1.09 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 666, - "width": 1000, - "url": "https://pbs.twimg.com/card_img/1739305397570371584/4pXtx683?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739305397570371584/4pXtx683?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 209, - "green": 209, - "red": 214 - }, - "percentage": 59.24 - }, - { - "rgb": { - "blue": 99, - "green": 113, - "red": 132 - }, - "percentage": 19.95 - }, - { - "rgb": { - "blue": 81, - "green": 145, - "red": 173 - }, - "percentage": 9.1 - }, - { - "rgb": { - "blue": 51, - "green": 160, - "red": 200 - }, - "percentage": 1.38 - }, - { - "rgb": { - "blue": 35, - "green": 43, - "red": 70 - }, - "percentage": 1.09 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 666, - "width": 1000, - "url": "https://pbs.twimg.com/card_img/1739305397570371584/4pXtx683?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/QgGokbmddp", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 666, - "width": 1000, - "url": "https://pbs.twimg.com/card_img/1739305397570371584/4pXtx683?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/QgGokbmddp", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjoyNjc5MjI3NQ==", - "rest_id": "26792275", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Thu Mar 26 16:57:01 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "The magazine for global politics, economics, and ideas | Sign up for our newsletters: https://t.co/vasoTyHsYj", - "entities": { - "description": { - "urls": [ - { - "display_url": "foreignpolicy.com/newsletters/", - "expanded_url": "http://foreignpolicy.com/newsletters/", - "url": "https://t.co/vasoTyHsYj", - "indices": [ - 86, - 109 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "foreignpolicy.com", - "expanded_url": "http://www.foreignpolicy.com", - "url": "https://t.co/91lmodrlGD", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 1685, - "followers_count": 1256993, - "friends_count": 1082, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 19641, - "location": "", - "media_count": 22078, - "name": "Foreign Policy", - "normal_followers_count": 1256993, - "pinned_tweet_ids_str": [ - "1711455629506675198" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/26792275/1694553117", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1387089996532879364/WYZKsRZu_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "ForeignPolicy", - "statuses_count": 146922, - "translator_type": "regular", - "url": "https://t.co/91lmodrlGD", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1499431575976620038", - "professional_type": "Business", - "category": [ - { - "id": 580, - "name": "Media & News Company", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1737156573435134217" - ], - "editable_until_msecs": "1703008976000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "268783", - "state": "EnabledWithCount" - }, - "source": "Buffer", - "legacy": { - "bookmark_count": 54, - "bookmarked": false, - "created_at": "Tue Dec 19 17:02:56 +0000 2023", - "conversation_id_str": "1737156573435134217", - "display_text_range": [ - 0, - 106 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "foreignpolicy.com/2023/12/18/ukr…", - "expanded_url": "https://foreignpolicy.com/2023/12/18/ukraine-russia-war-civil-rights-freedom-speech-religion/", - "url": "https://t.co/QgGokbmddp", - "indices": [ - 83, - 106 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 125, - "favorited": false, - "full_text": "Wartime unity hasn’t healed the wounds of Ukraine’s past, Nicolai N. Petro writes.\nhttps://t.co/QgGokbmddp", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 24, - "reply_count": 230, - "retweet_count": 17, - "retweeted": false, - "user_id_str": "26792275", - "id_str": "1737156573435134217" - } - } - }, - "legacy": { - "bookmark_count": 64, - "bookmarked": false, - "created_at": "Tue Dec 26 12:01:33 +0000 2023", - "conversation_id_str": "1739617443125788767", - "display_text_range": [ - 0, - 278 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 1679, - "favorited": false, - "full_text": "I was in Fulbright with Petro in Ukraine during Maidan. His research was on “russkiy mir” in Ukraine, didn’t exactly hide his pro-Russian views on Ukr, and ridiculed foreign students wanting to study Ukrainian in Odesa. Why FP think he has the creds to write on Ukraine beats me", - "is_quote_status": true, - "lang": "en", - "quote_count": 7, - "quoted_status_id_str": "1737156573435134217", - "quoted_status_permalink": { - "url": "https://t.co/xRAhnGkHff", - "expanded": "https://twitter.com/foreignpolicy/status/1737156573435134217", - "display": "twitter.com/foreignpolicy/…" - }, - "reply_count": 17, - "retweet_count": 307, - "retweeted": false, - "user_id_str": "2389205874", - "id_str": "1739617443125788767" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739752337575379024", - "sortIndex": "1739819664587882442", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739752337575379024", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo1Nzk3NDc1NjQ=", - "rest_id": "579747564", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon May 14 08:03:59 +0000 2012", - "default_profile": true, - "default_profile_image": false, - "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "presidentilves.ee", - "expanded_url": "http://www.presidentilves.ee", - "url": "https://t.co/lnQ9ajxxvK", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 20830, - "followers_count": 195135, - "friends_count": 1921, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 2114, - "location": "Estonia", - "media_count": 1101, - "name": "toomas ilves, ex-verif", - "normal_followers_count": 195135, - "pinned_tweet_ids_str": [ - "1597508496828006401" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "IlvesToomas", - "statuses_count": 205440, - "translator_type": "none", - "url": "https://t.co/lnQ9ajxxvK", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739752337575379024" - ], - "editable_until_msecs": "1703627854970", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 20:57:34 +0000 2023", - "conversation_id_str": "1739752337575379024", - "display_text_range": [ - 0, - 85 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1053324106148524032", - "name": "Ben Hodges", - "screen_name": "general_ben", - "indices": [ - 3, - 15 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @general_ben: This is good news. Soon, there will be nowhere for Hungary to hide.", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1739683333880094762", - "quoted_status_permalink": { - "url": "https://t.co/IB9zRK6AY0", - "expanded": "https://twitter.com/anders_aslund/status/1739683333880094762", - "display": "twitter.com/anders_aslund/…" - }, - "reply_count": 0, - "retweet_count": 426, - "retweeted": false, - "user_id_str": "579747564", - "id_str": "1739752337575379024", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739685984747299022", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMDUzMzI0MTA2MTQ4NTI0MDMy", - "rest_id": "1053324106148524032", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Fri Oct 19 16:36:51 +0000 2018", - "default_profile": true, - "default_profile_image": false, - "description": "Former Commanding General USArmyEurope, NATO Senior Mentor for Logistics, Advisor to @SpiritAmerica, loves the Army Team, FSU football and Atlanta Braves!", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 18088, - "followers_count": 183163, - "friends_count": 3512, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 3223, - "location": "", - "media_count": 44, - "name": "Ben Hodges", - "normal_followers_count": 183163, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1053327492696760322/X0xKjtU-_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "general_ben", - "statuses_count": 4511, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739685984747299022" - ], - "editable_until_msecs": "1703612035000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "119294", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739683333880094762", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyOTMyNDYwMTk1", - "rest_id": "2932460195", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Fri Dec 19 19:15:17 +0000 2014", - "default_profile": true, - "default_profile_image": false, - "description": "Economist & author. Russia, Ukraine & Eastern Europe. Read my latest book: \"Russia's Crony Capitalism\" https://t.co/ZqmWMRSMf9", - "entities": { - "description": { - "urls": [ - { - "display_url": "amzn.to/2WgLENO", - "expanded_url": "https://amzn.to/2WgLENO", - "url": "https://t.co/ZqmWMRSMf9", - "indices": [ - 103, - 126 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 44120, - "followers_count": 313527, - "friends_count": 4320, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 4699, - "location": "Washington, DC", - "media_count": 377, - "name": "Anders Åslund", - "normal_followers_count": 313527, - "pinned_tweet_ids_str": [ - "1124326148073299968" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2932460195/1556849532", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/803063265165185024/oK-YayC6_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "anders_aslund", - "statuses_count": 42883, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739683333880094762" - ], - "editable_until_msecs": "1703611403000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "170128", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "quotedRefResult": { - "result": { - "__typename": "Tweet", - "rest_id": "1739681174509748345" - } - }, - "legacy": { - "bookmark_count": 7, - "bookmarked": false, - "created_at": "Tue Dec 26 16:23:23 +0000 2023", - "conversation_id_str": "1739683333880094762", - "display_text_range": [ - 0, - 233 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 1194, - "favorited": false, - "full_text": "The Foreign Affairs Committee of the Turkish Parliament has approved of Sweden's application to become a member of NATO. The next step is that the Parliament votes on this matter. Sweden is looking forward to become a member of NATO.", - "is_quote_status": true, - "lang": "en", - "quote_count": 10, - "quoted_status_id_str": "1739681174509748345", - "quoted_status_permalink": { - "url": "https://t.co/g6lk9ggx5t", - "expanded": "https://twitter.com/TobiasBillstrom/status/1739681174509748345", - "display": "twitter.com/TobiasBillstro…" - }, - "reply_count": 26, - "retweet_count": 205, - "retweeted": false, - "user_id_str": "2932460195", - "id_str": "1739683333880094762" - } - } - }, - "legacy": { - "bookmark_count": 16, - "bookmarked": false, - "created_at": "Tue Dec 26 16:33:55 +0000 2023", - "conversation_id_str": "1739685984747299022", - "display_text_range": [ - 0, - 68 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 3115, - "favorited": false, - "full_text": "This is good news. Soon, there will be nowhere for Hungary to hide.", - "is_quote_status": true, - "lang": "en", - "quote_count": 7, - "quoted_status_id_str": "1739683333880094762", - "quoted_status_permalink": { - "url": "https://t.co/IB9zRK6AY0", - "expanded": "https://twitter.com/anders_aslund/status/1739683333880094762", - "display": "twitter.com/anders_aslund/…" - }, - "reply_count": 76, - "retweet_count": 426, - "retweeted": false, - "user_id_str": "1053324106148524032", - "id_str": "1739685984747299022" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739752262078005487", - "sortIndex": "1739819664587882441", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739752262078005487", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "initial_tweet_id": "1739751231701078086", - "edit_control_initial": { - "edit_tweet_ids": [ - "1739751231701078086", - "1739752174387712248", - "1739752262078005487" - ], - "editable_until_msecs": "1703627591000", - "is_edit_eligible": true, - "edits_remaining": "3" - } - }, - "previous_counts": { - "bookmark_count": 1, - "favorite_count": 83, - "quote_count": 1, - "reply_count": 6, - "retweet_count": 13 - }, - "is_translatable": false, - "views": { - "count": "86155", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 7, - "bookmarked": false, - "created_at": "Tue Dec 26 20:57:16 +0000 2023", - "conversation_id_str": "1739752262078005487", - "display_text_range": [ - 0, - 231 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/mYxVtoXRdJ", - "expanded_url": "https://twitter.com/KyivIndependent/status/1739752262078005487/photo/1", - "id_str": "1739750794084143104", - "indices": [ - 232, - 255 - ], - "media_key": "3_1739750794084143104", - "media_url_https": "https://pbs.twimg.com/media/GCTWIS8W0AARCQy.png", - "type": "photo", - "url": "https://t.co/mYxVtoXRdJ", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 309, - "y": 151, - "h": 442, - "w": 442 - } - ] - }, - "medium": { - "faces": [ - { - "x": 309, - "y": 151, - "h": 442, - "w": 442 - } - ] - }, - "small": { - "faces": [ - { - "x": 194, - "y": 95, - "h": 278, - "w": 278 - } - ] - }, - "orig": { - "faces": [ - { - "x": 309, - "y": 151, - "h": 442, - "w": 442 - } - ] - } - }, - "sizes": { - "large": { - "h": 1080, - "w": 1080, - "resize": "fit" - }, - "medium": { - "h": 1080, - "w": 1080, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1080, - "width": 1080, - "focus_rects": [ - { - "x": 0, - "y": 103, - "w": 1080, - "h": 605 - }, - { - "x": 0, - "y": 0, - "w": 1080, - "h": 1080 - }, - { - "x": 94, - "y": 0, - "w": 947, - "h": 1080 - }, - { - "x": 297, - "y": 0, - "w": 540, - "h": 1080 - }, - { - "x": 0, - "y": 0, - "w": 1080, - "h": 1080 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/mYxVtoXRdJ", - "expanded_url": "https://twitter.com/KyivIndependent/status/1739752262078005487/photo/1", - "id_str": "1739750794084143104", - "indices": [ - 232, - 255 - ], - "media_key": "3_1739750794084143104", - "media_url_https": "https://pbs.twimg.com/media/GCTWIS8W0AARCQy.png", - "type": "photo", - "url": "https://t.co/mYxVtoXRdJ", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 309, - "y": 151, - "h": 442, - "w": 442 - } - ] - }, - "medium": { - "faces": [ - { - "x": 309, - "y": 151, - "h": 442, - "w": 442 - } - ] - }, - "small": { - "faces": [ - { - "x": 194, - "y": 95, - "h": 278, - "w": 278 - } - ] - }, - "orig": { - "faces": [ - { - "x": 309, - "y": 151, - "h": 442, - "w": 442 - } - ] - } - }, - "sizes": { - "large": { - "h": 1080, - "w": 1080, - "resize": "fit" - }, - "medium": { - "h": 1080, - "w": 1080, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1080, - "width": 1080, - "focus_rects": [ - { - "x": 0, - "y": 103, - "w": 1080, - "h": 605 - }, - { - "x": 0, - "y": 0, - "w": 1080, - "h": 1080 - }, - { - "x": 94, - "y": 0, - "w": 947, - "h": 1080 - }, - { - "x": 297, - "y": 0, - "w": 540, - "h": 1080 - }, - { - "x": 0, - "y": 0, - "w": 1080, - "h": 1080 - } - ] - } - } - ] - }, - "favorite_count": 805, - "favorited": false, - "full_text": "29-year-old police lieutenant Ihor Misiunia was killed today as a result of Russia's strike on the Kherson railway station late on Dec. 26.\n\nIhor is survived by his wife and two children.\n\n📸: Ministry of Internal Affairs / Telegram https://t.co/mYxVtoXRdJ", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 10, - "reply_count": 41, - "retweet_count": 166, - "retweeted": false, - "user_id_str": "1462548977367359490", - "id_str": "1739752262078005487" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739752103604625748", - "sortIndex": "1739819664587882440", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739752103604625748", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo1Nzk3NDc1NjQ=", - "rest_id": "579747564", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon May 14 08:03:59 +0000 2012", - "default_profile": true, - "default_profile_image": false, - "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "presidentilves.ee", - "expanded_url": "http://www.presidentilves.ee", - "url": "https://t.co/lnQ9ajxxvK", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 20830, - "followers_count": 195135, - "friends_count": 1921, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 2114, - "location": "Estonia", - "media_count": 1101, - "name": "toomas ilves, ex-verif", - "normal_followers_count": 195135, - "pinned_tweet_ids_str": [ - "1597508496828006401" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "IlvesToomas", - "statuses_count": 205440, - "translator_type": "none", - "url": "https://t.co/lnQ9ajxxvK", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739752103604625748" - ], - "editable_until_msecs": "1703627799187", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": true, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 20:56:39 +0000 2023", - "conversation_id_str": "1739752103604625748", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "25569683", - "name": "Raivo Hein", - "screen_name": "RaivoHein", - "indices": [ - 3, - 13 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @RaivoHein: Kuidas sünnivad fantaasiad? Siis, kui ajakirjanik otsustab miskit kirjutada, aga kuna ta täpselt asju ei tea, siis mõtleb ta…", - "is_quote_status": false, - "lang": "et", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 1, - "retweeted": false, - "user_id_str": "579747564", - "id_str": "1739752103604625748", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739593361407807851", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNTU2OTY4Mw==", - "rest_id": "25569683", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Fri Mar 20 20:27:48 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Esinemised ja muud kutsed palun saata minu emailile raivo.hein@gmail.com Instagramis jagan teile ka muid rahahäkke. Tule vaatama @raivohein", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "instagram.com/raivohein/", - "expanded_url": "https://www.instagram.com/raivohein/", - "url": "https://t.co/eZmRaDGyrX", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 13534, - "followers_count": 5899, - "friends_count": 1442, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 26, - "location": "Tallinn, Estonia", - "media_count": 133, - "name": "Raivo Hein", - "normal_followers_count": 5899, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/25569683/1696480531", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1724495352496013312/nsVzIfdZ_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "RaivoHein", - "statuses_count": 707, - "translator_type": "none", - "url": "https://t.co/eZmRaDGyrX", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1593115310374223872", - "professional_type": "Business", - "category": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739593361407807851" - ], - "editable_until_msecs": "1703589952000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": true, - "views": { - "count": "13356", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "note_tweet": { - "is_expandable": true, - "note_tweet_results": { - "result": { - "id": "Tm90ZVR3ZWV0OjE3Mzk1OTMzNjEyODIwMjc1MjA=", - "text": "Kuidas sünnivad fantaasiad? Siis, kui ajakirjanik otsustab miskit kirjutada, aga kuna ta täpselt asju ei tea, siis mõtleb ta loo välja🤡 (selgituseks, et Hein ei ole kunagi olnud seotud kuidagi CV-Online loomisega või omanikuna ja Alma Mediale ei ole ta ka miskit kunagi müünud) Kena Jõulu 😀https://t.co/kOBuEEOOuZ", - "entity_set": { - "hashtags": [], - "symbols": [], - "urls": [ - { - "display_url": "arileht.delfi.ee/artikkel/12023…", - "expanded_url": "https://arileht.delfi.ee/artikkel/120238342/eesti-ettevotjate-sajandi-suurtehingud-suurimad-tehingumiljonarid-ehitavad-juba-uusi-superettevotteid", - "url": "https://t.co/kOBuEEOOuZ", - "indices": [ - 290, - 313 - ] - } - ], - "user_mentions": [] - }, - "richtext": { - "richtext_tags": [] - }, - "media": { - "inline_media": [] - } - } - } - }, - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 10:25:52 +0000 2023", - "conversation_id_str": "1739593361407807851", - "display_text_range": [ - 0, - 278 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/H02T62RF4w", - "expanded_url": "https://twitter.com/RaivoHein/status/1739593361407807851/photo/1", - "id_str": "1739593155970756608", - "indices": [ - 279, - 302 - ], - "media_key": "3_1739593155970756608", - "media_url_https": "https://pbs.twimg.com/media/GCRGwjNWcAAu-oV.png", - "type": "photo", - "url": "https://t.co/H02T62RF4w", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 442, - "w": 1708, - "resize": "fit" - }, - "medium": { - "h": 311, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 176, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 442, - "width": 1708, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 789, - "h": 442 - }, - { - "x": 0, - "y": 0, - "w": 442, - "h": 442 - }, - { - "x": 19, - "y": 0, - "w": 388, - "h": 442 - }, - { - "x": 103, - "y": 0, - "w": 221, - "h": 442 - }, - { - "x": 0, - "y": 0, - "w": 1708, - "h": 442 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/H02T62RF4w", - "expanded_url": "https://twitter.com/RaivoHein/status/1739593361407807851/photo/1", - "id_str": "1739593155970756608", - "indices": [ - 279, - 302 - ], - "media_key": "3_1739593155970756608", - "media_url_https": "https://pbs.twimg.com/media/GCRGwjNWcAAu-oV.png", - "type": "photo", - "url": "https://t.co/H02T62RF4w", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 442, - "w": 1708, - "resize": "fit" - }, - "medium": { - "h": 311, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 176, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 442, - "width": 1708, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 789, - "h": 442 - }, - { - "x": 0, - "y": 0, - "w": 442, - "h": 442 - }, - { - "x": 19, - "y": 0, - "w": 388, - "h": 442 - }, - { - "x": 103, - "y": 0, - "w": 221, - "h": 442 - }, - { - "x": 0, - "y": 0, - "w": 1708, - "h": 442 - } - ] - } - } - ] - }, - "favorite_count": 51, - "favorited": false, - "full_text": "Kuidas sünnivad fantaasiad? Siis, kui ajakirjanik otsustab miskit kirjutada, aga kuna ta täpselt asju ei tea, siis mõtleb ta loo välja🤡 (selgituseks, et Hein ei ole kunagi olnud seotud kuidagi CV-Online loomisega või omanikuna ja Alma Mediale ei ole ta ka miskit kunagi müünud)… https://t.co/H02T62RF4w", - "is_quote_status": false, - "lang": "et", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 9, - "retweet_count": 1, - "retweeted": false, - "user_id_str": "25569683", - "id_str": "1739593361407807851" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739751811949400183", - "sortIndex": "1739819664587882439", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739751811949400183", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo1Nzk3NDc1NjQ=", - "rest_id": "579747564", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon May 14 08:03:59 +0000 2012", - "default_profile": true, - "default_profile_image": false, - "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "presidentilves.ee", - "expanded_url": "http://www.presidentilves.ee", - "url": "https://t.co/lnQ9ajxxvK", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 20830, - "followers_count": 195135, - "friends_count": 1921, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 2114, - "location": "Estonia", - "media_count": 1101, - "name": "toomas ilves, ex-verif", - "normal_followers_count": 195135, - "pinned_tweet_ids_str": [ - "1597508496828006401" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "IlvesToomas", - "statuses_count": 205440, - "translator_type": "none", - "url": "https://t.co/lnQ9ajxxvK", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739751811949400183" - ], - "editable_until_msecs": "1703627729651", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 20:55:29 +0000 2023", - "conversation_id_str": "1739751811949400183", - "display_text_range": [ - 0, - 139 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1514502401486639110", - "name": "Pekka Kallioniemi", - "screen_name": "P_Kallioniemi", - "indices": [ - 3, - 17 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @P_Kallioniemi: On X, the last bastion of free speech, you can repeat genocidal chants, talk about gassing ethnic groups, call anyone a…", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1738872147479568482", - "quoted_status_permalink": { - "url": "https://t.co/7mVHZpf59u", - "expanded": "https://twitter.com/ChrChristensen/status/1738872147479568482", - "display": "twitter.com/ChrChristensen…" - }, - "reply_count": 0, - "retweet_count": 502, - "retweeted": false, - "user_id_str": "579747564", - "id_str": "1739751811949400183", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739680359749501140", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTE0NTAyNDAxNDg2NjM5MTEw", - "rest_id": "1514502401486639110", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Thu Apr 14 07:14:55 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "https://t.co/no5ViuG09x | https://t.co/wBPlyK69RX | listen and/or donate to @MriyaReport (24/7) & @MriyaAid", - "entities": { - "description": { - "urls": [ - { - "display_url": "vatniksoup.com", - "expanded_url": "http://vatniksoup.com", - "url": "https://t.co/no5ViuG09x", - "indices": [ - 0, - 23 - ] - }, - { - "display_url": "youtube.com/@TheSoupCentral", - "expanded_url": "http://youtube.com/@TheSoupCentral", - "url": "https://t.co/wBPlyK69RX", - "indices": [ - 26, - 49 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "buymeacoffee.com/PKallioniemi", - "expanded_url": "https://www.buymeacoffee.com/PKallioniemi", - "url": "https://t.co/u9XwHUWWvC", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 24632, - "followers_count": 126981, - "friends_count": 2125, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1439, - "location": "Langley, Virginia", - "media_count": 4642, - "name": "Pekka Kallioniemi", - "normal_followers_count": 126981, - "pinned_tweet_ids_str": [ - "1737503041920573838" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1514502401486639110/1674132865", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1678305940481753089/g751T5c__normal.jpg", - "profile_interstitial_type": "", - "screen_name": "P_Kallioniemi", - "statuses_count": 9360, - "translator_type": "none", - "url": "https://t.co/u9XwHUWWvC", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "super_follow_eligible": true - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739680359749501140" - ], - "editable_until_msecs": "1703610694000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "101453", - "state": "EnabledWithCount" - }, - "source": "Twitter for Android", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1738872147479568482", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo2NDczMDIy", - "rest_id": "6473022", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Thu May 31 14:18:09 +0000 2007", - "default_profile": false, - "default_profile_image": false, - "description": "American. Professor at Stockholm University. Ph.D. University of Texas at Austin. Write about journalism, politics, culture.", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 4786, - "followers_count": 36991, - "friends_count": 2957, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 662, - "location": "", - "media_count": 10875, - "name": "Christian Christensen", - "normal_followers_count": 36991, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/6473022/1696819479", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1620938795431460864/ktsIFQI4_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "ChrChristensen", - "statuses_count": 92159, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/bANs1lwYFj", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1738613364220162048/gcdMdVe2?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 146, - "width": 280, - "url": "https://pbs.twimg.com/card_img/1738613364220162048/gcdMdVe2?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "MALMÖ. Mitt i strejken ringde Teslaanställde Jānis Kuzmas chef upp och frågade honom hur han mådde. Men snart skiftade samtalsämnet och chefen konstaterade att", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.aftonbladet.se", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1738613364220162048/gcdMdVe2?format=jpg&name=600x600" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1738613364220162048/gcdMdVe2?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 627, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1738613364220162048/gcdMdVe2?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1738613364220162048/gcdMdVe2?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1738613364220162048/gcdMdVe2?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 75, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1738613364220162048/gcdMdVe2?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 627, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1738613364220162048/gcdMdVe2?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 627, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1738613364220162048/gcdMdVe2?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "aftonbladet.se", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1738613364220162048/gcdMdVe2?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 27, - "green": 29, - "red": 35 - }, - "percentage": 38.81 - }, - { - "rgb": { - "blue": 144, - "green": 149, - "red": 150 - }, - "percentage": 31.03 - }, - { - "rgb": { - "blue": 39, - "green": 57, - "red": 128 - }, - "percentage": 15.38 - }, - { - "rgb": { - "blue": 93, - "green": 116, - "red": 187 - }, - "percentage": 3.39 - }, - { - "rgb": { - "blue": 1, - "green": 1, - "red": 143 - }, - "percentage": 3.21 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Teslaarbetaren Jānis fru twittrade om Tesla – då ringde chefen upp", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 27, - "green": 29, - "red": 35 - }, - "percentage": 38.81 - }, - { - "rgb": { - "blue": 144, - "green": 149, - "red": 150 - }, - "percentage": 31.03 - }, - { - "rgb": { - "blue": 39, - "green": 57, - "red": 128 - }, - "percentage": 15.38 - }, - { - "rgb": { - "blue": 93, - "green": 116, - "red": 187 - }, - "percentage": 3.39 - }, - { - "rgb": { - "blue": 1, - "green": 1, - "red": 143 - }, - "percentage": 3.21 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 627, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1738613364220162048/gcdMdVe2?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1738613364220162048/gcdMdVe2?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 27, - "green": 29, - "red": 35 - }, - "percentage": 38.81 - }, - { - "rgb": { - "blue": 144, - "green": 149, - "red": 150 - }, - "percentage": 31.03 - }, - { - "rgb": { - "blue": 39, - "green": 57, - "red": 128 - }, - "percentage": 15.38 - }, - { - "rgb": { - "blue": 93, - "green": 116, - "red": 187 - }, - "percentage": 3.39 - }, - { - "rgb": { - "blue": 1, - "green": 1, - "red": 143 - }, - "percentage": 3.21 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 627, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1738613364220162048/gcdMdVe2?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/bANs1lwYFj", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 627, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1738613364220162048/gcdMdVe2?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/bANs1lwYFj", - "user_refs_results": [] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1738872147479568482" - ], - "editable_until_msecs": "1703418001000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "648179", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 367, - "bookmarked": false, - "created_at": "Sun Dec 24 10:40:01 +0000 2023", - "conversation_id_str": "1738872147479568482", - "display_text_range": [ - 0, - 276 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "aftonbladet.se/minekonomi/a/v…", - "expanded_url": "https://www.aftonbladet.se/minekonomi/a/veqGjl/janis-jobbar-pa-tesla-blev-uppring-av-chefen-efter-frun-inlagg", - "url": "https://t.co/bANs1lwYFj", - "indices": [ - 253, - 276 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 3475, - "favorited": false, - "full_text": "1) A little Christmas story from Sweden about free speech and self-proclaimed \"free speech absolutist\" Musk's Tesla and X/Twitter. Striking Tesla worker Janis in Sweden gets a phone call from boss asking how he's doing. Boss then brings up Janis' wife. https://t.co/bANs1lwYFj", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 145, - "reply_count": 75, - "retweet_count": 1199, - "retweeted": false, - "user_id_str": "6473022", - "id_str": "1738872147479568482" - } - } - }, - "legacy": { - "bookmark_count": 27, - "bookmarked": false, - "created_at": "Tue Dec 26 16:11:34 +0000 2023", - "conversation_id_str": "1739680359749501140", - "display_text_range": [ - 0, - 231 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 2168, - "favorited": false, - "full_text": "On X, the last bastion of free speech, you can repeat genocidal chants, talk about gassing ethnic groups, call anyone a pedophile, send death threats, spread blatant lies, and call for violence.\n\nBut thou shalt not criticize Tesla.", - "is_quote_status": true, - "lang": "en", - "quote_count": 15, - "quoted_status_id_str": "1738872147479568482", - "quoted_status_permalink": { - "url": "https://t.co/7mVHZpf59u", - "expanded": "https://twitter.com/ChrChristensen/status/1738872147479568482", - "display": "twitter.com/ChrChristensen…" - }, - "reply_count": 39, - "retweet_count": 502, - "retweeted": false, - "user_id_str": "1514502401486639110", - "id_str": "1739680359749501140" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739751709797236816", - "sortIndex": "1739819664587882438", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739751709797236816", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo1Nzk3NDc1NjQ=", - "rest_id": "579747564", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon May 14 08:03:59 +0000 2012", - "default_profile": true, - "default_profile_image": false, - "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "presidentilves.ee", - "expanded_url": "http://www.presidentilves.ee", - "url": "https://t.co/lnQ9ajxxvK", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 20830, - "followers_count": 195135, - "friends_count": 1921, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 2114, - "location": "Estonia", - "media_count": 1101, - "name": "toomas ilves, ex-verif", - "normal_followers_count": 195135, - "pinned_tweet_ids_str": [ - "1597508496828006401" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "IlvesToomas", - "statuses_count": 205440, - "translator_type": "none", - "url": "https://t.co/lnQ9ajxxvK", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739751709797236816" - ], - "editable_until_msecs": "1703627705296", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 20:55:05 +0000 2023", - "conversation_id_str": "1739751709797236816", - "display_text_range": [ - 0, - 139 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1537130875296563200", - "name": "Jay in Kyiv", - "screen_name": "JayinKyiv", - "indices": [ - 3, - 13 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @JayinKyiv: How ridiculous is it that Ukrainians have more battle experience on many NATO weapons systems than NATO members, while NATO…", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 726, - "retweeted": false, - "user_id_str": "579747564", - "id_str": "1739751709797236816", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739630804437762203", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTM3MTMwODc1Mjk2NTYzMjAw", - "rest_id": "1537130875296563200", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Wed Jun 15 17:54:58 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "https://t.co/ecJv657h6u", - "entities": { - "description": { - "urls": [ - { - "display_url": "buymeacoffee.com/jayinkyiv", - "expanded_url": "https://www.buymeacoffee.com/jayinkyiv", - "url": "https://t.co/ecJv657h6u", - "indices": [ - 0, - 23 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "prytulafoundation.org", - "expanded_url": "https://prytulafoundation.org/", - "url": "https://t.co/iJ6X5XGm56", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 28632, - "followers_count": 66558, - "friends_count": 1329, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 1484, + "listed_count": 20010, "location": "Kyiv", - "media_count": 8144, - "name": "Jay in Kyiv", - "normal_followers_count": 66558, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1677733643811160065/KvmrKArN_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "JayinKyiv", - "statuses_count": 24179, - "translator_type": "none", - "url": "https://t.co/iJ6X5XGm56", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739630804437762203" - ], - "editable_until_msecs": "1703598879000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "62226", - "state": "EnabledWithCount" - }, - "source": "Twitter for Android", - "legacy": { - "bookmark_count": 27, - "bookmarked": false, - "created_at": "Tue Dec 26 12:54:39 +0000 2023", - "conversation_id_str": "1739630804437762203", - "display_text_range": [ - 0, - 271 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 3744, - "favorited": false, - "full_text": "How ridiculous is it that Ukrainians have more battle experience on many NATO weapons systems than NATO members, while NATO members STILL withhold all the weapon systems and amounts that would allow this war to be over 6 weeks from now..\n\nHistory is not going to be kind.", - "is_quote_status": false, - "lang": "en", - "quote_count": 12, - "reply_count": 104, - "retweet_count": 726, - "retweeted": false, - "user_id_str": "1537130875296563200", - "id_str": "1739630804437762203" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739751592771883446", - "sortIndex": "1739819664587882437", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739751592771883446", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo1Nzk3NDc1NjQ=", - "rest_id": "579747564", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon May 14 08:03:59 +0000 2012", - "default_profile": true, - "default_profile_image": false, - "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "presidentilves.ee", - "expanded_url": "http://www.presidentilves.ee", - "url": "https://t.co/lnQ9ajxxvK", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 20830, - "followers_count": 195135, - "friends_count": 1921, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 2114, - "location": "Estonia", - "media_count": 1101, - "name": "toomas ilves, ex-verif", - "normal_followers_count": 195135, - "pinned_tweet_ids_str": [ - "1597508496828006401" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "IlvesToomas", - "statuses_count": 205440, - "translator_type": "none", - "url": "https://t.co/lnQ9ajxxvK", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739751592771883446" - ], - "editable_until_msecs": "1703627677395", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 20:54:37 +0000 2023", - "conversation_id_str": "1739751592771883446", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "50295156", - "name": "Ulrich Speck", - "screen_name": "ulrichspeck", - "indices": [ - 3, - 15 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @ulrichspeck: 2024 is the year in which Germany needs to take the often repeated phrase of \"responsibility\" seriously -- and ramp up mil…", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1739522847674937740", - "quoted_status_permalink": { - "url": "https://t.co/lnEhMXwakV", - "expanded": "https://twitter.com/PhillipsPOBrien/status/1739522847674937740", - "display": "twitter.com/PhillipsPOBrie…" - }, - "reply_count": 0, - "retweet_count": 88, - "retweeted": false, - "user_id_str": "579747564", - "id_str": "1739751592771883446", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739703725919285394", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo1MDI5NTE1Ng==", - "rest_id": "50295156", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Wed Jun 24 12:49:53 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Foreign policy analyst & strategist. Columnist NZZ. DGAP-Zeitenwende group. Ex Carnegie, Elcano Brussels, Transat Academy DC, GMF Berlin, RFE Prague, PhDhistory", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 7323, - "followers_count": 56459, - "friends_count": 626, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1229, - "location": "Heidelberg/Berlin", - "media_count": 973, - "name": "Ulrich Speck", - "normal_followers_count": 56459, - "pinned_tweet_ids_str": [ - "1738850828562096621" - ], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/593716457420251136/XhKCLIps_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "ulrichspeck", - "statuses_count": 76800, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739703725919285394" - ], - "editable_until_msecs": "1703616265000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "27685", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739522847674937740", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjozMDYxNzk2MjE5", - "rest_id": "3061796219", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Wed Feb 25 12:18:07 +0000 2015", - "default_profile": false, - "default_profile_image": false, - "description": "Professor of Strategic Studies, @univofstandrews; Senior Adviser @CSIS; Author: How the War was Won, and Second Most Powerful Man in the World.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "phillipspobrien.substack.com", - "expanded_url": "https://phillipspobrien.substack.com/", - "url": "https://t.co/HPfgB4oxOq", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 17362, - "followers_count": 197280, - "friends_count": 1679, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5528, - "location": "Scotland, Boston and Sicily (whenever possible)", - "media_count": 1082, - "name": "Phillips P. OBrien", - "normal_followers_count": 197280, - "pinned_tweet_ids_str": [ - "1738240516733456614" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3061796219/1484820215", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/822021855854952448/itfp9TX__normal.jpg", - "profile_interstitial_type": "", - "screen_name": "PhillipsPOBrien", - "statuses_count": 20019, - "translator_type": "none", - "url": "https://t.co/HPfgB4oxOq", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739522847674937740" - ], - "editable_until_msecs": "1703573140000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "326207", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 71, - "bookmarked": false, - "created_at": "Tue Dec 26 05:45:40 +0000 2023", - "conversation_id_str": "1739522847674937740", - "display_text_range": [ - 0, - 267 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 6334, - "favorited": false, - "full_text": "So in the last few days Ukraine has shot down 5 advanced Russian aircraft, every advanced missile fired at Ukr, almost every Shahed fired and has destroyed (for the second time) the flagship of the Black Sea Fleet (which was laden with Shaheds). Ukr can win this war.", - "is_quote_status": false, - "lang": "en", - "quote_count": 51, - "reply_count": 108, - "retweet_count": 1133, - "retweeted": false, - "user_id_str": "3061796219", - "id_str": "1739522847674937740" - } - } - }, - "legacy": { - "bookmark_count": 6, - "bookmarked": false, - "created_at": "Tue Dec 26 17:44:25 +0000 2023", - "conversation_id_str": "1739703725919285394", - "display_text_range": [ - 0, - 271 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 329, - "favorited": false, - "full_text": "2024 is the year in which Germany needs to take the often repeated phrase of \"responsibility\" seriously -- and ramp up military support for Ukraine substantially, by finally giving the arms industry order to produce on a far larger scale, and by delivering what's needed.", - "is_quote_status": true, - "lang": "en", - "quote_count": 2, - "quoted_status_id_str": "1739522847674937740", - "quoted_status_permalink": { - "url": "https://t.co/lnEhMXwakV", - "expanded": "https://twitter.com/PhillipsPOBrien/status/1739522847674937740", - "display": "twitter.com/PhillipsPOBrie…" - }, - "reply_count": 4, - "retweet_count": 88, - "retweeted": false, - "user_id_str": "50295156", - "id_str": "1739703725919285394" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739750079798432111", - "sortIndex": "1739819664587882436", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739750079798432111", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo0NzQ1NTExMg==", - "rest_id": "47455112", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Mon Jun 15 21:50:27 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Reporting on foreign policy. Current: Diplomatic Substack, Just Security ed bd. Al-Monitor Politico Foreign Policy alum. lkrozen threads, lkrozen.bsky, at gmail", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "diplomatic.substack.com", - "expanded_url": "https://diplomatic.substack.com/", - "url": "https://t.co/VBjgdai1Rl", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 228, - "followers_count": 174650, - "friends_count": 10007, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 4559, - "location": "Washington, D.C.", - "media_count": 6748, - "name": "Laura Rozen", - "normal_followers_count": 174650, - "pinned_tweet_ids_str": [ - "994000925793628160" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/47455112/1688651088", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/472902811630333952/hvAbmRyN_normal.jpeg", - "profile_interstitial_type": "", - "screen_name": "lrozen", - "statuses_count": 546276, - "translator_type": "none", - "url": "https://t.co/VBjgdai1Rl", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1587536294372155392", - "professional_type": "Creator", - "category": [ - { - "id": 955, - "name": "Journalist", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739750079798432111" - ], - "editable_until_msecs": "1703627316674", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPad", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 20:48:36 +0000 2023", - "conversation_id_str": "1739750079798432111", - "display_text_range": [ - 0, - 42 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "68498034", - "name": "Dan Lamothe", - "screen_name": "DanLamothe", - "indices": [ - 3, - 14 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @DanLamothe: Busy in the Red Sea again:", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1739746985652158755", - "quoted_status_permalink": { - "url": "https://t.co/KoOpLUjf9T", - "expanded": "https://twitter.com/CENTCOM/status/1739746985652158755", - "display": "twitter.com/CENTCOM/status…" - }, - "reply_count": 0, - "retweet_count": 12, - "retweeted": false, - "user_id_str": "47455112", - "id_str": "1739750079798432111", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739749926492340553", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo2ODQ5ODAzNA==", - "rest_id": "68498034", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Mon Aug 24 20:00:56 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Military affairs beat @washingtonpost. State-school alum via @UMassJournalism & @merrillcollege. Son of @Chicopee_MA. https://t.co/BRDMJfx1Cj", - "entities": { - "description": { - "urls": [ - { - "display_url": "instagram.com/danlamothe30", - "expanded_url": "http://instagram.com/danlamothe30", - "url": "https://t.co/BRDMJfx1Cj", - "indices": [ - 118, - 141 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "washingtonpost.com/people/dan-lam…", - "expanded_url": "https://www.washingtonpost.com/people/dan-lamothe", - "url": "https://t.co/qd2oV321Qc", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 192, - "followers_count": 152302, - "friends_count": 4517, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 0, - "location": "Northern Virginia", - "media_count": 3943, - "name": "Dan Lamothe", - "normal_followers_count": 152302, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/68498034/1629086329", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1642594570654326787/ntiH6j7z_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "DanLamothe", - "statuses_count": 60599, - "translator_type": "none", - "url": "https://t.co/qd2oV321Qc", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1628977472191492103", - "professional_type": "Creator", - "category": [ - { - "id": 955, - "name": "Journalist", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739749926492340553" - ], - "editable_until_msecs": "1703627280000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "18549", - "state": "EnabledWithCount" - }, - "source": "Twitter for Android", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739746985652158755", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNTE1OTI4Ng==", - "rest_id": "25159286", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Wed Mar 18 21:29:04 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Official Twitter for U.S. Central Command (CENTCOM). \n\nCENTCOM History Documentary: https://t.co/CpeADerysF…", - "entities": { - "description": { - "urls": [ - { - "display_url": "centcom.mil/ABOUT-US/HISTO", - "expanded_url": "http://centcom.mil/ABOUT-US/HISTO", - "url": "https://t.co/CpeADerysF", - "indices": [ - 84, - 107 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "centcom.mil/ABOUT-US/HISTO…", - "expanded_url": "https://www.centcom.mil/ABOUT-US/HISTORY/", - "url": "https://t.co/zejC90uziB", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 6812, - "followers_count": 575783, - "friends_count": 1496, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5245, - "location": "MacDill AFB, Tampa, FL", - "media_count": 2198, - "name": "U.S. Central Command", - "normal_followers_count": 575783, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/25159286/1672577436", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1610948856052580353/rdDsOIn6_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "CENTCOM", - "statuses_count": 14839, - "translator_type": "none", - "url": "https://t.co/zejC90uziB", - "verified": false, - "verified_type": "Government", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739746985652158755" - ], - "editable_until_msecs": "1703626578000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "1540405", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "note_tweet": { - "is_expandable": true, - "note_tweet_results": { - "result": { - "id": "Tm90ZVR3ZWV0OjE3Mzk3NDY5ODU1NDczNzg2ODg=", - "text": "U.S. assets, to include the USS LABOON (DDG 58) and F/A-18 Super Hornets from the Eisenhower Carrier Strike Group, shot down twelve one-way attack drones, three anti-ship ballistic missiles, and two land attack cruise missiles in the Southern Red Sea that were fired by the Houthis over a 10 hour period which began at approximately 6:30 a.m. (Sanaa time) on December 26. There was no damage to ships in the area or reported injuries.", - "entity_set": { - "hashtags": [], - "symbols": [], - "urls": [], - "user_mentions": [] - }, - "richtext": { - "richtext_tags": [] - }, - "media": { - "inline_media": [] - } - } - } - }, - "legacy": { - "bookmark_count": 212, - "bookmarked": false, - "created_at": "Tue Dec 26 20:36:18 +0000 2023", - "conversation_id_str": "1739746985652158755", - "display_text_range": [ - 0, - 274 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/vRQ5e6Au6d", - "expanded_url": "https://twitter.com/CENTCOM/status/1739746985652158755/photo/1", - "id_str": "1739746982590300160", - "indices": [ - 275, - 298 - ], - "media_key": "3_1739746982590300160", - "media_url_https": "https://pbs.twimg.com/media/GCTSqcBaQAAEZ0c.jpg", - "type": "photo", - "url": "https://t.co/vRQ5e6Au6d", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - }, - "medium": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - }, - "small": { - "faces": [ - { - "x": 214, - "y": 66, - "h": 259, - "w": 259 - } - ] - }, - "orig": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - } - }, - "sizes": { - "large": { - "h": 651, - "w": 1199, - "resize": "fit" - }, - "medium": { - "h": 651, - "w": 1199, - "resize": "fit" - }, - "small": { - "h": 369, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 651, - "width": 1199, - "focus_rects": [ - { - "x": 18, - "y": 0, - "w": 1163, - "h": 651 - }, - { - "x": 274, - "y": 0, - "w": 651, - "h": 651 - }, - { - "x": 314, - "y": 0, - "w": 571, - "h": 651 - }, - { - "x": 436, - "y": 0, - "w": 326, - "h": 651 - }, - { - "x": 0, - "y": 0, - "w": 1199, - "h": 651 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/vRQ5e6Au6d", - "expanded_url": "https://twitter.com/CENTCOM/status/1739746985652158755/photo/1", - "id_str": "1739746982590300160", - "indices": [ - 275, - 298 - ], - "media_key": "3_1739746982590300160", - "media_url_https": "https://pbs.twimg.com/media/GCTSqcBaQAAEZ0c.jpg", - "type": "photo", - "url": "https://t.co/vRQ5e6Au6d", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - }, - "medium": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - }, - "small": { - "faces": [ - { - "x": 214, - "y": 66, - "h": 259, - "w": 259 - } - ] - }, - "orig": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - } - }, - "sizes": { - "large": { - "h": 651, - "w": 1199, - "resize": "fit" - }, - "medium": { - "h": 651, - "w": 1199, - "resize": "fit" - }, - "small": { - "h": 369, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 651, - "width": 1199, - "focus_rects": [ - { - "x": 18, - "y": 0, - "w": 1163, - "h": 651 - }, - { - "x": 274, - "y": 0, - "w": 651, - "h": 651 - }, - { - "x": 314, - "y": 0, - "w": 571, - "h": 651 - }, - { - "x": 436, - "y": 0, - "w": 326, - "h": 651 - }, - { - "x": 0, - "y": 0, - "w": 1199, - "h": 651 - } - ] - } - } - ] - }, - "favorite_count": 4598, - "favorited": false, - "full_text": "U.S. assets, to include the USS LABOON (DDG 58) and F/A-18 Super Hornets from the Eisenhower Carrier Strike Group, shot down twelve one-way attack drones, three anti-ship ballistic missiles, and two land attack cruise missiles in the Southern Red Sea that were fired by the… https://t.co/vRQ5e6Au6d", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 448, - "reply_count": 547, - "retweet_count": 1358, - "retweeted": false, - "user_id_str": "25159286", - "id_str": "1739746985652158755" - } - } - }, - "legacy": { - "bookmark_count": 1, - "bookmarked": false, - "created_at": "Tue Dec 26 20:48:00 +0000 2023", - "conversation_id_str": "1739749926492340553", - "display_text_range": [ - 0, - 26 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 30, - "favorited": false, - "full_text": "Busy in the Red Sea again:", - "is_quote_status": true, - "lang": "en", - "quote_count": 1, - "quoted_status_id_str": "1739746985652158755", - "quoted_status_permalink": { - "url": "https://t.co/KoOpLUjf9T", - "expanded": "https://twitter.com/CENTCOM/status/1739746985652158755", - "display": "twitter.com/CENTCOM/status…" - }, - "reply_count": 2, - "retweet_count": 12, - "retweeted": false, - "user_id_str": "68498034", - "id_str": "1739749926492340553" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739749524216627386", - "sortIndex": "1739819664587882435", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739749524216627386", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/T1taDTGuS3", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 361, - "width": 690, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 150, - "width": 267, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "Two Russian vessels had left Feodosia a few hours after Ukrainian forces struck the port in Russian-occupied Crimea, Radio Free Europe/Radio Liberty's Crimea.Realities reported on Dec. 26.", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "kyivindependent.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 320, - "width": 571, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 387, - "width": 690, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "1462548977367359490", - "path": [] - } - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 361, - "width": 690, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 81, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "creator", - "value": { - "type": "USER", - "user_value": { - "id_str": "972491543666987008", - "path": [] - } - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 387, - "width": 690, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 387, - "width": 690, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "kyivindependent.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 33, - "green": 36, - "red": 44 - }, - "percentage": 68.19 - }, - { - "rgb": { - "blue": 48, - "green": 57, - "red": 48 - }, - "percentage": 7.48 - }, - { - "rgb": { - "blue": 37, - "green": 46, - "red": 108 - }, - "percentage": 7.3 - }, - { - "rgb": { - "blue": 45, - "green": 33, - "red": 31 - }, - "percentage": 4.41 - }, - { - "rgb": { - "blue": 30, - "green": 61, - "red": 101 - }, - "percentage": 2.94 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Media: 2 Russian vessels left Feodosia in occupied Crimea after Ukraine's strike", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 33, - "green": 36, - "red": 44 - }, - "percentage": 68.19 - }, - { - "rgb": { - "blue": 48, - "green": 57, - "red": 48 - }, - "percentage": 7.48 - }, - { - "rgb": { - "blue": 37, - "green": 46, - "red": 108 - }, - "percentage": 7.3 - }, - { - "rgb": { - "blue": 45, - "green": 33, - "red": 31 - }, - "percentage": 4.41 - }, - { - "rgb": { - "blue": 30, - "green": 61, - "red": 101 - }, - "percentage": 2.94 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 387, - "width": 690, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 33, - "green": 36, - "red": 44 - }, - "percentage": 68.19 - }, - { - "rgb": { - "blue": 48, - "green": 57, - "red": 48 - }, - "percentage": 7.48 - }, - { - "rgb": { - "blue": 37, - "green": 46, - "red": 108 - }, - "percentage": 7.3 - }, - { - "rgb": { - "blue": 45, - "green": 33, - "red": 31 - }, - "percentage": 4.41 - }, - { - "rgb": { - "blue": 30, - "green": 61, - "red": 101 - }, - "percentage": 2.94 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 387, - "width": 690, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/T1taDTGuS3", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 387, - "width": 690, - "url": "https://pbs.twimg.com/card_img/1739749501718425600/XQgN5Toz?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/T1taDTGuS3", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjo5NzI0OTE1NDM2NjY5ODcwMDg=", - "rest_id": "972491543666987008", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sat Mar 10 15:17:06 +0000 2018", - "default_profile": true, - "default_profile_image": false, - "description": "@KyivIndependent journalist. Kurt Schork Local Reporter and Axel Springer Prize awards. Write me: a.terajima@kyivindependent.com", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com/author/asami-t…", - "expanded_url": "https://kyivindependent.com/author/asami-terajima", - "url": "https://t.co/4WDgeBBsFY", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 1873, - "followers_count": 52731, - "friends_count": 2253, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1155, - "location": "Donbas - Kyiv", - "media_count": 207, - "name": "Asami Terajima", - "normal_followers_count": 52731, - "pinned_tweet_ids_str": [ - "1717561830803952038" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/972491543666987008/1696802473", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1725454100702101504/zeOeSMyY_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "AsamiTerajima", - "statuses_count": 1775, - "translator_type": "none", - "url": "https://t.co/4WDgeBBsFY", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1503165328666378243", - "professional_type": "Creator", - "category": [] - } - } - }, - { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739749524216627386" - ], - "editable_until_msecs": "1703627184000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "99167", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 5, - "bookmarked": false, - "created_at": "Tue Dec 26 20:46:24 +0000 2023", - "conversation_id_str": "1739749524216627386", - "display_text_range": [ - 0, - 273 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "kyivindependent.com/media-2-russia…", - "expanded_url": "https://kyivindependent.com/media-2-russian-ships-left-feodosia-in-occupied-crimea-after-ukraines-strike/", - "url": "https://t.co/T1taDTGuS3", - "indices": [ - 250, - 273 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 760, - "favorited": false, - "full_text": "⚡️Media: 2 Russian vessels left Feodosia in occupied Crimea after Ukraine's strike.\n\nTwo Russian vessels had left Feodosia a few hours after Ukrainian forces struck the port in Russian-occupied Crimea, RFE/RL's Crimea.Realities reported on Dec. 26.\n\nhttps://t.co/T1taDTGuS3", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 2, - "reply_count": 18, - "retweet_count": 109, - "retweeted": false, - "user_id_str": "1462548977367359490", - "id_str": "1739749524216627386" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739747927197646864", - "sortIndex": "1739819664587882434", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739747927197646864", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo4NDA4MzE4Nw==", - "rest_id": "84083187", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Wed Oct 21 13:42:34 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Ukraine Correspondent. British-Lebanese conflict journalist & filmmaker based in Kyiv. Co-host of @DrillPod. RTs ≠ endorsement.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ko-fi.com/ozkaterji", - "expanded_url": "http://ko-fi.com/ozkaterji", - "url": "https://t.co/FC9pQbgXa4", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 45081, - "followers_count": 214216, - "friends_count": 11626, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 0, - "location": "Kyiv, Ukraine", - "media_count": 6276, - "name": "Oz Katerji", - "normal_followers_count": 214216, - "pinned_tweet_ids_str": [ - "1737238008531665375" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/84083187/1647382697", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713181637574275072/gUp8KMF4_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "OzKaterji", - "statuses_count": 172914, - "translator_type": "none", - "url": "https://t.co/FC9pQbgXa4", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739747927197646864" - ], - "editable_until_msecs": "1703626803454", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 20:40:03 +0000 2023", - "conversation_id_str": "1739747927197646864", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "25159286", - "name": "U.S. Central Command", - "screen_name": "CENTCOM", - "indices": [ - 3, - 11 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @CENTCOM: U.S. assets, to include the USS LABOON (DDG 58) and F/A-18 Super Hornets from the Eisenhower Carrier Strike Group, shot down t…", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 1358, - "retweeted": false, - "user_id_str": "84083187", - "id_str": "1739747927197646864", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739746985652158755", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNTE1OTI4Ng==", - "rest_id": "25159286", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Wed Mar 18 21:29:04 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Official Twitter for U.S. Central Command (CENTCOM). \n\nCENTCOM History Documentary: https://t.co/CpeADerysF…", - "entities": { - "description": { - "urls": [ - { - "display_url": "centcom.mil/ABOUT-US/HISTO", - "expanded_url": "http://centcom.mil/ABOUT-US/HISTO", - "url": "https://t.co/CpeADerysF", - "indices": [ - 84, - 107 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "centcom.mil/ABOUT-US/HISTO…", - "expanded_url": "https://www.centcom.mil/ABOUT-US/HISTORY/", - "url": "https://t.co/zejC90uziB", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 6812, - "followers_count": 575783, - "friends_count": 1496, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5245, - "location": "MacDill AFB, Tampa, FL", - "media_count": 2198, - "name": "U.S. Central Command", - "normal_followers_count": 575783, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/25159286/1672577436", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1610948856052580353/rdDsOIn6_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "CENTCOM", - "statuses_count": 14839, - "translator_type": "none", - "url": "https://t.co/zejC90uziB", - "verified": false, - "verified_type": "Government", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739746985652158755" - ], - "editable_until_msecs": "1703626578000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "1540405", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "note_tweet": { - "is_expandable": true, - "note_tweet_results": { - "result": { - "id": "Tm90ZVR3ZWV0OjE3Mzk3NDY5ODU1NDczNzg2ODg=", - "text": "U.S. assets, to include the USS LABOON (DDG 58) and F/A-18 Super Hornets from the Eisenhower Carrier Strike Group, shot down twelve one-way attack drones, three anti-ship ballistic missiles, and two land attack cruise missiles in the Southern Red Sea that were fired by the Houthis over a 10 hour period which began at approximately 6:30 a.m. (Sanaa time) on December 26. There was no damage to ships in the area or reported injuries.", - "entity_set": { - "hashtags": [], - "symbols": [], - "urls": [], - "user_mentions": [] - }, - "richtext": { - "richtext_tags": [] - }, - "media": { - "inline_media": [] - } - } - } - }, - "legacy": { - "bookmark_count": 212, - "bookmarked": false, - "created_at": "Tue Dec 26 20:36:18 +0000 2023", - "conversation_id_str": "1739746985652158755", - "display_text_range": [ - 0, - 274 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/vRQ5e6Au6d", - "expanded_url": "https://twitter.com/CENTCOM/status/1739746985652158755/photo/1", - "id_str": "1739746982590300160", - "indices": [ - 275, - 298 - ], - "media_key": "3_1739746982590300160", - "media_url_https": "https://pbs.twimg.com/media/GCTSqcBaQAAEZ0c.jpg", - "type": "photo", - "url": "https://t.co/vRQ5e6Au6d", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - }, - "medium": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - }, - "small": { - "faces": [ - { - "x": 214, - "y": 66, - "h": 259, - "w": 259 - } - ] - }, - "orig": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - } - }, - "sizes": { - "large": { - "h": 651, - "w": 1199, - "resize": "fit" - }, - "medium": { - "h": 651, - "w": 1199, - "resize": "fit" - }, - "small": { - "h": 369, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 651, - "width": 1199, - "focus_rects": [ - { - "x": 18, - "y": 0, - "w": 1163, - "h": 651 - }, - { - "x": 274, - "y": 0, - "w": 651, - "h": 651 - }, - { - "x": 314, - "y": 0, - "w": 571, - "h": 651 - }, - { - "x": 436, - "y": 0, - "w": 326, - "h": 651 - }, - { - "x": 0, - "y": 0, - "w": 1199, - "h": 651 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/vRQ5e6Au6d", - "expanded_url": "https://twitter.com/CENTCOM/status/1739746985652158755/photo/1", - "id_str": "1739746982590300160", - "indices": [ - 275, - 298 - ], - "media_key": "3_1739746982590300160", - "media_url_https": "https://pbs.twimg.com/media/GCTSqcBaQAAEZ0c.jpg", - "type": "photo", - "url": "https://t.co/vRQ5e6Au6d", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - }, - "medium": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - }, - "small": { - "faces": [ - { - "x": 214, - "y": 66, - "h": 259, - "w": 259 - } - ] - }, - "orig": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - } - }, - "sizes": { - "large": { - "h": 651, - "w": 1199, - "resize": "fit" - }, - "medium": { - "h": 651, - "w": 1199, - "resize": "fit" - }, - "small": { - "h": 369, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 651, - "width": 1199, - "focus_rects": [ - { - "x": 18, - "y": 0, - "w": 1163, - "h": 651 - }, - { - "x": 274, - "y": 0, - "w": 651, - "h": 651 - }, - { - "x": 314, - "y": 0, - "w": 571, - "h": 651 - }, - { - "x": 436, - "y": 0, - "w": 326, - "h": 651 - }, - { - "x": 0, - "y": 0, - "w": 1199, - "h": 651 - } - ] - } - } - ] - }, - "favorite_count": 4598, - "favorited": false, - "full_text": "U.S. assets, to include the USS LABOON (DDG 58) and F/A-18 Super Hornets from the Eisenhower Carrier Strike Group, shot down twelve one-way attack drones, three anti-ship ballistic missiles, and two land attack cruise missiles in the Southern Red Sea that were fired by the… https://t.co/vRQ5e6Au6d", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 448, - "reply_count": 547, - "retweet_count": 1358, - "retweeted": false, - "user_id_str": "25159286", - "id_str": "1739746985652158755" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739747654609846668", - "sortIndex": "1739819664587882433", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739747654609846668", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjozNzI1MzYxMDE=", - "rest_id": "372536101", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Mon Sep 12 23:21:14 +0000 2011", - "default_profile": false, - "default_profile_image": false, - "description": "@CNN reporter covering the Pentagon and national security. @natashabertrand on Threads. natasha.bertrand@cnn.com. DM for Signal.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "cnn.com/profiles/natas…", - "expanded_url": "https://www.cnn.com/profiles/natasha-bertrand-profile", - "url": "https://t.co/JOmxXcguGR", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 37179, - "followers_count": 773140, - "friends_count": 6590, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 8890, - "location": "Washington, DC", - "media_count": 2426, - "name": "Natasha Bertrand", - "normal_followers_count": 773140, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/372536101/1689324268", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1507284795486879753/uMQ_pbsq_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "NatashaBertrand", - "statuses_count": 32365, - "translator_type": "regular", - "url": "https://t.co/JOmxXcguGR", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739747654609846668" - ], - "editable_until_msecs": "1703626738000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "118891", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739746985652158755", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNTE1OTI4Ng==", - "rest_id": "25159286", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Wed Mar 18 21:29:04 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Official Twitter for U.S. Central Command (CENTCOM). \n\nCENTCOM History Documentary: https://t.co/CpeADerysF…", - "entities": { - "description": { - "urls": [ - { - "display_url": "centcom.mil/ABOUT-US/HISTO", - "expanded_url": "http://centcom.mil/ABOUT-US/HISTO", - "url": "https://t.co/CpeADerysF", - "indices": [ - 84, - 107 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "centcom.mil/ABOUT-US/HISTO…", - "expanded_url": "https://www.centcom.mil/ABOUT-US/HISTORY/", - "url": "https://t.co/zejC90uziB", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 6812, - "followers_count": 575783, - "friends_count": 1496, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5245, - "location": "MacDill AFB, Tampa, FL", - "media_count": 2198, - "name": "U.S. Central Command", - "normal_followers_count": 575783, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/25159286/1672577436", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1610948856052580353/rdDsOIn6_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "CENTCOM", - "statuses_count": 14839, - "translator_type": "none", - "url": "https://t.co/zejC90uziB", - "verified": false, - "verified_type": "Government", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739746985652158755" - ], - "editable_until_msecs": "1703626578000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "1540405", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "note_tweet": { - "is_expandable": true, - "note_tweet_results": { - "result": { - "id": "Tm90ZVR3ZWV0OjE3Mzk3NDY5ODU1NDczNzg2ODg=", - "text": "U.S. assets, to include the USS LABOON (DDG 58) and F/A-18 Super Hornets from the Eisenhower Carrier Strike Group, shot down twelve one-way attack drones, three anti-ship ballistic missiles, and two land attack cruise missiles in the Southern Red Sea that were fired by the Houthis over a 10 hour period which began at approximately 6:30 a.m. (Sanaa time) on December 26. There was no damage to ships in the area or reported injuries.", - "entity_set": { - "hashtags": [], - "symbols": [], - "urls": [], - "user_mentions": [] - }, - "richtext": { - "richtext_tags": [] - }, - "media": { - "inline_media": [] - } - } - } - }, - "legacy": { - "bookmark_count": 212, - "bookmarked": false, - "created_at": "Tue Dec 26 20:36:18 +0000 2023", - "conversation_id_str": "1739746985652158755", - "display_text_range": [ - 0, - 274 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/vRQ5e6Au6d", - "expanded_url": "https://twitter.com/CENTCOM/status/1739746985652158755/photo/1", - "id_str": "1739746982590300160", - "indices": [ - 275, - 298 - ], - "media_key": "3_1739746982590300160", - "media_url_https": "https://pbs.twimg.com/media/GCTSqcBaQAAEZ0c.jpg", - "type": "photo", - "url": "https://t.co/vRQ5e6Au6d", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - }, - "medium": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - }, - "small": { - "faces": [ - { - "x": 214, - "y": 66, - "h": 259, - "w": 259 - } - ] - }, - "orig": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - } - }, - "sizes": { - "large": { - "h": 651, - "w": 1199, - "resize": "fit" - }, - "medium": { - "h": 651, - "w": 1199, - "resize": "fit" - }, - "small": { - "h": 369, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 651, - "width": 1199, - "focus_rects": [ - { - "x": 18, - "y": 0, - "w": 1163, - "h": 651 - }, - { - "x": 274, - "y": 0, - "w": 651, - "h": 651 - }, - { - "x": 314, - "y": 0, - "w": 571, - "h": 651 - }, - { - "x": 436, - "y": 0, - "w": 326, - "h": 651 - }, - { - "x": 0, - "y": 0, - "w": 1199, - "h": 651 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/vRQ5e6Au6d", - "expanded_url": "https://twitter.com/CENTCOM/status/1739746985652158755/photo/1", - "id_str": "1739746982590300160", - "indices": [ - 275, - 298 - ], - "media_key": "3_1739746982590300160", - "media_url_https": "https://pbs.twimg.com/media/GCTSqcBaQAAEZ0c.jpg", - "type": "photo", - "url": "https://t.co/vRQ5e6Au6d", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - }, - "medium": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - }, - "small": { - "faces": [ - { - "x": 214, - "y": 66, - "h": 259, - "w": 259 - } - ] - }, - "orig": { - "faces": [ - { - "x": 378, - "y": 118, - "h": 458, - "w": 458 - } - ] - } - }, - "sizes": { - "large": { - "h": 651, - "w": 1199, - "resize": "fit" - }, - "medium": { - "h": 651, - "w": 1199, - "resize": "fit" - }, - "small": { - "h": 369, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 651, - "width": 1199, - "focus_rects": [ - { - "x": 18, - "y": 0, - "w": 1163, - "h": 651 - }, - { - "x": 274, - "y": 0, - "w": 651, - "h": 651 - }, - { - "x": 314, - "y": 0, - "w": 571, - "h": 651 - }, - { - "x": 436, - "y": 0, - "w": 326, - "h": 651 - }, - { - "x": 0, - "y": 0, - "w": 1199, - "h": 651 - } - ] - } - } - ] - }, - "favorite_count": 4598, - "favorited": false, - "full_text": "U.S. assets, to include the USS LABOON (DDG 58) and F/A-18 Super Hornets from the Eisenhower Carrier Strike Group, shot down twelve one-way attack drones, three anti-ship ballistic missiles, and two land attack cruise missiles in the Southern Red Sea that were fired by the… https://t.co/vRQ5e6Au6d", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 448, - "reply_count": 547, - "retweet_count": 1358, - "retweeted": false, - "user_id_str": "25159286", - "id_str": "1739746985652158755" - } - } - }, - "legacy": { - "bookmark_count": 9, - "bookmarked": false, - "created_at": "Tue Dec 26 20:38:58 +0000 2023", - "conversation_id_str": "1739747654609846668", - "display_text_range": [ - 0, - 189 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 763, - "favorited": false, - "full_text": "Centcom says the US shot down 12 drones, 3 anti-ship ballistic missiles, and 2 land attack cruise missiles in the southern Red Sea launched by the Houthis over the course of 10 hours today.", - "is_quote_status": true, - "lang": "en", - "quote_count": 11, - "quoted_status_id_str": "1739746985652158755", - "quoted_status_permalink": { - "url": "https://t.co/dyrXrCyFW7", - "expanded": "https://twitter.com/CENTCOM/status/1739746985652158755", - "display": "twitter.com/CENTCOM/status…" - }, - "reply_count": 24, - "retweet_count": 269, - "retweeted": false, - "user_id_str": "372536101", - "id_str": "1739747654609846668" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739743608973169117", - "sortIndex": "1739819664587882432", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739743608973169117", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTQzNjY0MDY0", - "rest_id": "1543664064", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Jun 24 17:01:34 +0000 2013", - "default_profile": true, - "default_profile_image": false, - "description": "Affiliated with Stanford's CISAC & Brookings. Retired Foreign Service officer; former US ambassador to Ukraine. Interests include nukes, Europe & mountains.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "brookings.edu/experts/pifers", - "expanded_url": "http://www.brookings.edu/experts/pifers", - "url": "https://t.co/iPslu835Yn", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 63264, - "followers_count": 38237, - "friends_count": 910, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 1162, - "location": "Morgan Hill, CA", - "media_count": 1268, - "name": "Steven Pifer", - "normal_followers_count": 38237, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1543664064/1645934672", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1179260391496372224/rHqbrNME_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "steven_pifer", - "statuses_count": 21170, - "translator_type": "none", - "url": "https://t.co/iPslu835Yn", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739743608973169117" - ], - "editable_until_msecs": "1703625773000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "3333", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739614282642497674", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxODU0OTcyNA==", - "rest_id": "18549724", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Fri Jan 02 10:14:07 +0000 2009", - "default_profile": true, - "default_profile_image": false, - "description": "Co-Chair European Council on Foreign Relations @ecfr. World Health Organization Special Envoy for ACT-Accelerator @who @ACTAccelerator. På svenska på @cbildt.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "carlbildt.wordpress.com", - "expanded_url": "http://carlbildt.wordpress.com", - "url": "https://t.co/5GWn6vTmYH", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 990, - "followers_count": 784050, - "friends_count": 3006, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5218, - "location": "", - "media_count": 5913, - "name": "Carl Bildt", - "normal_followers_count": 784050, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18549724/1574422858", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/845592890994839553/IPoUmvTp_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "carlbildt", - "statuses_count": 28970, - "translator_type": "none", - "url": "https://t.co/5GWn6vTmYH", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739614282642497674" - ], - "editable_until_msecs": "1703594940000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "59597", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPad", - "legacy": { - "bookmark_count": 8, - "bookmarked": false, - "created_at": "Tue Dec 26 11:49:00 +0000 2023", - "conversation_id_str": "1739614282642497674", - "display_text_range": [ - 0, - 167 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/ebs51n9zN2", - "expanded_url": "https://twitter.com/carlbildt/status/1739614282642497674/photo/1", - "id_str": "1739614279089733632", - "indices": [ - 168, - 191 - ], - "media_key": "3_1739614279089733632", - "media_url_https": "https://pbs.twimg.com/media/GCRZ-E9XQAARaau.jpg", - "type": "photo", - "url": "https://t.co/ebs51n9zN2", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 646, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 606, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 343, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 646, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 1154, - "h": 646 - }, - { - "x": 219, - "y": 0, - "w": 646, - "h": 646 - }, - { - "x": 259, - "y": 0, - "w": 567, - "h": 646 - }, - { - "x": 381, - "y": 0, - "w": 323, - "h": 646 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 646 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/ebs51n9zN2", - "expanded_url": "https://twitter.com/carlbildt/status/1739614282642497674/photo/1", - "id_str": "1739614279089733632", - "indices": [ - 168, - 191 - ], - "media_key": "3_1739614279089733632", - "media_url_https": "https://pbs.twimg.com/media/GCRZ-E9XQAARaau.jpg", - "type": "photo", - "url": "https://t.co/ebs51n9zN2", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 646, - "w": 1280, - "resize": "fit" - }, - "medium": { - "h": 606, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 343, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 646, - "width": 1280, - "focus_rects": [ - { - "x": 0, - "y": 0, - "w": 1154, - "h": 646 - }, - { - "x": 219, - "y": 0, - "w": 646, - "h": 646 - }, - { - "x": 259, - "y": 0, - "w": 567, - "h": 646 - }, - { - "x": 381, - "y": 0, - "w": 323, - "h": 646 - }, - { - "x": 0, - "y": 0, - "w": 1280, - "h": 646 - } - ] - } - } - ] - }, - "favorite_count": 733, - "favorited": false, - "full_text": "There is virtually nothing left of the large 🇷🇺 amphibious ship. There was a huge secondary explosion probably of ammunition and explosives that the ship was bringing. https://t.co/ebs51n9zN2", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 8, - "reply_count": 29, - "retweet_count": 72, - "retweeted": false, - "user_id_str": "18549724", - "id_str": "1739614282642497674" - } - } - }, - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 20:22:53 +0000 2023", - "conversation_id_str": "1739743608973169117", - "display_text_range": [ - 0, - 98 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 35, - "favorited": false, - "full_text": "Russian Ministry of Defense reports Novocherkassk was “damaged.”\n\nJust like Titanic was “damaged.”", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1739614282642497674", - "quoted_status_permalink": { - "url": "https://t.co/GIxk7m7ajK", - "expanded": "https://twitter.com/carlbildt/status/1739614282642497674", - "display": "twitter.com/carlbildt/stat…" - }, - "reply_count": 10, - "retweet_count": 8, - "retweeted": false, - "user_id_str": "1543664064", - "id_str": "1739743608973169117" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739743449467805840", - "sortIndex": "1739819664587882431", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739743449467805840", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMTIwNjMzNzI2NDc4ODIzNDI1", - "rest_id": "1120633726478823425", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Tue Apr 23 10:21:15 +0000 2019", - "default_profile": true, - "default_profile_image": false, - "description": "President of Ukraine / Президент України", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "president.gov.ua", - "expanded_url": "https://www.president.gov.ua", - "url": "https://t.co/ctVL0atMBQ", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 85, - "followers_count": 7387847, - "friends_count": 1, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 17681, - "location": "Україна", - "media_count": 2126, - "name": "Volodymyr Zelenskyy / Володимир Зеленський", - "normal_followers_count": 7387847, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1120633726478823425/1692773060", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1585550046740848642/OpGKpqx9_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "ZelenskyyUa", - "statuses_count": 5143, - "translator_type": "none", - "url": "https://t.co/ctVL0atMBQ", - "verified": false, - "verified_type": "Government", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739743449467805840" - ], - "editable_until_msecs": "1703625735000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "236280", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "note_tweet": { - "is_expandable": true, - "note_tweet_results": { - "result": { - "id": "Tm90ZVR3ZWV0OjE3Mzk3NDM0NDkzODgwNjQ3Njg=", - "text": "Today, I held a meeting on Ukraine's work with NATO next year. Head of the Verkhovna Rada, Prime Minister, Deputy Prime Minister for EU and NATO integration, Minister of Foreign Affairs, and the international team of the President’s Office.\n\nUkraine’s strategy in relations with the Alliance is clear. It is about a security foundation for Ukraine and all of Europe. The tactics of our actions are based on this strategy. Foreign policy, institutional steps inside the country—everything must be as meaningful as possible.", - "entity_set": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "richtext": { - "richtext_tags": [] - }, - "media": { - "inline_media": [] - } - } - } - }, - "legacy": { - "bookmark_count": 43, - "bookmarked": false, - "created_at": "Tue Dec 26 20:22:15 +0000 2023", - "conversation_id_str": "1739743449467805840", - "display_text_range": [ - 0, - 279 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/on78t6ROkJ", - "expanded_url": "https://twitter.com/ZelenskyyUa/status/1739743449467805840/video/1", - "id_str": "1739743268584235008", - "indices": [ - 280, - 303 - ], - "media_key": "7_1739743268584235008", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1739743268584235008/pu/img/cPQQeHFhP9D8FAjr.jpg", - "type": "video", - "url": "https://t.co/on78t6ROkJ", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 1080, - "w": 1920, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1080, - "width": 1920, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 16, - 9 - ], - "duration_millis": 264720, - "variants": [ - { - "bitrate": 832000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739743268584235008/pu/vid/avc1/640x360/tzPdScOWnOJ9Y6AA.mp4?tag=12" - }, - { - "bitrate": 256000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739743268584235008/pu/vid/avc1/480x270/2etS2g3DO7YH-tBL.mp4?tag=12" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1739743268584235008/pu/pl/-b7g72SDW83I1Dr2.m3u8?tag=12&container=fmp4" - }, - { - "bitrate": 2176000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739743268584235008/pu/vid/avc1/1280x720/BCRDhXpyj7loPa3B.mp4?tag=12" - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/on78t6ROkJ", - "expanded_url": "https://twitter.com/ZelenskyyUa/status/1739743449467805840/video/1", - "id_str": "1739743268584235008", - "indices": [ - 280, - 303 - ], - "media_key": "7_1739743268584235008", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1739743268584235008/pu/img/cPQQeHFhP9D8FAjr.jpg", - "type": "video", - "url": "https://t.co/on78t6ROkJ", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 1080, - "w": 1920, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1080, - "width": 1920, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 16, - 9 - ], - "duration_millis": 264720, - "variants": [ - { - "bitrate": 832000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739743268584235008/pu/vid/avc1/640x360/tzPdScOWnOJ9Y6AA.mp4?tag=12" - }, - { - "bitrate": 256000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739743268584235008/pu/vid/avc1/480x270/2etS2g3DO7YH-tBL.mp4?tag=12" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1739743268584235008/pu/pl/-b7g72SDW83I1Dr2.m3u8?tag=12&container=fmp4" - }, - { - "bitrate": 2176000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739743268584235008/pu/vid/avc1/1280x720/BCRDhXpyj7loPa3B.mp4?tag=12" - } - ] - } - } - ] - }, - "favorite_count": 8156, - "favorited": false, - "full_text": "Today, I held a meeting on Ukraine's work with NATO next year. Head of the Verkhovna Rada, Prime Minister, Deputy Prime Minister for EU and NATO integration, Minister of Foreign Affairs, and the international team of the President’s Office.\n\nUkraine’s strategy in relations with… https://t.co/on78t6ROkJ", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 31, - "reply_count": 435, - "retweet_count": 1391, - "retweeted": false, - "user_id_str": "1120633726478823425", - "id_str": "1739743449467805840" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739740882738286725", - "sortIndex": "1739819664587882430", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739740882738286725", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDM0Mjc0NDg=", - "rest_id": "143427448", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Thu May 13 12:47:30 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Welcome to 🇺🇦 MFA Twitter account! We Represent, Protect, Promote Ukraine and its highest value – People. Our Foreign Minister – @DmytroKuleba.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "mfa.gov.ua", - "expanded_url": "http://www.mfa.gov.ua", - "url": "https://t.co/WK7H0wB3YC", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 5598, - "followers_count": 470284, - "friends_count": 1199, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 6866, - "location": "Ukraine, Kyiv", - "media_count": 11568, - "name": "MFA of Ukraine 🇺🇦", - "normal_followers_count": 470284, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/143427448/1700662055", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1679533657869139970/GnBhH_-l_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "MFA_Ukraine", - "statuses_count": 69371, - "translator_type": "none", - "url": "https://t.co/WK7H0wB3YC", - "verified": false, - "verified_type": "Government", - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1505218857501343748", - "professional_type": "Business", - "category": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739740882738286725" - ], - "editable_until_msecs": "1703625123000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "25758", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 5, - "bookmarked": false, - "created_at": "Tue Dec 26 20:12:03 +0000 2023", - "conversation_id_str": "1739740882738286725", - "display_text_range": [ - 0, - 248 - ], - "entities": { - "hashtags": [ - { - "indices": [ - 23, - 31 - ], - "text": "Kherson" - }, - { - "indices": [ - 224, - 248 - ], - "text": "RussiaIsATerroristState" - } - ], - "media": [ - { - "display_url": "pic.twitter.com/d2ODCve3C2", - "expanded_url": "https://twitter.com/MFA_Ukraine/status/1739740882738286725/video/1", - "id_str": "1739740763863273474", - "indices": [ - 249, - 272 - ], - "media_key": "7_1739740763863273474", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1739740763863273474/pu/img/3XvbPi0VCbKQeRCE.jpg", - "type": "video", - "url": "https://t.co/d2ODCve3C2", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 1080, - "w": 1080, - "resize": "fit" - }, - "medium": { - "h": 1080, - "w": 1080, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1080, - "width": 1080, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 1, - 1 - ], - "duration_millis": 30600, - "variants": [ - { - "bitrate": 832000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739740763863273474/pu/vid/avc1/540x540/Km9Qnq9_jaHr_4P6.mp4?tag=12" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1739740763863273474/pu/pl/sHj1eVBAwsmx0mGS.m3u8?tag=12&container=fmp4" - }, - { - "bitrate": 1280000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739740763863273474/pu/vid/avc1/720x720/MNAnKthxX6la9_dz.mp4?tag=12" - }, - { - "bitrate": 432000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739740763863273474/pu/vid/avc1/320x320/fGVvG3PGOq-JYzHs.mp4?tag=12" - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/d2ODCve3C2", - "expanded_url": "https://twitter.com/MFA_Ukraine/status/1739740882738286725/video/1", - "id_str": "1739740763863273474", - "indices": [ - 249, - 272 - ], - "media_key": "7_1739740763863273474", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1739740763863273474/pu/img/3XvbPi0VCbKQeRCE.jpg", - "type": "video", - "url": "https://t.co/d2ODCve3C2", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 1080, - "w": 1080, - "resize": "fit" - }, - "medium": { - "h": 1080, - "w": 1080, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1080, - "width": 1080, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 1, - 1 - ], - "duration_millis": 30600, - "variants": [ - { - "bitrate": 832000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739740763863273474/pu/vid/avc1/540x540/Km9Qnq9_jaHr_4P6.mp4?tag=12" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1739740763863273474/pu/pl/sHj1eVBAwsmx0mGS.m3u8?tag=12&container=fmp4" - }, - { - "bitrate": 1280000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739740763863273474/pu/vid/avc1/720x720/MNAnKthxX6la9_dz.mp4?tag=12" - }, - { - "bitrate": 432000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739740763863273474/pu/vid/avc1/320x320/fGVvG3PGOq-JYzHs.mp4?tag=12" - } - ] - } - } - ] - }, - "favorite_count": 330, - "favorited": false, - "full_text": "The railway station in #Kherson. Hundreds of civilians waiting for an evacuation train. Russian barbaric attack.\n\nA police lieutenant who was ensuring the evacuation of people was killed. At least four people were injured.\n\n#RussiaIsATerroristState https://t.co/d2ODCve3C2", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 13, - "reply_count": 10, - "retweet_count": 217, - "retweeted": false, - "user_id_str": "143427448", - "id_str": "1739740882738286725" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739738602345545768", - "sortIndex": "1739819664587882429", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739738602345545768", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/DkVEcwYQQP", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1737971965938356224/pxP6QOH8?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 150, - "width": 239, - "url": "https://pbs.twimg.com/card_img/1737971965938356224/pxP6QOH8?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "Ukraine's Foreign Intelligence Service has alleged that Roman Ihnatov, head of the High Qualification Commission, a key agency in Ukraine's judicial system, has Russian citizenship. Ihnatov, who...", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "kyivindependent.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 320, - "width": 511, - "url": "https://pbs.twimg.com/card_img/1737971965938356224/pxP6QOH8?format=jpg&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737971965938356224/pxP6QOH8?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 752, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737971965938356224/pxP6QOH8?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "1462548977367359490", - "path": [] - } - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737971965938356224/pxP6QOH8?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1737971965938356224/pxP6QOH8?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 63, - "width": 100, - "url": "https://pbs.twimg.com/card_img/1737971965938356224/pxP6QOH8?format=jpg&name=100x100" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 752, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737971965938356224/pxP6QOH8?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 752, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737971965938356224/pxP6QOH8?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "kyivindependent.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737971965938356224/pxP6QOH8?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 167, - "green": 172, - "red": 173 - }, - "percentage": 36.99 - }, - { - "rgb": { - "blue": 32, - "green": 22, - "red": 23 - }, - "percentage": 34.85 - }, - { - "rgb": { - "blue": 86, - "green": 104, - "red": 111 - }, - "percentage": 7.01 - }, - { - "rgb": { - "blue": 182, - "green": 146, - "red": 143 - }, - "percentage": 2.36 - }, - { - "rgb": { - "blue": 81, - "green": 43, - "red": 38 - }, - "percentage": 2.34 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Intelligence service claims top judicial official has Russian citizenship; he denies it, cites...", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 167, - "green": 172, - "red": 173 - }, - "percentage": 36.99 - }, - { - "rgb": { - "blue": 32, - "green": 22, - "red": 23 - }, - "percentage": 34.85 - }, - { - "rgb": { - "blue": 86, - "green": 104, - "red": 111 - }, - "percentage": 7.01 - }, - { - "rgb": { - "blue": 182, - "green": 146, - "red": 143 - }, - "percentage": 2.36 - }, - { - "rgb": { - "blue": 81, - "green": 43, - "red": 38 - }, - "percentage": 2.34 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 752, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737971965938356224/pxP6QOH8?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737971965938356224/pxP6QOH8?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 167, - "green": 172, - "red": 173 - }, - "percentage": 36.99 - }, - { - "rgb": { - "blue": 32, - "green": 22, - "red": 23 - }, - "percentage": 34.85 - }, - { - "rgb": { - "blue": 86, - "green": 104, - "red": 111 - }, - "percentage": 7.01 - }, - { - "rgb": { - "blue": 182, - "green": 146, - "red": 143 - }, - "percentage": 2.36 - }, - { - "rgb": { - "blue": 81, - "green": 43, - "red": 38 - }, - "percentage": 2.34 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 752, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737971965938356224/pxP6QOH8?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/DkVEcwYQQP", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 752, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1737971965938356224/pxP6QOH8?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/DkVEcwYQQP", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739738602345545768" - ], - "editable_until_msecs": "1703624580000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "81349", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 3, - "bookmarked": false, - "created_at": "Tue Dec 26 20:03:00 +0000 2023", - "conversation_id_str": "1739738602345545768", - "display_text_range": [ - 0, - 274 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "kyivindependent.com/intelligence-s…", - "expanded_url": "https://kyivindependent.com/intelligence-service-confirms-top-ukrainian-judicial-official-has-russian-citizenship/", - "url": "https://t.co/DkVEcwYQQP", - "indices": [ - 251, - 274 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 166, - "favorited": false, - "full_text": "Ukraine's Foreign Intelligence Service claims that Roman Ihnatov, the head of the key judicial agency, the High Qualification Commission, holds Russian citizenship. Ihnatov denies the allegation, attributing it to an attempt to exert pressure on him. https://t.co/DkVEcwYQQP", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 6, - "retweet_count": 31, - "retweeted": false, - "user_id_str": "1462548977367359490", - "id_str": "1739738602345545768" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739737709168472527", - "sortIndex": "1739819664587882428", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739737709168472527", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/dfygit6Eeg", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739737696958869504/hXNpGJtH?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 150, - "width": 207, - "url": "https://pbs.twimg.com/card_img/1739737696958869504/hXNpGJtH?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "French Transport Minister Clement Beaune said on Dec. 26. \"Our commitment is total, our solidarity will not stop,\" Beaune said on X, formerly Twitter.", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "kyivindependent.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 289, - "width": 400, - "url": "https://pbs.twimg.com/card_img/1739737696958869504/hXNpGJtH?format=jpg&name=400x400" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739737696958869504/hXNpGJtH?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 741, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739737696958869504/hXNpGJtH?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "1462548977367359490", - "path": [] - } - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739737696958869504/hXNpGJtH?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739737696958869504/hXNpGJtH?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 72, - "width": 100, - "url": "https://pbs.twimg.com/card_img/1739737696958869504/hXNpGJtH?format=jpg&name=100x100" - }, - "type": "IMAGE" - } - }, - { - "key": "creator", - "value": { - "type": "USER", - "user_value": { - "id_str": "972491543666987008", - "path": [] - } - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 741, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739737696958869504/hXNpGJtH?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 741, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739737696958869504/hXNpGJtH?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "kyivindependent.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739737696958869504/hXNpGJtH?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 121, - "green": 155, - "red": 168 - }, - "percentage": 45.1 - }, - { - "rgb": { - "blue": 67, - "green": 83, - "red": 76 - }, - "percentage": 18.36 - }, - { - "rgb": { - "blue": 41, - "green": 18, - "red": 10 - }, - "percentage": 16.05 - }, - { - "rgb": { - "blue": 255, - "green": 234, - "red": 216 - }, - "percentage": 5.33 - }, - { - "rgb": { - "blue": 76, - "green": 45, - "red": 254 - }, - "percentage": 4.95 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Minister: France delivers second ship to help Ukraine with grain export", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 121, - "green": 155, - "red": 168 - }, - "percentage": 45.1 - }, - { - "rgb": { - "blue": 67, - "green": 83, - "red": 76 - }, - "percentage": 18.36 - }, - { - "rgb": { - "blue": 41, - "green": 18, - "red": 10 - }, - "percentage": 16.05 - }, - { - "rgb": { - "blue": 255, - "green": 234, - "red": 216 - }, - "percentage": 5.33 - }, - { - "rgb": { - "blue": 76, - "green": 45, - "red": 254 - }, - "percentage": 4.95 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 741, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739737696958869504/hXNpGJtH?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739737696958869504/hXNpGJtH?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 121, - "green": 155, - "red": 168 - }, - "percentage": 45.1 - }, - { - "rgb": { - "blue": 67, - "green": 83, - "red": 76 - }, - "percentage": 18.36 - }, - { - "rgb": { - "blue": 41, - "green": 18, - "red": 10 - }, - "percentage": 16.05 - }, - { - "rgb": { - "blue": 255, - "green": 234, - "red": 216 - }, - "percentage": 5.33 - }, - { - "rgb": { - "blue": 76, - "green": 45, - "red": 254 - }, - "percentage": 4.95 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 741, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739737696958869504/hXNpGJtH?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/dfygit6Eeg", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 741, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739737696958869504/hXNpGJtH?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/dfygit6Eeg", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjo5NzI0OTE1NDM2NjY5ODcwMDg=", - "rest_id": "972491543666987008", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sat Mar 10 15:17:06 +0000 2018", - "default_profile": true, - "default_profile_image": false, - "description": "@KyivIndependent journalist. Kurt Schork Local Reporter and Axel Springer Prize awards. Write me: a.terajima@kyivindependent.com", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com/author/asami-t…", - "expanded_url": "https://kyivindependent.com/author/asami-terajima", - "url": "https://t.co/4WDgeBBsFY", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 1873, - "followers_count": 52731, - "friends_count": 2253, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1155, - "location": "Donbas - Kyiv", - "media_count": 207, - "name": "Asami Terajima", - "normal_followers_count": 52731, - "pinned_tweet_ids_str": [ - "1717561830803952038" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/972491543666987008/1696802473", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1725454100702101504/zeOeSMyY_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "AsamiTerajima", - "statuses_count": 1775, - "translator_type": "none", - "url": "https://t.co/4WDgeBBsFY", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1503165328666378243", - "professional_type": "Creator", - "category": [] - } - } - }, - { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739737709168472527" - ], - "editable_until_msecs": "1703624367000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "89864", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 8, - "bookmarked": false, - "created_at": "Tue Dec 26 19:59:27 +0000 2023", - "conversation_id_str": "1739737709168472527", - "display_text_range": [ - 0, - 251 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "kyivindependent.com/minister-franc…", - "expanded_url": "https://kyivindependent.com/minister-france-delivers-second-ship-to-help-grain-export/", - "url": "https://t.co/dfygit6Eeg", - "indices": [ - 228, - 251 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 1791, - "favorited": false, - "full_text": "⚡️Minister: France delivers second ship to help Ukraine with grain export.\n\nFrench Transport Minister Clement Beaune said on Dec. 26. \"Our commitment is total, our solidarity will not stop,\" Beaune said on X, formerly Twitter.\n\nhttps://t.co/dfygit6Eeg", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 5, - "reply_count": 5, - "retweet_count": 244, - "retweeted": false, - "user_id_str": "1462548977367359490", - "id_str": "1739737709168472527" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739736751336300671", - "sortIndex": "1739819664587882427", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739736751336300671", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzE3NTIxMw==", - "rest_id": "17175213", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed Nov 05 00:59:16 +0000 2008", - "default_profile": true, - "default_profile_image": false, - "description": "Defence editor at @TheEconomist, Visiting fellow at @warstudies King's College London.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "shashankjoshi.wordpress.com", - "expanded_url": "http://shashankjoshi.wordpress.com", - "url": "https://t.co/euRjbnk3WT", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 36102, - "followers_count": 194545, - "friends_count": 1787, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5880, - "location": "London", - "media_count": 4138, - "name": "Shashank Joshi", - "normal_followers_count": 194545, - "pinned_tweet_ids_str": [ - "1729977020002476084" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17175213/1688649354", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1509894709770076168/uNk9W2IH_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "shashj", - "statuses_count": 49138, - "translator_type": "none", - "url": "https://t.co/euRjbnk3WT", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/HIl0I1kR1C", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739708317713195009/lcMYOHR7?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "app_star_rating", - "value": { - "string_value": "4.86448", - "type": "STRING" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 147, - "width": 280, - "url": "https://pbs.twimg.com/card_img/1739708317713195009/lcMYOHR7?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "Sir David Omand tells parliamentary inquiry the platform should be restricted to ‘background mood music’", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.theguardian.com", - "type": "STRING" - } - }, - { - "key": "app_is_free", - "value": { - "string_value": "true", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 315, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739708317713195009/lcMYOHR7?format=jpg&name=600x600" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739708317713195009/lcMYOHR7?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739708317713195009/lcMYOHR7?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "87818409", - "path": [] - } - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739708317713195009/lcMYOHR7?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739708317713195009/lcMYOHR7?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 76, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1739708317713195009/lcMYOHR7?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "app_num_ratings", - "value": { - "string_value": "106,614", - "type": "STRING" - } - }, - { - "key": "app_price_amount", - "value": { - "string_value": "0.0", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739708317713195009/lcMYOHR7?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739708317713195009/lcMYOHR7?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "theguardian.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739708317713195009/lcMYOHR7?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "app_name", - "value": { - "string_value": "The Guardian - Live World News", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 207, - "green": 207, - "red": 205 - }, - "percentage": 53.75 - }, - { - "rgb": { - "blue": 35, - "green": 33, - "red": 33 - }, - "percentage": 26.41 - }, - { - "rgb": { - "blue": 95, - "green": 44, - "red": 11 - }, - "percentage": 7.37 - }, - { - "rgb": { - "blue": 91, - "green": 97, - "red": 139 - }, - "percentage": 2.66 - }, - { - "rgb": { - "blue": 106, - "green": 109, - "red": 105 - }, - "percentage": 1.33 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "End government by WhatsApp, urges former GCHQ head", - "type": "STRING" - } - }, - { - "key": "app_price_currency", - "value": { - "string_value": "USD", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 207, - "green": 207, - "red": 205 - }, - "percentage": 53.75 - }, - { - "rgb": { - "blue": 35, - "green": 33, - "red": 33 - }, - "percentage": 26.41 - }, - { - "rgb": { - "blue": 95, - "green": 44, - "red": 11 - }, - "percentage": 7.37 - }, - { - "rgb": { - "blue": 91, - "green": 97, - "red": 139 - }, - "percentage": 2.66 - }, - { - "rgb": { - "blue": 106, - "green": 109, - "red": 105 - }, - "percentage": 1.33 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739708317713195009/lcMYOHR7?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739708317713195009/lcMYOHR7?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 207, - "green": 207, - "red": 205 - }, - "percentage": 53.75 - }, - { - "rgb": { - "blue": 35, - "green": 33, - "red": 33 - }, - "percentage": 26.41 - }, - { - "rgb": { - "blue": 95, - "green": 44, - "red": 11 - }, - "percentage": 7.37 - }, - { - "rgb": { - "blue": 91, - "green": 97, - "red": 139 - }, - "percentage": 2.66 - }, - { - "rgb": { - "blue": 106, - "green": 109, - "red": 105 - }, - "percentage": 1.33 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739708317713195009/lcMYOHR7?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/HIl0I1kR1C", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 630, - "width": 1200, - "url": "https://pbs.twimg.com/card_img/1739708317713195009/lcMYOHR7?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/HIl0I1kR1C", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjo4NzgxODQwOQ==", - "rest_id": "87818409", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Thu Nov 05 23:49:19 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "The need for independent journalism has never been greater. Become a Guardian supporter: https://t.co/kFXqbVRovR", - "entities": { - "description": { - "urls": [ - { - "display_url": "support.theguardian.com", - "expanded_url": "http://support.theguardian.com", - "url": "https://t.co/kFXqbVRovR", - "indices": [ - 89, - 112 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "theguardian.com", - "expanded_url": "https://www.theguardian.com", - "url": "https://t.co/KHA6KFoD05", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 142, - "followers_count": 10908719, - "friends_count": 1038, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 71492, - "location": "London", - "media_count": 24317, - "name": "The Guardian", - "normal_followers_count": 10908719, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/87818409/1695201078", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1175141826870861825/K2qKoGla_normal.png", - "profile_interstitial_type": "", - "screen_name": "guardian", - "statuses_count": 841147, - "translator_type": "regular", - "url": "https://t.co/KHA6KFoD05", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739736751336300671" - ], - "editable_until_msecs": "1703624138000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "31864", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 5, - "bookmarked": false, - "created_at": "Tue Dec 26 19:55:38 +0000 2023", - "conversation_id_str": "1739736751336300671", - "display_text_range": [ - 0, - 246 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "theguardian.com/politics/2023/…", - "expanded_url": "https://www.theguardian.com/politics/2023/dec/26/end-government-by-whatsapp-urges-former-gchq-head", - "url": "https://t.co/HIl0I1kR1C", - "indices": [ - 223, - 246 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 149, - "favorited": false, - "full_text": "David Omand: “The former head of GCHQ has called for an end to the government handling crises over WhatsApp, saying the platform might suit gossip and informal exchanges but is inappropriate for important decision-making.” https://t.co/HIl0I1kR1C", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 9, - "reply_count": 8, - "retweet_count": 27, - "retweeted": false, - "user_id_str": "17175213", - "id_str": "1739736751336300671" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739736701818331316", - "sortIndex": "1739819664587882426", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739736701818331316", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739736701818331316" - ], - "editable_until_msecs": "1703624127000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "79550", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 24, - "bookmarked": false, - "created_at": "Tue Dec 26 19:55:27 +0000 2023", - "conversation_id_str": "1739736701818331316", - "display_text_range": [ - 0, - 274 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/5q4T79d9BN", - "expanded_url": "https://twitter.com/KyivIndependent/status/1739736701818331316/video/1", - "id_str": "1739735474258751488", - "indices": [ - 275, - 298 - ], - "media_key": "7_1739735474258751488", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1739735474258751488/pu/img/lPECbHX_n5M-rGfi.jpg", - "type": "video", - "url": "https://t.co/5q4T79d9BN", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 1920, - "w": 1080, - "resize": "fit" - }, - "medium": { - "h": 1200, - "w": 675, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 383, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1920, - "width": 1080, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 9, - 16 - ], - "duration_millis": 110640, - "variants": [ - { - "bitrate": 950000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739735474258751488/pu/vid/avc1/480x852/dLghn4GZHk7BYDDq.mp4?tag=12" - }, - { - "bitrate": 2176000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739735474258751488/pu/vid/avc1/720x1280/am3aylF1XyfXInra.mp4?tag=12" - }, - { - "bitrate": 632000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739735474258751488/pu/vid/avc1/320x568/HQxl4zIV7LeIb1wC.mp4?tag=12" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1739735474258751488/pu/pl/4mVYfYDSEfuD-4DH.m3u8?tag=12&container=fmp4" - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "868962444269506561", - "name": "Francis Farrell", - "screen_name": "francisjfarrell", - "indices": [ - 118, - 134 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/5q4T79d9BN", - "expanded_url": "https://twitter.com/KyivIndependent/status/1739736701818331316/video/1", - "id_str": "1739735474258751488", - "indices": [ - 275, - 298 - ], - "media_key": "7_1739735474258751488", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1739735474258751488/pu/img/lPECbHX_n5M-rGfi.jpg", - "type": "video", - "url": "https://t.co/5q4T79d9BN", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 1920, - "w": 1080, - "resize": "fit" - }, - "medium": { - "h": 1200, - "w": 675, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 383, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1920, - "width": 1080, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 9, - 16 - ], - "duration_millis": 110640, - "variants": [ - { - "bitrate": 950000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739735474258751488/pu/vid/avc1/480x852/dLghn4GZHk7BYDDq.mp4?tag=12" - }, - { - "bitrate": 2176000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739735474258751488/pu/vid/avc1/720x1280/am3aylF1XyfXInra.mp4?tag=12" - }, - { - "bitrate": 632000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739735474258751488/pu/vid/avc1/320x568/HQxl4zIV7LeIb1wC.mp4?tag=12" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1739735474258751488/pu/pl/4mVYfYDSEfuD-4DH.m3u8?tag=12&container=fmp4" - } - ] - } - } - ] - }, - "favorite_count": 356, - "favorited": false, - "full_text": "Commander-in-Chief of the Armed Forces of Ukraine Valerii Zaluzhnyi fielded a question from Kyiv Independent reporter @francisjfarrell about how Ukraine's military campaign will look in 2024, taking into account the insights gained from the experiences of 2023.\n\n📽️: Army TV https://t.co/5q4T79d9BN", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 7, - "reply_count": 15, - "retweet_count": 65, - "retweeted": false, - "user_id_str": "1462548977367359490", - "id_str": "1739736701818331316" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739732919428477210", - "sortIndex": "1739819664587882425", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739732919428477210", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739732919428477210" - ], - "editable_until_msecs": "1703623225000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "114818", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 3, - "bookmarked": false, - "created_at": "Tue Dec 26 19:40:25 +0000 2023", - "conversation_id_str": "1739732919428477210", - "display_text_range": [ - 0, - 205 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/0fk2hZHTdA", - "expanded_url": "https://twitter.com/KyivIndependent/status/1739732919428477210/video/1", - "id_str": "1739732756978954240", - "indices": [ - 206, - 229 - ], - "media_key": "7_1739732756978954240", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1739732756978954240/pu/img/o1AM7O9K7ItdCKyj.jpg", - "type": "video", - "url": "https://t.co/0fk2hZHTdA", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 848, - "w": 480, - "resize": "fit" - }, - "medium": { - "h": 848, - "w": 480, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 385, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 848, - "width": 480, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 30, - 53 - ], - "duration_millis": 33733, - "variants": [ - { - "bitrate": 950000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739732756978954240/pu/vid/avc1/480x848/GxUEESPSjczn7Bm4.mp4?tag=12" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1739732756978954240/pu/pl/jMD6fatGTlLb2SRi.m3u8?tag=12&container=fmp4" - }, - { - "bitrate": 632000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739732756978954240/pu/vid/avc1/320x564/l07BEudGNre3O2Lz.mp4?tag=12" - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/0fk2hZHTdA", - "expanded_url": "https://twitter.com/KyivIndependent/status/1739732919428477210/video/1", - "id_str": "1739732756978954240", - "indices": [ - 206, - 229 - ], - "media_key": "7_1739732756978954240", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1739732756978954240/pu/img/o1AM7O9K7ItdCKyj.jpg", - "type": "video", - "url": "https://t.co/0fk2hZHTdA", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 848, - "w": 480, - "resize": "fit" - }, - "medium": { - "h": 848, - "w": 480, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 385, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 848, - "width": 480, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 30, - 53 - ], - "duration_millis": 33733, - "variants": [ - { - "bitrate": 950000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739732756978954240/pu/vid/avc1/480x848/GxUEESPSjczn7Bm4.mp4?tag=12" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1739732756978954240/pu/pl/jMD6fatGTlLb2SRi.m3u8?tag=12&container=fmp4" - }, - { - "bitrate": 632000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1739732756978954240/pu/vid/avc1/320x564/l07BEudGNre3O2Lz.mp4?tag=12" - } - ] - } - } - ] - }, - "favorite_count": 419, - "favorited": false, - "full_text": "This video shows the aftermath of the Russian strike on a railway station full of people in Kherson late on Dec. 26, killing at least one person and wounding four others.\n\n📽️: Oleksandr Prokudin / Telegram https://t.co/0fk2hZHTdA", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 12, - "reply_count": 8, - "retweet_count": 172, - "retweeted": false, - "user_id_str": "1462548977367359490", - "id_str": "1739732919428477210" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739732700574183565", - "sortIndex": "1739819664587882424", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739732700574183565", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjozMTQ1ODcxODU=", - "rest_id": "314587185", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Fri Jun 10 14:04:48 +0000 2011", - "default_profile": true, - "default_profile_image": false, - "description": "Geopolitics, NatSec, Great Power Competition, Cybersecurity. Chairman @SilveradoPolicy; Host @GeopolDecanted; Founder @alperovitch; Co-Founder @CrowdStrike", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "silverado.org", - "expanded_url": "https://www.silverado.org", - "url": "https://t.co/XIgzRvJw5Y", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 16352, - "followers_count": 203599, - "friends_count": 2096, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5907, - "location": "USA", - "media_count": 228, - "name": "Dmitri Alperovitch", - "normal_followers_count": 203599, - "pinned_tweet_ids_str": [ - "1699190577303007292" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/314587185/1590727022", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1496573476504842243/FjEsibnw_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "DAlperovitch", - "statuses_count": 3829, - "translator_type": "none", - "url": "https://t.co/XIgzRvJw5Y", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739732700574183565" - ], - "editable_until_msecs": "1703623173144", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 19:39:33 +0000 2023", - "conversation_id_str": "1739732700574183565", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [ - { - "indices": [ - 81, - 89 - ], - "text": "Turkiye" - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1140437481621508096", - "name": "Boris Ruge", - "screen_name": "RugeBoris", - "indices": [ - 3, - 13 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @RugeBoris: Excellent news from Ankara where the Foreign Affairs Committee of #Turkiye|s Grand National Assembly has voted in favor of #…", - "is_quote_status": true, - "lang": "en", - "quote_count": 0, - "quoted_status_id_str": "1739681174509748345", - "quoted_status_permalink": { - "url": "https://t.co/tYZcsBEQsD", - "expanded": "https://twitter.com/tobiasbillstrom/status/1739681174509748345", - "display": "twitter.com/tobiasbillstro…" - }, - "reply_count": 0, - "retweet_count": 95, - "retweeted": false, - "user_id_str": "314587185", - "id_str": "1739732700574183565", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739684057422680179", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMTQwNDM3NDgxNjIxNTA4MDk2", - "rest_id": "1140437481621508096", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Mon Jun 17 01:54:18 +0000 2019", - "default_profile": true, - "default_profile_image": false, - "description": "Ambassador | Assistant Secretary General for Political Affairs and Security Policy @NATO | Personal account", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "nato.int", - "expanded_url": "https://www.nato.int/", - "url": "https://t.co/Wg6vWsv0ud", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 15711, - "followers_count": 11777, - "friends_count": 203, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 166, - "location": "Brussels, Belgium", - "media_count": 438, - "name": "Boris Ruge", - "normal_followers_count": 11777, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1140437481621508096/1688393358", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1243834093881655296/2hlLngNV_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "RugeBoris", - "statuses_count": 3627, - "translator_type": "none", - "url": "https://t.co/Wg6vWsv0ud", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739684057422680179" - ], - "editable_until_msecs": "1703611575000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "75646", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739681174509748345", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyMDU5NjU2NQ==", - "rest_id": "20596565", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Wed Feb 11 15:30:33 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Sveriges utrikesminister/Minister of Foreign Affairs of Sweden 🇸🇪💙🇺🇦", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 48221, - "followers_count": 37021, - "friends_count": 371, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 359, - "location": "Stockholm, Sweden", - "media_count": 1004, - "name": "Tobias Billström", - "normal_followers_count": 37021, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/20596565/1487334767", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/840138004060557312/Jn6ZbdJt_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "TobiasBillstrom", - "statuses_count": 24688, - "translator_type": "none", - "verified": false, - "verified_type": "Government", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739681174509748345" - ], - "editable_until_msecs": "1703610888000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": true, - "views": { - "count": "192546", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 6, - "bookmarked": false, - "created_at": "Tue Dec 26 16:14:48 +0000 2023", - "conversation_id_str": "1739681174509748345", - "display_text_range": [ - 0, - 165 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "83795099", - "name": "NATO", - "screen_name": "NATO", - "indices": [ - 160, - 165 - ] - } - ] - }, - "favorite_count": 1779, - "favorited": false, - "full_text": "Vi välkomnar att utrikesutskottet i Turkiet godkänt Sveriges Nato-ansökan. Nästa steg är att parlamentet ska rösta om frågan. Vi ser fram emot att bli medlem i @NATO", - "is_quote_status": false, - "lang": "sv", - "quote_count": 30, - "reply_count": 101, - "retweet_count": 176, - "retweeted": false, - "user_id_str": "20596565", - "id_str": "1739681174509748345" - } - } - }, - "legacy": { - "bookmark_count": 4, - "bookmarked": false, - "created_at": "Tue Dec 26 16:26:15 +0000 2023", - "conversation_id_str": "1739684057422680179", - "display_text_range": [ - 0, - 157 - ], - "entities": { - "hashtags": [ - { - "indices": [ - 66, - 74 - ], - "text": "Turkiye" - }, - { - "indices": [ - 123, - 130 - ], - "text": "Sweden" - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "83795099", - "name": "NATO", - "screen_name": "NATO", - "indices": [ - 147, - 152 - ] - } - ] - }, - "favorite_count": 372, - "favorited": false, - "full_text": "Excellent news from Ankara where the Foreign Affairs Committee of #Turkiye|s Grand National Assembly has voted in favor of #Sweden|s membership in @NATO 🇸🇪🇹🇷", - "is_quote_status": true, - "lang": "en", - "quote_count": 6, - "quoted_status_id_str": "1739681174509748345", - "quoted_status_permalink": { - "url": "https://t.co/tYZcsBEQsD", - "expanded": "https://twitter.com/tobiasbillstrom/status/1739681174509748345", - "display": "twitter.com/tobiasbillstro…" - }, - "reply_count": 7, - "retweet_count": 95, - "retweeted": false, - "user_id_str": "1140437481621508096", - "id_str": "1739684057422680179" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739731805694054705", - "sortIndex": "1739819664587882423", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739731805694054705", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDEwNjQ3Ng==", - "rest_id": "14106476", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sun Mar 09 08:15:00 +0000 2008", - "default_profile": false, - "default_profile_image": false, - "description": "The award-winning Kyiv Post is the top international source of English-language news about Ukraine since 1995.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kyivpost.com", - "expanded_url": "http://kyivpost.com/", - "url": "https://t.co/lHlutZvoAu", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 4940, - "followers_count": 394083, - "friends_count": 1632, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 6669, - "location": "#Kyiv, #Ukraine", - "media_count": 30642, - "name": "KyivPost", - "normal_followers_count": 394083, - "pinned_tweet_ids_str": [ - "1737813935594565787" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14106476/1703492324", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1592474120477982720/cLYnDbg1_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivPost", - "statuses_count": 73335, - "translator_type": "none", - "url": "https://t.co/lHlutZvoAu", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739731805694054705" - ], - "editable_until_msecs": "1703622959000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "17268", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739726560637116923", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDEwNjQ3Ng==", - "rest_id": "14106476", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sun Mar 09 08:15:00 +0000 2008", - "default_profile": false, - "default_profile_image": false, - "description": "The award-winning Kyiv Post is the top international source of English-language news about Ukraine since 1995.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kyivpost.com", - "expanded_url": "http://kyivpost.com/", - "url": "https://t.co/lHlutZvoAu", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 4940, - "followers_count": 394083, - "friends_count": 1632, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 6669, - "location": "#Kyiv, #Ukraine", - "media_count": 30642, - "name": "KyivPost", - "normal_followers_count": 394083, - "pinned_tweet_ids_str": [ - "1737813935594565787" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14106476/1703492324", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1592474120477982720/cLYnDbg1_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivPost", - "statuses_count": 73335, - "translator_type": "none", - "url": "https://t.co/lHlutZvoAu", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739726560637116923" - ], - "editable_until_msecs": "1703621709000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "26883", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 1, - "bookmarked": false, - "created_at": "Tue Dec 26 19:15:09 +0000 2023", - "conversation_id_str": "1739726560637116923", - "display_text_range": [ - 0, - 272 - ], - "entities": { - "hashtags": [ - { - "indices": [ - 48, - 56 - ], - "text": "Kherson" - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 50, - "favorited": false, - "full_text": "❗️Russian forces shelled the railway station in #Kherson and an evacuation train, which was expected to transport around 140 civilians. \n\n\"All necessary services are already operating at the scene. The exact number of injured is being determined,\" President Zelensky said.", - "is_quote_status": false, - "lang": "en", - "quote_count": 1, - "reply_count": 8, - "retweet_count": 26, - "retweeted": false, - "user_id_str": "14106476", - "id_str": "1739726560637116923" - } - } - }, - "legacy": { - "bookmark_count": 3, - "bookmarked": false, - "created_at": "Tue Dec 26 19:35:59 +0000 2023", - "conversation_id_str": "1739731805694054705", - "display_text_range": [ - 0, - 125 - ], - "entities": { - "hashtags": [ - { - "indices": [ - 71, - 79 - ], - "text": "Kherson" - } - ], - "media": [ - { - "display_url": "pic.twitter.com/wFCwcOG3qo", - "expanded_url": "https://twitter.com/KyivPost/status/1739731805694054705/video/1", - "id_str": "1739731726010609664", - "indices": [ - 126, - 149 - ], - "media_key": "13_1739731726010609664", - "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1739731726010609664/img/yjcmIqtCDv4IJ5Ss.jpg", - "type": "video", - "url": "https://t.co/wFCwcOG3qo", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 848, - "w": 480, - "resize": "fit" - }, - "medium": { - "h": 848, - "w": 480, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 385, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 848, - "width": 480, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 30, - 53 - ], - "duration_millis": 33766, - "variants": [ - { - "bitrate": 950000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739731726010609664/vid/avc1/480x848/zBd9Aw7J3z4kLdul.mp4?tag=14" - }, - { - "bitrate": 632000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739731726010609664/vid/avc1/320x564/-WE1D47Ovmb7O8gU.mp4?tag=14" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/amplify_video/1739731726010609664/pl/rckv2DC747VgXFKj.m3u8?tag=14&container=fmp4" - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/wFCwcOG3qo", - "expanded_url": "https://twitter.com/KyivPost/status/1739731805694054705/video/1", - "id_str": "1739731726010609664", - "indices": [ - 126, - 149 - ], - "media_key": "13_1739731726010609664", - "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1739731726010609664/img/yjcmIqtCDv4IJ5Ss.jpg", - "type": "video", - "url": "https://t.co/wFCwcOG3qo", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 848, - "w": 480, - "resize": "fit" - }, - "medium": { - "h": 848, - "w": 480, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 385, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 848, - "width": 480, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 30, - 53 - ], - "duration_millis": 33766, - "variants": [ - { - "bitrate": 950000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739731726010609664/vid/avc1/480x848/zBd9Aw7J3z4kLdul.mp4?tag=14" - }, - { - "bitrate": 632000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739731726010609664/vid/avc1/320x564/-WE1D47Ovmb7O8gU.mp4?tag=14" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/amplify_video/1739731726010609664/pl/rckv2DC747VgXFKj.m3u8?tag=14&container=fmp4" - } - ] - } - } - ] - }, - "favorite_count": 76, - "favorited": false, - "full_text": "❗️The first minutes after the Russian strike on the railway station in #Kherson.\n\n📹: Kherson Regional Military Administration https://t.co/wFCwcOG3qo", - "is_quote_status": true, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 5, - "quoted_status_id_str": "1739726560637116923", - "quoted_status_permalink": { - "url": "https://t.co/tUPb6NADxw", - "expanded": "https://twitter.com/kyivpost/status/1739726560637116923", - "display": "twitter.com/kyivpost/statu…" - }, - "reply_count": 3, - "retweet_count": 26, - "retweeted": false, - "user_id_str": "14106476", - "id_str": "1739731805694054705" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739731280089006184", - "sortIndex": "1739819664587882422", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739731280089006184", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjMwMTg2NTM=", - "rest_id": "163018653", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Mon Jul 05 09:44:27 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Ambassador-at-large @MFA_Ukraine, Amb to Austria (2014-2021). Author of “Ukraine vs Darkness. Undiplomatic Thoughts”. Personal account.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "amazon.com/Ukraine-vs-Dar…", - "expanded_url": "https://www.amazon.com/Ukraine-vs-Darkness-Undiplomatic-Ukrainian-ebook/dp/B08WKF3B2K", - "url": "https://t.co/ERA9Ntt061", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 27535, - "followers_count": 264737, - "friends_count": 1232, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 4333, - "location": "Kyiv", - "media_count": 6463, - "name": "olexander scherba🇺🇦", - "normal_followers_count": 264737, - "pinned_tweet_ids_str": [ - "1396956590713020416" - ], - "possibly_sensitive": true, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/163018653/1646220178", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/671642770549956608/yR9Is6BD_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "olex_scherba", - "statuses_count": 39119, - "translator_type": "none", - "url": "https://t.co/ERA9Ntt061", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1696586841602834861", - "professional_type": "Business", - "category": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739731280089006184" - ], - "editable_until_msecs": "1703622834474", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPad", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 19:33:54 +0000 2023", - "conversation_id_str": "1739731280089006184", - "display_text_range": [ - 0, - 40 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "33055795", - "name": "Dr. Benjamin L. Schmitt🇺🇦", - "screen_name": "BLSchmitt", - "indices": [ - 3, - 13 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @BLSchmitt: More ATACMS for Ukraine‼️", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 354, - "retweeted": false, - "user_id_str": "163018653", - "id_str": "1739731280089006184", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739681239026503713", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjozMzA1NTc5NQ==", - "rest_id": "33055795", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sat Apr 18 23:49:19 +0000 2009", - "default_profile": true, - "default_profile_image": false, - "description": "Senior Fellow @Penn Physics & @KleinmanEnergy; Also @CEPA @DukeU @HURI_Harvard; Affiliate @CenterForAstro; Term Member @CFR_Org; Former @StateDept | views mine", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 14212, - "followers_count": 7756, - "friends_count": 1725, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 157, - "location": "Philadelphia, PA", - "media_count": 754, - "name": "Dr. Benjamin L. Schmitt🇺🇦", - "normal_followers_count": 7756, - "pinned_tweet_ids_str": [ - "1534727763046940672" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/33055795/1558740205", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1502423856501465090/WpemNctQ_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "BLSchmitt", - "statuses_count": 14359, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739681239026503713" - ], - "editable_until_msecs": "1703610903000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "49635", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 3, - "bookmarked": false, - "created_at": "Tue Dec 26 16:15:03 +0000 2023", - "conversation_id_str": "1739681239026503713", - "display_text_range": [ - 0, - 25 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 3247, - "favorited": false, - "full_text": "More ATACMS for Ukraine‼️", - "is_quote_status": false, - "lang": "en", - "quote_count": 9, - "reply_count": 36, - "retweet_count": 354, - "retweeted": false, - "user_id_str": "33055795", - "id_str": "1739681239026503713" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739730827821367571", - "sortIndex": "1739819664587882421", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739730827821367571", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMzU0NTI1MTU1MjM4ODAxNDEz", - "rest_id": "1354525155238801413", - "affiliates_highlighted_label": { - "label": { - "url": { - "url": "https://twitter.com/StateDept", - "urlType": "DeepLink" - }, - "badge": { - "url": "https://pbs.twimg.com/profile_images/1653450164210630659/oPRqz0j6_bigger.jpg" - }, - "description": "Department of State", - "userLabelType": "BusinessLabel", - "userLabelDisplayType": "Badge" - } - }, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Wed Jan 27 20:25:49 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Louisiana cuisinier, mother, wife, and grandma. Thirty-five years in the Foreign Service. Representing America on the world stage as the 31st @USUN Ambassador.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "usun.usmission.gov", - "expanded_url": "http://usun.usmission.gov", - "url": "https://t.co/yf9whPwUKy", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 876, - "followers_count": 387227, - "friends_count": 301, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1796, - "location": "New York City", - "media_count": 975, - "name": "Ambassador Linda Thomas-Greenfield", - "normal_followers_count": 387227, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1354525155238801413/1694012679", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1699438462066212865/RrgPbwdf_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "USAmbUN", - "statuses_count": 3520, - "translator_type": "none", - "url": "https://t.co/yf9whPwUKy", - "verified": false, - "verified_type": "Government", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739730827821367571" - ], - "editable_until_msecs": "1703622726000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "41635", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739709007156101468", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDg1MTc4Mjg=", - "rest_id": "148517828", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Wed May 26 22:36:33 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Official account of the Office of the Spokesperson for United Nations Secretary-General @antonioguterres", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "un.org/sg/spokesperso…", - "expanded_url": "http://www.un.org/sg/spokesperson/", - "url": "https://t.co/QLv5A3GhrU", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 593, - "followers_count": 838672, - "friends_count": 1210, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 4642, - "location": "New York, USA", - "media_count": 5357, - "name": "UN Spokesperson", - "normal_followers_count": 838672, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/148517828/1483247139", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000825778108/376f07ea36febe88ae9e24baf7f0fa63_normal.jpeg", - "profile_interstitial_type": "", - "screen_name": "UN_Spokesperson", - "statuses_count": 25965, - "translator_type": "none", - "url": "https://t.co/QLv5A3GhrU", - "verified": false, - "verified_type": "Government", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739709007156101468" - ], - "editable_until_msecs": "1703617524000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "99909", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 18, - "bookmarked": false, - "created_at": "Tue Dec 26 18:05:24 +0000 2023", - "conversation_id_str": "1739709007156101468", - "display_text_range": [ - 0, - 204 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "un.org/sg/en/content/…", - "expanded_url": "https://www.un.org/sg/en/content/sg/personnel-appointments/2023-12-26/secretary-general-appoints-ms-sigrid-kaag-of-the-netherlands-senior-humanitarian-and-reconstruction-coordinator-for-gaza-pursuant-security-council", - "url": "https://t.co/Yyd57OYesF", - "indices": [ - 181, - 204 - ] - } - ], - "user_mentions": [ - { - "id_str": "811229675758505984", - "name": "António Guterres", - "screen_name": "antonioguterres", - "indices": [ - 1, - 17 - ] - }, - { - "id_str": "933973531968397312", - "name": "Sigrid Kaag", - "screen_name": "SigridKaag", - "indices": [ - 32, - 43 - ] - } - ] - }, - "favorite_count": 303, - "favorited": false, - "full_text": ".@antonioguterres has appointed @SigridKaag as Senior Humanitarian and Reconstruction Coordinator for Gaza pursuant to Security Council Resolution 2720. \n\nMore on her functions 👇👇👇\nhttps://t.co/Yyd57OYesF", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 31, - "reply_count": 65, - "retweet_count": 138, - "retweeted": false, - "user_id_str": "148517828", - "id_str": "1739709007156101468" - } - } - }, - "legacy": { - "bookmark_count": 5, - "bookmarked": false, - "created_at": "Tue Dec 26 19:32:06 +0000 2023", - "conversation_id_str": "1739730827821367571", - "display_text_range": [ - 0, - 187 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "933973531968397312", - "name": "Sigrid Kaag", - "screen_name": "SigridKaag", - "indices": [ - 37, - 48 - ] - } - ] - }, - "favorite_count": 56, - "favorited": false, - "full_text": "Look forward to working closely with @SigridKaag in this new role – and to supporting her efforts to streamline and accelerate the UN’s life-saving work in Gaza. There is no time to lose.", - "is_quote_status": true, - "lang": "en", - "quote_count": 22, - "quoted_status_id_str": "1739709007156101468", - "quoted_status_permalink": { - "url": "https://t.co/e1KUvqM51U", - "expanded": "https://twitter.com/un_spokesperson/status/1739709007156101468", - "display": "twitter.com/un_spokesperso…" - }, - "reply_count": 236, - "retweet_count": 19, - "retweeted": false, - "user_id_str": "1354525155238801413", - "id_str": "1739730827821367571" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739729282660753823", - "sortIndex": "1739819664587882420", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739729282660753823", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/ZYm2ftOmhd", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739729260888125440/AUiYfhNr?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 150, - "width": 213, - "url": "https://pbs.twimg.com/card_img/1739729260888125440/AUiYfhNr?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "Russian forces attacked a railway station full of people in Kherson late on Dec. 26, killing at least one person and wounding four others, Ukrainian officials said.", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "kyivindependent.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 296, - "width": 420, - "url": "https://pbs.twimg.com/card_img/1739729260888125440/AUiYfhNr?format=jpg&name=420x420_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739729260888125440/AUiYfhNr?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 721, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739729260888125440/AUiYfhNr?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "1462548977367359490", - "path": [] - } - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739729260888125440/AUiYfhNr?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739729260888125440/AUiYfhNr?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 70, - "width": 100, - "url": "https://pbs.twimg.com/card_img/1739729260888125440/AUiYfhNr?format=jpg&name=100x100" - }, - "type": "IMAGE" - } - }, - { - "key": "creator", - "value": { - "type": "USER", - "user_value": { - "id_str": "972491543666987008", - "path": [] - } - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 721, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739729260888125440/AUiYfhNr?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 721, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739729260888125440/AUiYfhNr?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "kyivindependent.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739729260888125440/AUiYfhNr?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 35, - "green": 39, - "red": 34 - }, - "percentage": 68.27 - }, - { - "rgb": { - "blue": 115, - "green": 155, - "red": 197 - }, - "percentage": 7.9 - }, - { - "rgb": { - "blue": 19, - "green": 64, - "red": 65 - }, - "percentage": 5.65 - }, - { - "rgb": { - "blue": 49, - "green": 56, - "red": 89 - }, - "percentage": 4.71 - }, - { - "rgb": { - "blue": 60, - "green": 46, - "red": 38 - }, - "percentage": 3.32 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Russian attack on Kherson railway station kills 1, injures 4", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 35, - "green": 39, - "red": 34 - }, - "percentage": 68.27 - }, - { - "rgb": { - "blue": 115, - "green": 155, - "red": 197 - }, - "percentage": 7.9 - }, - { - "rgb": { - "blue": 19, - "green": 64, - "red": 65 - }, - "percentage": 5.65 - }, - { - "rgb": { - "blue": 49, - "green": 56, - "red": 89 - }, - "percentage": 4.71 - }, - { - "rgb": { - "blue": 60, - "green": 46, - "red": 38 - }, - "percentage": 3.32 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 721, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739729260888125440/AUiYfhNr?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739729260888125440/AUiYfhNr?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 35, - "green": 39, - "red": 34 - }, - "percentage": 68.27 - }, - { - "rgb": { - "blue": 115, - "green": 155, - "red": 197 - }, - "percentage": 7.9 - }, - { - "rgb": { - "blue": 19, - "green": 64, - "red": 65 - }, - "percentage": 5.65 - }, - { - "rgb": { - "blue": 49, - "green": 56, - "red": 89 - }, - "percentage": 4.71 - }, - { - "rgb": { - "blue": 60, - "green": 46, - "red": 38 - }, - "percentage": 3.32 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 721, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739729260888125440/AUiYfhNr?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/ZYm2ftOmhd", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 721, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739729260888125440/AUiYfhNr?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/ZYm2ftOmhd", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjo5NzI0OTE1NDM2NjY5ODcwMDg=", - "rest_id": "972491543666987008", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sat Mar 10 15:17:06 +0000 2018", - "default_profile": true, - "default_profile_image": false, - "description": "@KyivIndependent journalist. Kurt Schork Local Reporter and Axel Springer Prize awards. Write me: a.terajima@kyivindependent.com", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com/author/asami-t…", - "expanded_url": "https://kyivindependent.com/author/asami-terajima", - "url": "https://t.co/4WDgeBBsFY", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 1873, - "followers_count": 52731, - "friends_count": 2253, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1155, - "location": "Donbas - Kyiv", - "media_count": 207, - "name": "Asami Terajima", - "normal_followers_count": 52731, - "pinned_tweet_ids_str": [ - "1717561830803952038" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/972491543666987008/1696802473", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1725454100702101504/zeOeSMyY_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "AsamiTerajima", - "statuses_count": 1775, - "translator_type": "none", - "url": "https://t.co/4WDgeBBsFY", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1503165328666378243", - "professional_type": "Creator", - "category": [] - } - } - }, - { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739729282660753823" - ], - "editable_until_msecs": "1703622358000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "77131", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 4, - "bookmarked": false, - "created_at": "Tue Dec 26 19:25:58 +0000 2023", - "conversation_id_str": "1739729282660753823", - "display_text_range": [ - 0, - 254 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "kyivindependent.com/zelensky-russi…", - "expanded_url": "https://kyivindependent.com/zelensky-russia-attacked-kherson-railway-station-evacuation-train-victim-number-unknown-yet/", - "url": "https://t.co/ZYm2ftOmhd", - "indices": [ - 231, - 254 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 322, - "favorited": false, - "full_text": "⚡️Russian attack on Kherson railway station kills 1, injures 4.\n\nRussian forces attacked a railway station full of people in Kherson late on Dec. 26, killing at least one person and wounding four others, Ukrainian officials said.\n\nhttps://t.co/ZYm2ftOmhd", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 10, - "reply_count": 20, - "retweet_count": 99, - "retweeted": false, - "user_id_str": "1462548977367359490", - "id_str": "1739729282660753823" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739729216449511488", - "sortIndex": "1739819664587882419", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739729216449511488", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/j51mQ94L8H", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739729029320572928/xp4ZxKhG?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 150, - "width": 222, - "url": "https://pbs.twimg.com/card_img/1739729029320572928/xp4ZxKhG?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "After being pruned by the Russian invasion, Ukraine's largest supermarket chain, ATB-Market, is fighting to grow back bigger and better. Like the German chains Aldi and Lidl, ATB prioritizes low...", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "kyivindependent.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 320, - "width": 474, - "url": "https://pbs.twimg.com/card_img/1739729029320572928/xp4ZxKhG?format=jpg&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739729029320572928/xp4ZxKhG?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 838, - "width": 1240, - "url": "https://pbs.twimg.com/card_img/1739729029320572928/xp4ZxKhG?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "1462548977367359490", - "path": [] - } - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739729029320572928/xp4ZxKhG?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739729029320572928/xp4ZxKhG?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 68, - "width": 100, - "url": "https://pbs.twimg.com/card_img/1739729029320572928/xp4ZxKhG?format=jpg&name=100x100" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 838, - "width": 1240, - "url": "https://pbs.twimg.com/card_img/1739729029320572928/xp4ZxKhG?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 838, - "width": 1240, - "url": "https://pbs.twimg.com/card_img/1739729029320572928/xp4ZxKhG?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "kyivindependent.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739729029320572928/xp4ZxKhG?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 15, - "green": 13, - "red": 13 - }, - "percentage": 50.03 - }, - { - "rgb": { - "blue": 92, - "green": 44, - "red": 1 - }, - "percentage": 39.81 - }, - { - "rgb": { - "blue": 101, - "green": 118, - "red": 131 - }, - "percentage": 3.9 - }, - { - "rgb": { - "blue": 142, - "green": 94, - "red": 30 - }, - "percentage": 2.21 - }, - { - "rgb": { - "blue": 56, - "green": 73, - "red": 85 - }, - "percentage": 1.17 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Talking business in Ukraine: CEO of Ukraine's largest grocery chain on navigating war, plans for...", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 15, - "green": 13, - "red": 13 - }, - "percentage": 50.03 - }, - { - "rgb": { - "blue": 92, - "green": 44, - "red": 1 - }, - "percentage": 39.81 - }, - { - "rgb": { - "blue": 101, - "green": 118, - "red": 131 - }, - "percentage": 3.9 - }, - { - "rgb": { - "blue": 142, - "green": 94, - "red": 30 - }, - "percentage": 2.21 - }, - { - "rgb": { - "blue": 56, - "green": 73, - "red": 85 - }, - "percentage": 1.17 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 838, - "width": 1240, - "url": "https://pbs.twimg.com/card_img/1739729029320572928/xp4ZxKhG?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739729029320572928/xp4ZxKhG?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 15, - "green": 13, - "red": 13 - }, - "percentage": 50.03 - }, - { - "rgb": { - "blue": 92, - "green": 44, - "red": 1 - }, - "percentage": 39.81 - }, - { - "rgb": { - "blue": 101, - "green": 118, - "red": 131 - }, - "percentage": 3.9 - }, - { - "rgb": { - "blue": 142, - "green": 94, - "red": 30 - }, - "percentage": 2.21 - }, - { - "rgb": { - "blue": 56, - "green": 73, - "red": 85 - }, - "percentage": 1.17 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 838, - "width": 1240, - "url": "https://pbs.twimg.com/card_img/1739729029320572928/xp4ZxKhG?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/j51mQ94L8H", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 838, - "width": 1240, - "url": "https://pbs.twimg.com/card_img/1739729029320572928/xp4ZxKhG?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/j51mQ94L8H", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739729216449511488" - ], - "editable_until_msecs": "1703622342000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "76180", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 5, - "bookmarked": false, - "created_at": "Tue Dec 26 19:25:42 +0000 2023", - "conversation_id_str": "1739729216449511488", - "display_text_range": [ - 0, - 222 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "kyivindependent.com/talking-busine…", - "expanded_url": "https://kyivindependent.com/talking-business-in-ukraine-ceo-of-ukraines-largest-grocery-chain-on-navigating-war-plans-for-future/", - "url": "https://t.co/j51mQ94L8H", - "indices": [ - 199, - 222 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 287, - "favorited": false, - "full_text": "The Kyiv Independent sat down with the CEO of Ukraine's largest grocery chain, ATB-Market, to discuss the company's resilience, expansion plans, and commitment to supporting the Ukrainian community. https://t.co/j51mQ94L8H", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 4, - "retweet_count": 38, - "retweeted": false, - "user_id_str": "1462548977367359490", - "id_str": "1739729216449511488" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739728751909302377", - "sortIndex": "1739819664587882418", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739728751909302377", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjozMDAxMTEwMA==", - "rest_id": "30011100", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Thu Apr 09 16:06:23 +0000 2009", - "default_profile": true, - "default_profile_image": false, - "description": "Chief Foreign-Affairs Correspondent of The Wall Street Journal. Author. My newest book, Our Enemies Will Vanish, is out on Jan. 9. Instagram/Threads @yarotrof", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "yarotrof.com", - "expanded_url": "http://www.yarotrof.com", - "url": "https://t.co/ExAi4dkOQG", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 3509, - "followers_count": 137677, - "friends_count": 3865, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 4159, - "location": "", - "media_count": 1085, - "name": "Yaroslav Trofimov", - "normal_followers_count": 137677, - "pinned_tweet_ids_str": [ - "1737862186549330242" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/30011100/1703172988", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1107348447772975104/mK-YgG6Z_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "yarotrof", - "statuses_count": 25507, - "translator_type": "none", - "url": "https://t.co/ExAi4dkOQG", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1467865587615473671", - "professional_type": "Creator", - "category": [ - { - "id": 957, - "name": "Author", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739728751909302377" - ], - "editable_until_msecs": "1703622231709", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 19:23:51 +0000 2023", - "conversation_id_str": "1739728751909302377", - "display_text_range": [ - 0, - 119 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/BTQE6pcvF8", - "expanded_url": "https://twitter.com/bayraktar_1love/status/1739727721108816284/video/1", - "id_str": "1739727656965304320", - "indices": [ - 96, - 119 - ], - "media_key": "13_1739727656965304320", - "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1739727656965304320/img/QyCw503ThfS6I4ZF.jpg", - "source_status_id_str": "1739727721108816284", - "source_user_id_str": "1356158825825525761", - "type": "video", - "url": "https://t.co/BTQE6pcvF8", - "additional_media_info": { - "monetizable": false, - "source_user": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMzU2MTU4ODI1ODI1NTI1NzYx", - "rest_id": "1356158825825525761", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Mon Feb 01 08:35:09 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Cat owner from Kherson🇺🇦. Here I post mainly about ongoing war in Ukraine and situation in my hometown Kherson, liberated 11/11/2022. (fled from Kherson)", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 5704, - "followers_count": 348394, - "friends_count": 196, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 4936, - "location": "Kherson, Ukraine (fled)", - "media_count": 4555, - "name": "Special Kherson Cat 🐈🇺🇦", - "normal_followers_count": 348394, - "pinned_tweet_ids_str": [ - "1739609110876692840" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1356158825825525761/1678290063", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1523605239458320385/jeI5XBkY_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "bayraktar_1love", - "statuses_count": 6528, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1568680346039762945", - "professional_type": "Creator", - "category": [ - { - "id": 933, - "name": "Media Personality", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - } - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 848, - "w": 480, - "resize": "fit" - }, - "medium": { - "h": 848, - "w": 480, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 385, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 848, - "width": 480, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 30, - 53 - ], - "duration_millis": 33733, - "variants": [ - { - "bitrate": 632000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739727656965304320/vid/avc1/320x564/do41-l18LD8R-V9o.mp4?tag=14" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/amplify_video/1739727656965304320/pl/TQ7vZXF2F3tMFwZf.m3u8?tag=14&container=fmp4" - }, - { - "bitrate": 950000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739727656965304320/vid/avc1/480x848/t5Si6IBhrGk-TMEV.mp4?tag=14" - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1356158825825525761", - "name": "Special Kherson Cat 🐈🇺🇦", - "screen_name": "bayraktar_1love", - "indices": [ - 3, - 19 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/BTQE6pcvF8", - "expanded_url": "https://twitter.com/bayraktar_1love/status/1739727721108816284/video/1", - "id_str": "1739727656965304320", - "indices": [ - 96, - 119 - ], - "media_key": "13_1739727656965304320", - "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1739727656965304320/img/QyCw503ThfS6I4ZF.jpg", - "source_status_id_str": "1739727721108816284", - "source_user_id_str": "1356158825825525761", - "type": "video", - "url": "https://t.co/BTQE6pcvF8", - "additional_media_info": { - "monetizable": false, - "source_user": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMzU2MTU4ODI1ODI1NTI1NzYx", - "rest_id": "1356158825825525761", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Mon Feb 01 08:35:09 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Cat owner from Kherson🇺🇦. Here I post mainly about ongoing war in Ukraine and situation in my hometown Kherson, liberated 11/11/2022. (fled from Kherson)", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 5704, - "followers_count": 348394, - "friends_count": 196, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 4936, - "location": "Kherson, Ukraine (fled)", - "media_count": 4555, - "name": "Special Kherson Cat 🐈🇺🇦", - "normal_followers_count": 348394, - "pinned_tweet_ids_str": [ - "1739609110876692840" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1356158825825525761/1678290063", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1523605239458320385/jeI5XBkY_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "bayraktar_1love", - "statuses_count": 6528, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1568680346039762945", - "professional_type": "Creator", - "category": [ - { - "id": 933, - "name": "Media Personality", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - } - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 848, - "w": 480, - "resize": "fit" - }, - "medium": { - "h": 848, - "w": 480, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 385, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 848, - "width": 480, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 30, - 53 - ], - "duration_millis": 33733, - "variants": [ - { - "bitrate": 632000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739727656965304320/vid/avc1/320x564/do41-l18LD8R-V9o.mp4?tag=14" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/amplify_video/1739727656965304320/pl/TQ7vZXF2F3tMFwZf.m3u8?tag=14&container=fmp4" - }, - { - "bitrate": 950000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739727656965304320/vid/avc1/480x848/t5Si6IBhrGk-TMEV.mp4?tag=14" - } - ] - } - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @bayraktar_1love: /4. Kherson railway station in the first minutes after the Russian strike. https://t.co/BTQE6pcvF8", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 0, - "retweet_count": 63, - "retweeted": false, - "user_id_str": "30011100", - "id_str": "1739728751909302377", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739727721108816284", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMzU2MTU4ODI1ODI1NTI1NzYx", - "rest_id": "1356158825825525761", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Mon Feb 01 08:35:09 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Cat owner from Kherson🇺🇦. Here I post mainly about ongoing war in Ukraine and situation in my hometown Kherson, liberated 11/11/2022. (fled from Kherson)", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 5704, - "followers_count": 348394, - "friends_count": 196, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 4936, - "location": "Kherson, Ukraine (fled)", - "media_count": 4555, - "name": "Special Kherson Cat 🐈🇺🇦", - "normal_followers_count": 348394, - "pinned_tweet_ids_str": [ - "1739609110876692840" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1356158825825525761/1678290063", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1523605239458320385/jeI5XBkY_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "bayraktar_1love", - "statuses_count": 6528, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1568680346039762945", - "professional_type": "Creator", - "category": [ - { - "id": 933, - "name": "Media Personality", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739727721108816284" - ], - "editable_until_msecs": "1703621985000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "35491", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 3, - "bookmarked": false, - "created_at": "Tue Dec 26 19:19:45 +0000 2023", - "conversation_id_str": "1739723445821206842", - "display_text_range": [ - 0, - 74 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/BTQE6pcvF8", - "expanded_url": "https://twitter.com/bayraktar_1love/status/1739727721108816284/video/1", - "id_str": "1739727656965304320", - "indices": [ - 75, - 98 - ], - "media_key": "13_1739727656965304320", - "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1739727656965304320/img/QyCw503ThfS6I4ZF.jpg", - "type": "video", - "url": "https://t.co/BTQE6pcvF8", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 848, - "w": 480, - "resize": "fit" - }, - "medium": { - "h": 848, - "w": 480, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 385, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 848, - "width": 480, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 30, - 53 - ], - "duration_millis": 33733, - "variants": [ - { - "bitrate": 632000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739727656965304320/vid/avc1/320x564/do41-l18LD8R-V9o.mp4?tag=14" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/amplify_video/1739727656965304320/pl/TQ7vZXF2F3tMFwZf.m3u8?tag=14&container=fmp4" - }, - { - "bitrate": 950000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739727656965304320/vid/avc1/480x848/t5Si6IBhrGk-TMEV.mp4?tag=14" - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/BTQE6pcvF8", - "expanded_url": "https://twitter.com/bayraktar_1love/status/1739727721108816284/video/1", - "id_str": "1739727656965304320", - "indices": [ - 75, - 98 - ], - "media_key": "13_1739727656965304320", - "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1739727656965304320/img/QyCw503ThfS6I4ZF.jpg", - "type": "video", - "url": "https://t.co/BTQE6pcvF8", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 848, - "w": 480, - "resize": "fit" - }, - "medium": { - "h": 848, - "w": 480, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 385, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 848, - "width": 480, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 30, - 53 - ], - "duration_millis": 33733, - "variants": [ - { - "bitrate": 632000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739727656965304320/vid/avc1/320x564/do41-l18LD8R-V9o.mp4?tag=14" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/amplify_video/1739727656965304320/pl/TQ7vZXF2F3tMFwZf.m3u8?tag=14&container=fmp4" - }, - { - "bitrate": 950000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/amplify_video/1739727656965304320/vid/avc1/480x848/t5Si6IBhrGk-TMEV.mp4?tag=14" - } - ] - } - } - ] - }, - "favorite_count": 301, - "favorited": false, - "full_text": "/4. Kherson railway station in the first minutes after the Russian strike. https://t.co/BTQE6pcvF8", - "in_reply_to_screen_name": "bayraktar_1love", - "in_reply_to_status_id_str": "1739727123961569424", - "in_reply_to_user_id_str": "1356158825825525761", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 8, - "reply_count": 9, - "retweet_count": 63, - "retweeted": false, - "user_id_str": "1356158825825525761", - "id_str": "1739727721108816284" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739728697391824907", - "sortIndex": "1739819664587882417", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739728697391824907", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo0NzQ1NTExMg==", - "rest_id": "47455112", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Mon Jun 15 21:50:27 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Reporting on foreign policy. Current: Diplomatic Substack, Just Security ed bd. Al-Monitor Politico Foreign Policy alum. lkrozen threads, lkrozen.bsky, at gmail", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "diplomatic.substack.com", - "expanded_url": "https://diplomatic.substack.com/", - "url": "https://t.co/VBjgdai1Rl", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 228, - "followers_count": 174650, - "friends_count": 10007, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 4559, - "location": "Washington, D.C.", - "media_count": 6748, - "name": "Laura Rozen", - "normal_followers_count": 174650, - "pinned_tweet_ids_str": [ - "994000925793628160" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/47455112/1688651088", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/472902811630333952/hvAbmRyN_normal.jpeg", - "profile_interstitial_type": "", - "screen_name": "lrozen", - "statuses_count": 546276, - "translator_type": "none", - "url": "https://t.co/VBjgdai1Rl", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1587536294372155392", - "professional_type": "Creator", - "category": [ - { - "id": 955, - "name": "Journalist", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739728697391824907" - ], - "editable_until_msecs": "1703622218711", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPad", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 19:23:38 +0000 2023", - "conversation_id_str": "1739728697391824907", - "display_text_range": [ - 0, - 139 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "633764653", - "name": "Hanke Bruins Slot", - "screen_name": "HankeBruinsSlot", - "indices": [ - 3, - 19 - ] - }, - { - "id_str": "933973531968397312", - "name": "Sigrid Kaag", - "screen_name": "SigridKaag", - "indices": [ - 56, - 67 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @HankeBruinsSlot: Good news about the appointment of @SigridKaag as UN Senior Coordinator for Humanitarian Aid and Reconstruction Gaza.…", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 26, - "retweeted": false, - "user_id_str": "47455112", - "id_str": "1739728697391824907", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739725662116614376", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo2MzM3NjQ2NTM=", - "rest_id": "633764653", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Thu Jul 12 14:03:43 +0000 2012", - "default_profile": false, - "default_profile_image": false, - "description": "Minister van Buitenlandse Zaken | Dutch Minister of Foreign Affairs | veteraan | CDA | berichtgeving door Hanke en @MinBZ", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "rijksoverheid.nl/regering/bewin…", - "expanded_url": "https://www.rijksoverheid.nl/regering/bewindspersonen/hanke-bruins-slot", - "url": "https://t.co/RWQBFsnvt0", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 523, - "followers_count": 15157, - "friends_count": 617, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 321, - "location": "Utrecht", - "media_count": 511, - "name": "Hanke Bruins Slot", - "normal_followers_count": 15157, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/633764653/1699996575", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1724537882054918144/-4zdWxNS_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "HankeBruinsSlot", - "statuses_count": 2698, - "translator_type": "none", - "url": "https://t.co/RWQBFsnvt0", - "verified": false, - "verified_type": "Government", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739725662116614376" - ], - "editable_until_msecs": "1703621495000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "18266", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 19:11:35 +0000 2023", - "conversation_id_str": "1739725662116614376", - "display_text_range": [ - 0, - 242 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "933973531968397312", - "name": "Sigrid Kaag", - "screen_name": "SigridKaag", - "indices": [ - 35, - 46 - ] - } - ] - }, - "favorite_count": 128, - "favorited": false, - "full_text": "Good news about the appointment of @SigridKaag as UN Senior Coordinator for Humanitarian Aid and Reconstruction Gaza. With her extensive knowledge, and very broad (diplomatic) experience, she is the right person for this challenging role. 1/2", - "is_quote_status": false, - "lang": "en", - "quote_count": 4, - "reply_count": 17, - "retweet_count": 26, - "retweeted": false, - "user_id_str": "633764653", - "id_str": "1739725662116614376" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739726560637116923", - "sortIndex": "1739819664587882416", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739726560637116923", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDEwNjQ3Ng==", - "rest_id": "14106476", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sun Mar 09 08:15:00 +0000 2008", - "default_profile": false, - "default_profile_image": false, - "description": "The award-winning Kyiv Post is the top international source of English-language news about Ukraine since 1995.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "kyivpost.com", - "expanded_url": "http://kyivpost.com/", - "url": "https://t.co/lHlutZvoAu", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 4940, - "followers_count": 394083, - "friends_count": 1632, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 6669, - "location": "#Kyiv, #Ukraine", - "media_count": 30642, - "name": "KyivPost", - "normal_followers_count": 394083, - "pinned_tweet_ids_str": [ - "1737813935594565787" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14106476/1703492324", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1592474120477982720/cLYnDbg1_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivPost", - "statuses_count": 73335, - "translator_type": "none", - "url": "https://t.co/lHlutZvoAu", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739726560637116923" - ], - "editable_until_msecs": "1703621709000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "26883", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 1, - "bookmarked": false, - "created_at": "Tue Dec 26 19:15:09 +0000 2023", - "conversation_id_str": "1739726560637116923", - "display_text_range": [ - 0, - 272 - ], - "entities": { - "hashtags": [ - { - "indices": [ - 48, - 56 - ], - "text": "Kherson" - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 50, - "favorited": false, - "full_text": "❗️Russian forces shelled the railway station in #Kherson and an evacuation train, which was expected to transport around 140 civilians. \n\n\"All necessary services are already operating at the scene. The exact number of injured is being determined,\" President Zelensky said.", - "is_quote_status": false, - "lang": "en", - "quote_count": 1, - "reply_count": 8, - "retweet_count": 26, - "retweeted": false, - "user_id_str": "14106476", - "id_str": "1739726560637116923" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739725283559883153", - "sortIndex": "1739819664587882415", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739725283559883153", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo4ODQ1NzgxODczOTI1NDQ3Njk=", - "rest_id": "884578187392544769", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Tue Jul 11 01:00:49 +0000 2017", - "default_profile": true, - "default_profile_image": false, - "description": "Former CIA Clandestine Service. Now @SpycraftEnt, #NAFO fella. Sometimes writes. Good father, decent husband, excellent dog owner.", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 281557, - "followers_count": 247265, - "friends_count": 2551, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 2418, - "location": "Washington, DC", - "media_count": 2202, - "name": "John Sipher", - "normal_followers_count": 247265, - "pinned_tweet_ids_str": [ - "1487082405970288646" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/884578187392544769/1695478628", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1589241979698925568/E7yUu08y_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "john_sipher", - "statuses_count": 82474, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739725283559883153" - ], - "editable_until_msecs": "1703621404790", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 19:10:04 +0000 2023", - "conversation_id_str": "1739725283559883153", - "display_text_range": [ - 0, - 140 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "14075928", - "name": "The Onion", - "screen_name": "TheOnion", - "indices": [ - 3, - 12 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @TheOnion: Leonard Bernstein’s Children Release Statement Confirming Father Wore Big Prosthetic Nose In Real Life https://t.co/v1SAmYyXB…", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 42, - "retweeted": false, - "user_id_str": "884578187392544769", - "id_str": "1739725283559883153", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739707707081339254", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDA3NTkyOA==", - "rest_id": "14075928", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Square", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Tue Mar 04 02:48:37 +0000 2008", - "default_profile": false, - "default_profile_image": false, - "description": "America's Finest News Source.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "theonion.com", - "expanded_url": "https://www.theonion.com/", - "url": "https://t.co/McSMshhidB", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 3, - "followers_count": 11641871, - "friends_count": 6, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 63640, - "location": "", - "media_count": 58801, - "name": "The Onion", - "normal_followers_count": 11641871, - "pinned_tweet_ids_str": [ - "969621896097607685" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/14075928/1617209332", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1517492889852461056/bEnqsvVR_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "TheOnion", - "statuses_count": 104223, - "translator_type": "none", - "url": "https://t.co/McSMshhidB", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739707707081339254" - ], - "editable_until_msecs": "1703617214000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "155518", - "state": "EnabledWithCount" - }, - "source": "Sprout Social", - "legacy": { - "bookmark_count": 9, - "bookmarked": false, - "created_at": "Tue Dec 26 18:00:14 +0000 2023", - "conversation_id_str": "1739707707081339254", - "display_text_range": [ - 0, - 126 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/qrWeurPM8L", - "expanded_url": "https://twitter.com/TheOnion/status/1739707707081339254/photo/1", - "id_str": "1739707686034239488", - "indices": [ - 127, - 150 - ], - "media_key": "3_1739707686034239488", - "media_url_https": "https://pbs.twimg.com/media/GCSu7E8WcAAUzBI.jpg", - "type": "photo", - "url": "https://t.co/qrWeurPM8L", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 1125, - "w": 2000, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1125, - "width": 2000, - "focus_rects": [ - { - "x": 0, - "y": 5, - "w": 2000, - "h": 1120 - }, - { - "x": 875, - "y": 0, - "w": 1125, - "h": 1125 - }, - { - "x": 1013, - "y": 0, - "w": 987, - "h": 1125 - }, - { - "x": 1269, - "y": 0, - "w": 563, - "h": 1125 - }, - { - "x": 0, - "y": 0, - "w": 2000, - "h": 1125 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "theonion.com/1850748304", - "expanded_url": "http://theonion.com/1850748304", - "url": "https://t.co/v1SAmYyXB6", - "indices": [ - 103, - 126 - ] - } - ], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/qrWeurPM8L", - "expanded_url": "https://twitter.com/TheOnion/status/1739707707081339254/photo/1", - "id_str": "1739707686034239488", - "indices": [ - 127, - 150 - ], - "media_key": "3_1739707686034239488", - "media_url_https": "https://pbs.twimg.com/media/GCSu7E8WcAAUzBI.jpg", - "type": "photo", - "url": "https://t.co/qrWeurPM8L", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [] - }, - "medium": { - "faces": [] - }, - "small": { - "faces": [] - }, - "orig": { - "faces": [] - } - }, - "sizes": { - "large": { - "h": 1125, - "w": 2000, - "resize": "fit" - }, - "medium": { - "h": 675, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 383, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 1125, - "width": 2000, - "focus_rects": [ - { - "x": 0, - "y": 5, - "w": 2000, - "h": 1120 - }, - { - "x": 875, - "y": 0, - "w": 1125, - "h": 1125 - }, - { - "x": 1013, - "y": 0, - "w": 987, - "h": 1125 - }, - { - "x": 1269, - "y": 0, - "w": 563, - "h": 1125 - }, - { - "x": 0, - "y": 0, - "w": 2000, - "h": 1125 - } - ] - } - } - ] - }, - "favorite_count": 583, - "favorited": false, - "full_text": "Leonard Bernstein’s Children Release Statement Confirming Father Wore Big Prosthetic Nose In Real Life https://t.co/v1SAmYyXB6 https://t.co/qrWeurPM8L", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 4, - "reply_count": 9, - "retweet_count": 42, - "retweeted": false, - "user_id_str": "14075928", - "id_str": "1739707707081339254" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739721246508548339", - "sortIndex": "1739819664587882414", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739721246508548339", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyMjc5OTI1Nw==", - "rest_id": "22799257", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Wed Mar 04 16:58:21 +0000 2009", - "default_profile": true, - "default_profile_image": false, - "description": "Foreign Correspondent for @TheEconomist | Covering Ukraine, Russia, Belarus | Opinions strictly my own | DM for Signal", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "olliecarroll.uk", - "expanded_url": "http://www.olliecarroll.uk", - "url": "https://t.co/UmmY5egdjU", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 6264, - "followers_count": 143412, - "friends_count": 3059, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 4175, - "location": "Ukraine", - "media_count": 2230, - "name": "Oliver Carroll", - "normal_followers_count": 143412, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/22799257/1434115079", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1541040357177180160/OHKDGhmR_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "olliecarroll", - "statuses_count": 18233, - "translator_type": "none", - "url": "https://t.co/UmmY5egdjU", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1542570582226702338", - "professional_type": "Creator", - "category": [ - { - "id": 955, - "name": "Journalist", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "card": { - "rest_id": "https://t.co/vUwqAXIvLK", - "legacy": { - "binding_values": [ - { - "key": "app_star_rating", - "value": { - "string_value": "4.12326", - "type": "STRING" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 144, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1739720293633929216/aHRwB4-a?format=jpg&name=144x144_2" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "Провів сьогодні Ставку – кілька годин. І майже вся була присвячена виробництву нашої зброї в наступному році. По всім елементам – від артилерії до дронів і ракет. По кожному пункту – детальна...", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "t.me", - "type": "STRING" - } - }, - { - "key": "app_is_free", - "value": { - "string_value": "true", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 180, - "width": 180, - "url": "https://pbs.twimg.com/card_img/1739720293633929216/aHRwB4-a?format=jpg&name=280x280_2" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 180, - "width": 320, - "url": "https://pbs.twimg.com/card_img/1739720293633929216/aHRwB4-a?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "1689053928", - "path": [] - } - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 100, - "width": 100, - "url": "https://pbs.twimg.com/card_img/1739720293633929216/aHRwB4-a?format=jpg&name=100x100_2" - }, - "type": "IMAGE" - } - }, - { - "key": "app_num_ratings", - "value": { - "string_value": "179,792", - "type": "STRING" - } - }, - { - "key": "app_price_amount", - "value": { - "string_value": "0.0", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 180, - "width": 320, - "url": "https://pbs.twimg.com/card_img/1739720293633929216/aHRwB4-a?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "t.me", - "type": "STRING" - } - }, - { - "key": "app_name", - "value": { - "string_value": "Telegram Messenger", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 15, - "green": 21, - "red": 25 - }, - "percentage": 91.45 - }, - { - "rgb": { - "blue": 94, - "green": 112, - "red": 117 - }, - "percentage": 4.03 - }, - { - "rgb": { - "blue": 189, - "green": 210, - "red": 184 - }, - "percentage": 1.25 - }, - { - "rgb": { - "blue": 38, - "green": 67, - "red": 90 - }, - "percentage": 0.97 - }, - { - "rgb": { - "blue": 43, - "green": 9, - "red": 4 - }, - "percentage": 0.87 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Zelenskiy / Official", - "type": "STRING" - } - }, - { - "key": "app_price_currency", - "value": { - "string_value": "USD", - "type": "STRING" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/vUwqAXIvLK", - "type": "STRING" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary", - "url": "https://t.co/vUwqAXIvLK", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjg5MDUzOTI4", - "rest_id": "1689053928", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Wed Aug 21 19:47:05 +0000 2013", - "default_profile": true, - "default_profile_image": false, - "description": "Simple, fast, secure – and synced across all your devices. One of the top 5 most-downloaded apps in the world with over 800 million active users.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "telegram.org", - "expanded_url": "http://telegram.org", - "url": "https://t.co/zHAc9lS7Jy", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 7266, - "followers_count": 1527093, - "friends_count": 115, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 4323, - "location": "", - "media_count": 3688, - "name": "Telegram Messenger", - "normal_followers_count": 1527093, - "pinned_tweet_ids_str": [ - "1730247523166458110" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1689053928/1392066683", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1183117696730390529/LRDASku7_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "telegram", - "statuses_count": 49531, - "translator_type": "none", - "url": "https://t.co/zHAc9lS7Jy", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1649119696312991755", - "professional_type": "Business", - "category": [ - { - "id": 962, - "name": "Mobile Application", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739721246508548339" - ], - "editable_until_msecs": "1703620442000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "48897", - "state": "EnabledWithCount" - }, - "source": "Twitter for Mac", - "legacy": { - "bookmark_count": 4, - "bookmarked": false, - "created_at": "Tue Dec 26 18:54:02 +0000 2023", - "conversation_id_str": "1739721246508548339", - "display_text_range": [ - 0, - 211 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "t.me/V_Zelenskiy_of…", - "expanded_url": "https://t.me/V_Zelenskiy_official/9026", - "url": "https://t.co/vUwqAXIvLK", - "indices": [ - 188, - 211 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 195, - "favorited": false, - "full_text": "Zelensky reports that Russian army struck an evacuation train in Kherson station earlier today. “The emergency services are working at the scene. Number of victims yet to be confirmed.” \n\nhttps://t.co/vUwqAXIvLK", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 9, - "reply_count": 6, - "retweet_count": 100, - "retweeted": false, - "user_id_str": "22799257", - "id_str": "1739721246508548339" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739720070446686630", - "sortIndex": "1739819664587882413", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739720070446686630", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDg5ODQwNjYz", - "rest_id": "1489840663", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Fri Jun 07 08:02:05 +0000 2013", - "default_profile": false, - "default_profile_image": false, - "description": "Investigative reporter @TPM. @WGAEast member. Get in touch at joshk@talkingpointsmemo.com. Signal: +1 917 202 0495", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "talkingpointsmemo.com", - "expanded_url": "https://talkingpointsmemo.com/", - "url": "https://t.co/AzDUWabdQo", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 12402, - "followers_count": 7539, - "friends_count": 3901, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 201, - "location": "New York, NY", - "media_count": 143, - "name": "Josh Kovensky", - "normal_followers_count": 7539, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1489840663/1528704785", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1207634283210399745/vSLBd0JX_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "JoshKovensky", - "statuses_count": 5929, - "translator_type": "none", - "url": "https://t.co/AzDUWabdQo", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/aRiUDtvFG4", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 150, - "width": 268, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "President Trump announces a plan to revolutionize higher education by shifting excessively large endowments from private universities toward a new institution called the American Academy.", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.donaldjtrump.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 320, - "width": 571, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 1062, - "width": 1896, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 81, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 1062, - "width": 1896, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 1062, - "width": 1896, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "donaldjtrump.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 42, - "green": 17, - "red": 13 - }, - "percentage": 36.24 - }, - { - "rgb": { - "blue": 147, - "green": 131, - "red": 126 - }, - "percentage": 18.15 - }, - { - "rgb": { - "blue": 34, - "green": 42, - "red": 55 - }, - "percentage": 17.18 - }, - { - "rgb": { - "blue": 22, - "green": 17, - "red": 88 - }, - "percentage": 11.7 - }, - { - "rgb": { - "blue": 92, - "green": 105, - "red": 129 - }, - "percentage": 8.45 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Agenda47: The American Academy | Donald J. Trump For President 2024", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 42, - "green": 17, - "red": 13 - }, - "percentage": 36.24 - }, - { - "rgb": { - "blue": 147, - "green": 131, - "red": 126 - }, - "percentage": 18.15 - }, - { - "rgb": { - "blue": 34, - "green": 42, - "red": 55 - }, - "percentage": 17.18 - }, - { - "rgb": { - "blue": 22, - "green": 17, - "red": 88 - }, - "percentage": 11.7 - }, - { - "rgb": { - "blue": 92, - "green": 105, - "red": 129 - }, - "percentage": 8.45 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 1062, - "width": 1896, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 42, - "green": 17, - "red": 13 - }, - "percentage": 36.24 - }, - { - "rgb": { - "blue": 147, - "green": 131, - "red": 126 - }, - "percentage": 18.15 - }, - { - "rgb": { - "blue": 34, - "green": 42, - "red": 55 - }, - "percentage": 17.18 - }, - { - "rgb": { - "blue": 22, - "green": 17, - "red": 88 - }, - "percentage": 11.7 - }, - { - "rgb": { - "blue": 92, - "green": 105, - "red": 129 - }, - "percentage": 8.45 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 1062, - "width": 1896, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/aRiUDtvFG4", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 1062, - "width": 1896, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/aRiUDtvFG4", - "user_refs_results": [] - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739720070446686630" - ], - "editable_until_msecs": "1703620161887", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 18:49:21 +0000 2023", - "conversation_id_str": "1739720070446686630", - "display_text_range": [ - 0, - 139 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "18824442", - "name": "David Burbach (also @dburbach Bluesky)", - "screen_name": "dburbach", - "indices": [ - 3, - 12 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @dburbach: One Trump \"Day 1 Dictator\" pledge I missed is to expropriate the big endowments of private universities to fund an \"American…", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 0, - "retweet_count": 52, - "retweeted": false, - "user_id_str": "1489840663", - "id_str": "1739720070446686630", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739697243618230448", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxODgyNDQ0Mg==", - "rest_id": "18824442", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Sat Jan 10 02:39:29 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Prof of International Relations & National Security. Space, nukes, civil-military. Cats. At Naval War College but only personal tweets; do NOT represent DOD", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 89313, - "followers_count": 14427, - "friends_count": 1034, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 282, - "location": "Rhode Island, USA", - "media_count": 6149, - "name": "David Burbach (also @dburbach Bluesky)", - "normal_followers_count": 14427, - "pinned_tweet_ids_str": [ - "958081911506833410" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/18824442/1659652499", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1322573800639238150/D4gd0g2I_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "dburbach", - "statuses_count": 79044, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/aRiUDtvFG4", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 150, - "width": 268, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "President Trump announces a plan to revolutionize higher education by shifting excessively large endowments from private universities toward a new institution called the American Academy.", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.donaldjtrump.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 320, - "width": 571, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 1062, - "width": 1896, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 81, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 1062, - "width": 1896, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 1062, - "width": 1896, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "donaldjtrump.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 42, - "green": 17, - "red": 13 - }, - "percentage": 36.24 - }, - { - "rgb": { - "blue": 147, - "green": 131, - "red": 126 - }, - "percentage": 18.15 - }, - { - "rgb": { - "blue": 34, - "green": 42, - "red": 55 - }, - "percentage": 17.18 - }, - { - "rgb": { - "blue": 22, - "green": 17, - "red": 88 - }, - "percentage": 11.7 - }, - { - "rgb": { - "blue": 92, - "green": 105, - "red": 129 - }, - "percentage": 8.45 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Agenda47: The American Academy | Donald J. Trump For President 2024", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 42, - "green": 17, - "red": 13 - }, - "percentage": 36.24 - }, - { - "rgb": { - "blue": 147, - "green": 131, - "red": 126 - }, - "percentage": 18.15 - }, - { - "rgb": { - "blue": 34, - "green": 42, - "red": 55 - }, - "percentage": 17.18 - }, - { - "rgb": { - "blue": 22, - "green": 17, - "red": 88 - }, - "percentage": 11.7 - }, - { - "rgb": { - "blue": 92, - "green": 105, - "red": 129 - }, - "percentage": 8.45 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 1062, - "width": 1896, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 42, - "green": 17, - "red": 13 - }, - "percentage": 36.24 - }, - { - "rgb": { - "blue": 147, - "green": 131, - "red": 126 - }, - "percentage": 18.15 - }, - { - "rgb": { - "blue": 34, - "green": 42, - "red": 55 - }, - "percentage": 17.18 - }, - { - "rgb": { - "blue": 22, - "green": 17, - "red": 88 - }, - "percentage": 11.7 - }, - { - "rgb": { - "blue": 92, - "green": 105, - "red": 129 - }, - "percentage": 8.45 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 1062, - "width": 1896, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/aRiUDtvFG4", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 1062, - "width": 1896, - "url": "https://pbs.twimg.com/card_img/1738736351552368640/gZ-cUjyz?format=png&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/aRiUDtvFG4", - "user_refs_results": [] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739697243618230448" - ], - "editable_until_msecs": "1703614719000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "105642", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 15, - "bookmarked": false, - "created_at": "Tue Dec 26 17:18:39 +0000 2023", - "conversation_id_str": "1739697243618230448", - "display_text_range": [ - 0, - 198 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "donaldjtrump.com/agenda47/agend…", - "expanded_url": "https://www.donaldjtrump.com/agenda47/agenda47-the-american-academy", - "url": "https://t.co/aRiUDtvFG4", - "indices": [ - 175, - 198 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 109, - "favorited": false, - "full_text": "One Trump \"Day 1 Dictator\" pledge I missed is to expropriate the big endowments of private universities to fund an \"American Academy\" that would grant online degrees for free\nhttps://t.co/aRiUDtvFG4", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 20, - "reply_count": 40, - "retweet_count": 52, - "retweeted": false, - "user_id_str": "18824442", - "id_str": "1739697243618230448" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739718217956815337", - "sortIndex": "1739819664587882412", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739718217956815337", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/RB40eaMa8D", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1737869236863721472/6SrAoCYW?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 150, - "width": 225, - "url": "https://pbs.twimg.com/card_img/1737869236863721472/6SrAoCYW?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "Nova Poshta, Ukraine’s largest private delivery company and domestic analog to FedEx or DHL — stands head and shoulders above all other private parcel firms in Ukraine. When Russia’s invasion in 2022...", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "kyivindependent.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 320, - "width": 480, - "url": "https://pbs.twimg.com/card_img/1737869236863721472/6SrAoCYW?format=jpg&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737869236863721472/6SrAoCYW?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 826, - "width": 1240, - "url": "https://pbs.twimg.com/card_img/1737869236863721472/6SrAoCYW?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "1462548977367359490", - "path": [] - } - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1737869236863721472/6SrAoCYW?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1737869236863721472/6SrAoCYW?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 67, - "width": 100, - "url": "https://pbs.twimg.com/card_img/1737869236863721472/6SrAoCYW?format=jpg&name=100x100" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 826, - "width": 1240, - "url": "https://pbs.twimg.com/card_img/1737869236863721472/6SrAoCYW?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 826, - "width": 1240, - "url": "https://pbs.twimg.com/card_img/1737869236863721472/6SrAoCYW?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "kyivindependent.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737869236863721472/6SrAoCYW?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 22, - "green": 37, - "red": 29 - }, - "percentage": 35.28 - }, - { - "rgb": { - "blue": 155, - "green": 167, - "red": 179 - }, - "percentage": 26.25 - }, - { - "rgb": { - "blue": 56, - "green": 61, - "red": 191 - }, - "percentage": 4.54 - }, - { - "rgb": { - "blue": 38, - "green": 59, - "red": 84 - }, - "percentage": 3.75 - }, - { - "rgb": { - "blue": 20, - "green": 63, - "red": 52 - }, - "percentage": 3.63 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Ukraine’s largest parcel delivery service wants to conquer Europe: Interview with co-owner of Nova...", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 22, - "green": 37, - "red": 29 - }, - "percentage": 35.28 - }, - { - "rgb": { - "blue": 155, - "green": 167, - "red": 179 - }, - "percentage": 26.25 - }, - { - "rgb": { - "blue": 56, - "green": 61, - "red": 191 - }, - "percentage": 4.54 - }, - { - "rgb": { - "blue": 38, - "green": 59, - "red": 84 - }, - "percentage": 3.75 - }, - { - "rgb": { - "blue": 20, - "green": 63, - "red": 52 - }, - "percentage": 3.63 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 826, - "width": 1240, - "url": "https://pbs.twimg.com/card_img/1737869236863721472/6SrAoCYW?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1737869236863721472/6SrAoCYW?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 22, - "green": 37, - "red": 29 - }, - "percentage": 35.28 - }, - { - "rgb": { - "blue": 155, - "green": 167, - "red": 179 - }, - "percentage": 26.25 - }, - { - "rgb": { - "blue": 56, - "green": 61, - "red": 191 - }, - "percentage": 4.54 - }, - { - "rgb": { - "blue": 38, - "green": 59, - "red": 84 - }, - "percentage": 3.75 - }, - { - "rgb": { - "blue": 20, - "green": 63, - "red": 52 - }, - "percentage": 3.63 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 826, - "width": 1240, - "url": "https://pbs.twimg.com/card_img/1737869236863721472/6SrAoCYW?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/RB40eaMa8D", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 826, - "width": 1240, - "url": "https://pbs.twimg.com/card_img/1737869236863721472/6SrAoCYW?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/RB40eaMa8D", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739718217956815337" - ], - "editable_until_msecs": "1703619720000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "92613", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 4, - "bookmarked": false, - "created_at": "Tue Dec 26 18:42:00 +0000 2023", - "conversation_id_str": "1739718217956815337", - "display_text_range": [ - 0, - 141 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "kyivindependent.com/ukraines-large…", - "expanded_url": "https://kyivindependent.com/ukraines-largest-parcel-delivery-service-wants-to-conquer-europe-interview-with-co-owner-of-nova-poshta/", - "url": "https://t.co/RB40eaMa8D", - "indices": [ - 118, - 141 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 445, - "favorited": false, - "full_text": "Nova Poshta, Ukraine’s largest private delivery company and domestic analog to FedEx or DHL, wants to conquer Europe. https://t.co/RB40eaMa8D", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 8, - "retweet_count": 48, - "retweeted": false, - "user_id_str": "1462548977367359490", - "id_str": "1739718217956815337" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "tweet-1739718083294515305", - "sortIndex": "1739819664587882411", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739718083294515305", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjozNzI1MzYxMDE=", - "rest_id": "372536101", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Mon Sep 12 23:21:14 +0000 2011", - "default_profile": false, - "default_profile_image": false, - "description": "@CNN reporter covering the Pentagon and national security. @natashabertrand on Threads. natasha.bertrand@cnn.com. DM for Signal.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "cnn.com/profiles/natas…", - "expanded_url": "https://www.cnn.com/profiles/natasha-bertrand-profile", - "url": "https://t.co/JOmxXcguGR", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 37179, - "followers_count": 773140, - "friends_count": 6590, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 8890, - "location": "Washington, DC", - "media_count": 2426, - "name": "Natasha Bertrand", - "normal_followers_count": 773140, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/372536101/1689324268", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1507284795486879753/uMQ_pbsq_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "NatashaBertrand", - "statuses_count": 32365, - "translator_type": "regular", - "url": "https://t.co/JOmxXcguGR", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739718083294515305" - ], - "editable_until_msecs": "1703619688113", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 18:41:28 +0000 2023", - "conversation_id_str": "1739718083294515305", - "display_text_range": [ - 0, - 127 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/Qg7OAD9jTM", - "expanded_url": "https://twitter.com/ReutersUS/status/1739715544889065886/photo/1", - "id_str": "1739715542934507520", - "indices": [ - 104, - 127 - ], - "media_key": "3_1739715542934507520", - "media_url_https": "https://pbs.twimg.com/media/GCS2EaLWUAA1-Yq.jpg", - "source_status_id_str": "1739715544889065886", - "source_user_id_str": "15108530", - "type": "photo", - "url": "https://t.co/Qg7OAD9jTM", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 594, - "y": 262, - "h": 66, - "w": 66 - }, - { - "x": 1026, - "y": 294, - "h": 56, - "w": 56 - }, - { - "x": 332, - "y": 349, - "h": 57, - "w": 57 - } - ] - }, - "medium": { - "faces": [ - { - "x": 594, - "y": 262, - "h": 66, - "w": 66 - }, - { - "x": 1026, - "y": 294, - "h": 56, - "w": 56 - }, - { - "x": 332, - "y": 349, - "h": 57, - "w": 57 - } - ] - }, - "small": { - "faces": [ - { - "x": 336, - "y": 148, - "h": 37, - "w": 37 - }, - { - "x": 581, - "y": 166, - "h": 31, - "w": 31 - }, - { - "x": 188, - "y": 197, - "h": 32, - "w": 32 - } - ] - }, - "orig": { - "faces": [ - { - "x": 594, - "y": 262, - "h": 66, - "w": 66 - }, - { - "x": 1026, - "y": 294, - "h": 56, - "w": 56 - }, - { - "x": 332, - "y": 349, - "h": 57, - "w": 57 - } - ] - } - }, - "sizes": { - "large": { - "h": 628, - "w": 1200, - "resize": "fit" - }, - "medium": { - "h": 628, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 356, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 628, - "width": 1200, - "focus_rects": [ - { - "x": 79, - "y": 0, - "w": 1121, - "h": 628 - }, - { - "x": 572, - "y": 0, - "w": 628, - "h": 628 - }, - { - "x": 649, - "y": 0, - "w": 551, - "h": 628 - }, - { - "x": 886, - "y": 0, - "w": 314, - "h": 628 - }, - { - "x": 0, - "y": 0, - "w": 1200, - "h": 628 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "reut.rs/47dnzeg", - "expanded_url": "http://reut.rs/47dnzeg", - "url": "https://t.co/kxPSrmDSCv", - "indices": [ - 80, - 103 - ] - } - ], - "user_mentions": [ - { - "id_str": "15108530", - "name": "Reuters U.S. News", - "screen_name": "ReutersUS", - "indices": [ - 3, - 13 - ] - } - ] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/Qg7OAD9jTM", - "expanded_url": "https://twitter.com/ReutersUS/status/1739715544889065886/photo/1", - "id_str": "1739715542934507520", - "indices": [ - 104, - 127 - ], - "media_key": "3_1739715542934507520", - "media_url_https": "https://pbs.twimg.com/media/GCS2EaLWUAA1-Yq.jpg", - "source_status_id_str": "1739715544889065886", - "source_user_id_str": "15108530", - "type": "photo", - "url": "https://t.co/Qg7OAD9jTM", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 594, - "y": 262, - "h": 66, - "w": 66 - }, - { - "x": 1026, - "y": 294, - "h": 56, - "w": 56 - }, - { - "x": 332, - "y": 349, - "h": 57, - "w": 57 - } - ] - }, - "medium": { - "faces": [ - { - "x": 594, - "y": 262, - "h": 66, - "w": 66 - }, - { - "x": 1026, - "y": 294, - "h": 56, - "w": 56 - }, - { - "x": 332, - "y": 349, - "h": 57, - "w": 57 - } - ] - }, - "small": { - "faces": [ - { - "x": 336, - "y": 148, - "h": 37, - "w": 37 - }, - { - "x": 581, - "y": 166, - "h": 31, - "w": 31 - }, - { - "x": 188, - "y": 197, - "h": 32, - "w": 32 - } - ] - }, - "orig": { - "faces": [ - { - "x": 594, - "y": 262, - "h": 66, - "w": 66 - }, - { - "x": 1026, - "y": 294, - "h": 56, - "w": 56 - }, - { - "x": 332, - "y": 349, - "h": 57, - "w": 57 - } - ] - } - }, - "sizes": { - "large": { - "h": 628, - "w": 1200, - "resize": "fit" - }, - "medium": { - "h": 628, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 356, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 628, - "width": 1200, - "focus_rects": [ - { - "x": 79, - "y": 0, - "w": 1121, - "h": 628 - }, - { - "x": 572, - "y": 0, - "w": 628, - "h": 628 - }, - { - "x": 649, - "y": 0, - "w": 551, - "h": 628 - }, - { - "x": 886, - "y": 0, - "w": 314, - "h": 628 - }, - { - "x": 0, - "y": 0, - "w": 1200, - "h": 628 - } - ] - } - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "RT @ReutersUS: Exclusive: Pakistan deported Afghans waiting for US resettlement https://t.co/kxPSrmDSCv https://t.co/Qg7OAD9jTM", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 0, - "retweet_count": 24, - "retweeted": false, - "user_id_str": "372536101", - "id_str": "1739718083294515305", - "retweeted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739715544889065886", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTEwODUzMA==", - "rest_id": "15108530", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Fri Jun 13 15:54:21 +0000 2008", - "default_profile": false, - "default_profile_image": false, - "description": "Top news from the United States.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "reut.rs/19LrEHD", - "expanded_url": "http://reut.rs/19LrEHD", - "url": "http://t.co/KnhmNHIJNx", - "indices": [ - 0, - 22 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 8, - "followers_count": 120044, - "friends_count": 320, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 3872, - "location": "", - "media_count": 143799, - "name": "Reuters U.S. News", - "normal_followers_count": 120044, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/15108530/1426173752", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/877263299439493121/4Otn8oxB_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "ReutersUS", - "statuses_count": 245596, - "translator_type": "none", - "url": "http://t.co/KnhmNHIJNx", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739715544889065886" - ], - "editable_until_msecs": "1703619082000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "20203", - "state": "EnabledWithCount" - }, - "source": "trueanthem_pro2", - "legacy": { - "bookmark_count": 1, - "bookmarked": false, - "created_at": "Tue Dec 26 18:31:22 +0000 2023", - "conversation_id_str": "1739715544889065886", - "display_text_range": [ - 0, - 88 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/Qg7OAD9jTM", - "expanded_url": "https://twitter.com/ReutersUS/status/1739715544889065886/photo/1", - "id_str": "1739715542934507520", - "indices": [ - 89, - 112 - ], - "media_key": "3_1739715542934507520", - "media_url_https": "https://pbs.twimg.com/media/GCS2EaLWUAA1-Yq.jpg", - "type": "photo", - "url": "https://t.co/Qg7OAD9jTM", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 594, - "y": 262, - "h": 66, - "w": 66 - }, - { - "x": 1026, - "y": 294, - "h": 56, - "w": 56 - }, - { - "x": 332, - "y": 349, - "h": 57, - "w": 57 - } - ] - }, - "medium": { - "faces": [ - { - "x": 594, - "y": 262, - "h": 66, - "w": 66 - }, - { - "x": 1026, - "y": 294, - "h": 56, - "w": 56 - }, - { - "x": 332, - "y": 349, - "h": 57, - "w": 57 - } - ] - }, - "small": { - "faces": [ - { - "x": 336, - "y": 148, - "h": 37, - "w": 37 - }, - { - "x": 581, - "y": 166, - "h": 31, - "w": 31 - }, - { - "x": 188, - "y": 197, - "h": 32, - "w": 32 - } - ] - }, - "orig": { - "faces": [ - { - "x": 594, - "y": 262, - "h": 66, - "w": 66 - }, - { - "x": 1026, - "y": 294, - "h": 56, - "w": 56 - }, - { - "x": 332, - "y": 349, - "h": 57, - "w": 57 - } - ] - } - }, - "sizes": { - "large": { - "h": 628, - "w": 1200, - "resize": "fit" - }, - "medium": { - "h": 628, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 356, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 628, - "width": 1200, - "focus_rects": [ - { - "x": 79, - "y": 0, - "w": 1121, - "h": 628 - }, - { - "x": 572, - "y": 0, - "w": 628, - "h": 628 - }, - { - "x": 649, - "y": 0, - "w": 551, - "h": 628 - }, - { - "x": 886, - "y": 0, - "w": 314, - "h": 628 - }, - { - "x": 0, - "y": 0, - "w": 1200, - "h": 628 - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "reut.rs/47dnzeg", - "expanded_url": "http://reut.rs/47dnzeg", - "url": "https://t.co/kxPSrmDSCv", - "indices": [ - 65, - 88 - ] - } - ], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/Qg7OAD9jTM", - "expanded_url": "https://twitter.com/ReutersUS/status/1739715544889065886/photo/1", - "id_str": "1739715542934507520", - "indices": [ - 89, - 112 - ], - "media_key": "3_1739715542934507520", - "media_url_https": "https://pbs.twimg.com/media/GCS2EaLWUAA1-Yq.jpg", - "type": "photo", - "url": "https://t.co/Qg7OAD9jTM", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 594, - "y": 262, - "h": 66, - "w": 66 - }, - { - "x": 1026, - "y": 294, - "h": 56, - "w": 56 - }, - { - "x": 332, - "y": 349, - "h": 57, - "w": 57 - } - ] - }, - "medium": { - "faces": [ - { - "x": 594, - "y": 262, - "h": 66, - "w": 66 - }, - { - "x": 1026, - "y": 294, - "h": 56, - "w": 56 - }, - { - "x": 332, - "y": 349, - "h": 57, - "w": 57 - } - ] - }, - "small": { - "faces": [ - { - "x": 336, - "y": 148, - "h": 37, - "w": 37 - }, - { - "x": 581, - "y": 166, - "h": 31, - "w": 31 - }, - { - "x": 188, - "y": 197, - "h": 32, - "w": 32 - } - ] - }, - "orig": { - "faces": [ - { - "x": 594, - "y": 262, - "h": 66, - "w": 66 - }, - { - "x": 1026, - "y": 294, - "h": 56, - "w": 56 - }, - { - "x": 332, - "y": 349, - "h": 57, - "w": 57 - } - ] - } - }, - "sizes": { - "large": { - "h": 628, - "w": 1200, - "resize": "fit" - }, - "medium": { - "h": 628, - "w": 1200, - "resize": "fit" - }, - "small": { - "h": 356, - "w": 680, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 628, - "width": 1200, - "focus_rects": [ - { - "x": 79, - "y": 0, - "w": 1121, - "h": 628 - }, - { - "x": 572, - "y": 0, - "w": 628, - "h": 628 - }, - { - "x": 649, - "y": 0, - "w": 551, - "h": 628 - }, - { - "x": 886, - "y": 0, - "w": 314, - "h": 628 - }, - { - "x": 0, - "y": 0, - "w": 1200, - "h": 628 - } - ] - } - } - ] - }, - "favorite_count": 34, - "favorited": false, - "full_text": "Exclusive: Pakistan deported Afghans waiting for US resettlement https://t.co/kxPSrmDSCv https://t.co/Qg7OAD9jTM", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 2, - "reply_count": 2, - "retweet_count": 24, - "retweeted": false, - "user_id_str": "15108530", - "id_str": "1739715544889065886" - } - } - } - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "list-conversation-1739819664587882582", - "sortIndex": "1739819664587882410", - "content": { - "entryType": "TimelineTimelineModule", - "__typename": "TimelineTimelineModule", - "items": [ - { - "entryId": "list-conversation-1739819664587882582-tweet-1739715040624738535", - "item": { - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739715040624738535", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, + "media_count": 3970, "name": "The Kyiv Independent", - "normal_followers_count": 2103116, + "normal_followers_count": 2090013, "pinned_tweet_ids_str": [ "1611768917151862784" ], @@ -54716,163 +97,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", "profile_interstitial_type": "", "screen_name": "KyivIndependent", - "statuses_count": 34451, - "translator_type": "none", - "url": "https://t.co/WZvsaFpT20", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1595086441079513088", - "professional_type": "Business", - "category": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739715040624738535" - ], - "editable_until_msecs": "1703618962000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "88127", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 6, - "bookmarked": false, - "created_at": "Tue Dec 26 18:29:22 +0000 2023", - "conversation_id_str": "1739715040624738535", - "display_text_range": [ - 0, - 244 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 202, - "favorited": false, - "full_text": "⚡️Activist Sternenko says court closed case against him for death of a 2018 attacker.\n\nWell-known Ukrainian activist Serhii Sternenko said on Dec. 26 that an Odesa court closed a case against him for the death of a man who attacked him in 2018.", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 1, - "retweet_count": 35, - "retweeted": false, - "user_id_str": "1462548977367359490", - "id_str": "1739715040624738535" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "list-conversation-1739819664587882582-tweet-1739715042264727868", - "item": { - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739715042264727868", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", - "rest_id": "1462548977367359490", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Nov 21 22:30:41 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", - "entities": { - "description": { - "urls": [ - { - "display_url": "kyivindependent.com/membership/", - "expanded_url": "http://kyivindependent.com/membership/", - "url": "https://t.co/jsQiFkoveH", - "indices": [ - 17, - 40 - ] - }, - { - "display_url": "kyivindependent.com/membership/?in…", - "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", - "url": "https://t.co/eNwj76xa7a", - "indices": [ - 60, - 83 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "kyivindependent.com", - "expanded_url": "http://kyivindependent.com", - "url": "https://t.co/WZvsaFpT20", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 20036, - "location": "Kyiv", - "media_count": 3691, - "name": "The Kyiv Independent", - "normal_followers_count": 2103116, - "pinned_tweet_ids_str": [ - "1611768917151862784" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KyivIndependent", - "statuses_count": 34451, + "statuses_count": 36943, "translator_type": "none", "url": "https://t.co/WZvsaFpT20", "verified": false, @@ -54888,13 +113,35 @@ } }, "card": { - "rest_id": "https://t.co/5emPYoPgx2", + "rest_id": "https://t.co/q4QIeO3d51", "legacy": { "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756308225199161344/f22-07sl?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 150, + "width": 225, + "url": "https://pbs.twimg.com/card_img/1756308225199161344/f22-07sl?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, { "key": "description", "value": { - "string_value": "Well-known Ukrainian activist Serhii Sternenko said on Dec. 26 that an Odesa court closed a case against him for the death of a man who attacked him in 2018. The decision means his guilt was not...", + "string_value": "DONETSK OBLAST – As artillery began pounding the cold-hardened ground ahead of them, two Ukrainian soldiers listened warily to shell impacts creep closer. They were squeezed together in a roughly dug...", "type": "STRING" } }, @@ -54905,6 +152,39 @@ "type": "STRING" } }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 320, + "width": 480, + "url": "https://pbs.twimg.com/card_img/1756308225199161344/f22-07sl?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756308225199161344/f22-07sl?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 827, + "width": 1240, + "url": "https://pbs.twimg.com/card_img/1756308225199161344/f22-07sl?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, { "key": "site", "value": { @@ -54916,6 +196,39 @@ } } }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756308225199161344/f22-07sl?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756308225199161344/f22-07sl?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 67, + "width": 100, + "url": "https://pbs.twimg.com/card_img/1756308225199161344/f22-07sl?format=jpg&name=100x100" + }, + "type": "IMAGE" + } + }, { "key": "creator", "value": { @@ -54926,6 +239,28 @@ } } }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 827, + "width": 1240, + "url": "https://pbs.twimg.com/card_img/1756308225199161344/f22-07sl?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 827, + "width": 1240, + "url": "https://pbs.twimg.com/card_img/1756308225199161344/f22-07sl?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, { "key": "vanity_url", "value": { @@ -54934,20 +269,201 @@ "type": "STRING" } }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756308225199161344/f22-07sl?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 162, + "green": 160, + "red": 161 + }, + "percentage": 54.8 + }, + { + "rgb": { + "blue": 56, + "green": 60, + "red": 64 + }, + "percentage": 38.59 + }, + { + "rgb": { + "blue": 226, + "green": 232, + "red": 234 + }, + "percentage": 0.55 + }, + { + "rgb": { + "blue": 67, + "green": 52, + "red": 50 + }, + "percentage": 0.13 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, { "key": "title", "value": { - "string_value": "Activist Sternenko says court closed case against him for death of a 2018 attacker", + "string_value": "Fate of Avdiivka uncertain as Ukrainian forces defending it struggle with fortifications, resources", "type": "STRING" } }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 162, + "green": 160, + "red": 161 + }, + "percentage": 54.8 + }, + { + "rgb": { + "blue": 56, + "green": 60, + "red": 64 + }, + "percentage": 38.59 + }, + { + "rgb": { + "blue": 226, + "green": 232, + "red": 234 + }, + "percentage": 0.55 + }, + { + "rgb": { + "blue": 67, + "green": 52, + "red": 50 + }, + "percentage": 0.13 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 827, + "width": 1240, + "url": "https://pbs.twimg.com/card_img/1756308225199161344/f22-07sl?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756308225199161344/f22-07sl?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 162, + "green": 160, + "red": 161 + }, + "percentage": 54.8 + }, + { + "rgb": { + "blue": 56, + "green": 60, + "red": 64 + }, + "percentage": 38.59 + }, + { + "rgb": { + "blue": 226, + "green": 232, + "red": 234 + }, + "percentage": 0.55 + }, + { + "rgb": { + "blue": 67, + "green": 52, + "red": 50 + }, + "percentage": 0.13 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 827, + "width": 1240, + "url": "https://pbs.twimg.com/card_img/1756308225199161344/f22-07sl?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, { "key": "card_url", "value": { "scribe_key": "card_url", - "string_value": "https://t.co/5emPYoPgx2", + "string_value": "https://t.co/q4QIeO3d51", "type": "STRING" } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 827, + "width": 1240, + "url": "https://pbs.twimg.com/card_img/1756308225199161344/f22-07sl?format=jpg&name=orig" + }, + "type": "IMAGE" + } } ], "card_platform": { @@ -54962,7 +478,7 @@ } }, "name": "summary_large_image", - "url": "https://t.co/5emPYoPgx2", + "url": "https://t.co/q4QIeO3d51", "user_refs_results": [ { "result": { @@ -54979,7 +495,7 @@ "created_at": "Sat Mar 10 15:17:06 +0000 2018", "default_profile": true, "default_profile_image": false, - "description": "@KyivIndependent journalist. Kurt Schork Local Reporter and Axel Springer Prize awards. Write me: a.terajima@kyivindependent.com", + "description": "Reporter at @KyivIndependent | Kurt Schork Local Reporter and Axel Springer Prize awards | Write me: a.terajima@kyivindependent.com", "entities": { "description": { "urls": [] @@ -54999,16 +515,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 1873, - "followers_count": 52731, - "friends_count": 2253, + "favourites_count": 1890, + "followers_count": 52456, + "friends_count": 2269, "has_custom_timelines": true, "is_translator": false, - "listed_count": 1155, - "location": "Donbas - Kyiv", + "listed_count": 1144, + "location": "Kyiv", "media_count": 207, "name": "Asami Terajima", - "normal_followers_count": 52731, + "normal_followers_count": 52456, "pinned_tweet_ids_str": [ "1717561830803952038" ], @@ -55017,7 +533,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1725454100702101504/zeOeSMyY_normal.jpg", "profile_interstitial_type": "", "screen_name": "AsamiTerajima", - "statuses_count": 1775, + "statuses_count": 1781, "translator_type": "none", "url": "https://t.co/4WDgeBBsFY", "verified": false, @@ -55085,16 +601,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 301, - "followers_count": 2103116, - "friends_count": 25, + "favourites_count": 307, + "followers_count": 2090013, + "friends_count": 27, "has_custom_timelines": true, "is_translator": false, - "listed_count": 20036, + "listed_count": 20010, "location": "Kyiv", - "media_count": 3691, + "media_count": 3970, "name": "The Kyiv Independent", - "normal_followers_count": 2103116, + "normal_followers_count": 2090013, "pinned_tweet_ids_str": [ "1611768917151862784" ], @@ -55103,7 +619,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", "profile_interstitial_type": "", "screen_name": "KyivIndependent", - "statuses_count": 34451, + "statuses_count": 36943, "translator_type": "none", "url": "https://t.co/WZvsaFpT20", "verified": false, @@ -55126,26 +642,26 @@ }, "edit_control": { "edit_tweet_ids": [ - "1739715042264727868" + "1756308298834284643" ], - "editable_until_msecs": "1703618963000", + "editable_until_msecs": "1707575103000", "is_edit_eligible": false, "edits_remaining": "5" }, "is_translatable": false, "views": { - "count": "65804", + "count": "4904", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 2, + "bookmark_count": 0, "bookmarked": false, - "created_at": "Tue Dec 26 18:29:23 +0000 2023", - "conversation_id_str": "1739715040624738535", + "created_at": "Sat Feb 10 13:25:03 +0000 2024", + "conversation_id_str": "1756308298834284643", "display_text_range": [ 0, - 93 + 188 ], "entities": { "hashtags": [], @@ -55153,702 +669,30 @@ "timestamps": [], "urls": [ { - "display_url": "kyivindependent.com/activist-stern…", - "expanded_url": "https://kyivindependent.com/activist-sternenko-says-court-closed-case-against-him-for-death-of-a-2018-attacker/", - "url": "https://t.co/5emPYoPgx2", + "display_url": "kyivindependent.com/avdiivka-defen…", + "expanded_url": "https://kyivindependent.com/avdiivka-defense-uncertain-as-ukraine-struggles-with-fortification/", + "url": "https://t.co/q4QIeO3d51", "indices": [ - 70, - 93 + 165, + 188 ] } ], "user_mentions": [] }, - "favorite_count": 108, + "favorite_count": 25, "favorited": false, - "full_text": "The decision means his guilt was not proven, according to Sternenko.\n\nhttps://t.co/5emPYoPgx2", - "in_reply_to_screen_name": "KyivIndependent", - "in_reply_to_status_id_str": "1739715040624738535", - "in_reply_to_user_id_str": "1462548977367359490", + "full_text": "Nearly two years into the full-scale war, long-lingering problems – including the lack of preparation of fortifications – are starting to become even more serious.\n\nhttps://t.co/q4QIeO3d51", "is_quote_status": false, "lang": "en", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 1, - "reply_count": 4, - "retweet_count": 20, + "reply_count": 2, + "retweet_count": 10, "retweeted": false, "user_id_str": "1462548977367359490", - "id_str": "1739715042264727868" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - } - ], - "metadata": { - "conversationMetadata": { - "allTweetIds": [ - "1739715040624738535", - "1739715042264727868" - ], - "enableDeduplication": true - } - }, - "displayType": "VerticalConversation", - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "list-conversation-1739819664587882583", - "sortIndex": "1739819664587882409", - "content": { - "entryType": "TimelineTimelineModule", - "__typename": "TimelineTimelineModule", - "items": [ - { - "entryId": "list-conversation-1739819664587882583-tweet-1739698170420924476", - "item": { - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739698170420924476", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzE3NTIxMw==", - "rest_id": "17175213", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed Nov 05 00:59:16 +0000 2008", - "default_profile": true, - "default_profile_image": false, - "description": "Defence editor at @TheEconomist, Visiting fellow at @warstudies King's College London.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "shashankjoshi.wordpress.com", - "expanded_url": "http://shashankjoshi.wordpress.com", - "url": "https://t.co/euRjbnk3WT", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 36102, - "followers_count": 194545, - "friends_count": 1787, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5880, - "location": "London", - "media_count": 4138, - "name": "Shashank Joshi", - "normal_followers_count": 194545, - "pinned_tweet_ids_str": [ - "1729977020002476084" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17175213/1688649354", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1509894709770076168/uNk9W2IH_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "shashj", - "statuses_count": 49138, - "translator_type": "none", - "url": "https://t.co/euRjbnk3WT", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739698170420924476" - ], - "editable_until_msecs": "1703614940000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "59668", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739610959197466986", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo0ODk4OTU1Nw==", - "rest_id": "48989557", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sat Jun 20 12:02:36 +0000 2009", - "default_profile": false, - "default_profile_image": false, - "description": "Sr Dir Eurasian Sec & Prosperity @NewlinesInst | NatSec/FP Speclist @yowpdicafe | Author: https://t.co/765gV7PKRl | Feminist spatiotemporal wanderer | Avid 🚴 🏍️ & ♥️🏔️", - "entities": { - "description": { - "urls": [ - { - "display_url": "rb.gy/9hupi5", - "expanded_url": "http://rb.gy/9hupi5", - "url": "https://t.co/765gV7PKRl", - "indices": [ - 90, - 113 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "newlinesinstitute.org/people/kamran-…", - "expanded_url": "https://newlinesinstitute.org/people/kamran-bokhari/", - "url": "https://t.co/vmtwzSu3QB", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 4065, - "followers_count": 11008, - "friends_count": 1239, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 236, - "location": "Washington, DC", - "media_count": 790, - "name": "Kamran Bokhari", - "normal_followers_count": 11008, - "pinned_tweet_ids_str": [ - "1702836751796998213" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/48989557/1633798984", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360764785671999490/76YNuh3C_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "KamranBokhari", - "statuses_count": 29540, - "translator_type": "none", - "url": "https://t.co/vmtwzSu3QB", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1472508263526772737", - "professional_type": "Creator", - "category": [ - { - "id": 933, - "name": "Media Personality", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "card": { - "rest_id": "https://t.co/DZeDApoKez", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "alt": "Indian Navy Warship INS Kolkata arrives at Hamad Port during the Doha International Maritime Defence Exhibition & Conference (DIMDEX) in the Qatari capital Doha on March 20, 2022.", - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739605503250948096/zh5gJoE7?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "alt": "Indian Navy Warship INS Kolkata arrives at Hamad Port during the Doha International Maritime Defence Exhibition & Conference (DIMDEX) in the Qatari capital Doha on March 20, 2022.", - "height": 150, - "width": 267, - "url": "https://pbs.twimg.com/card_img/1739605503250948096/zh5gJoE7?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "The move comes after an Israel-affiliated vessel was attacked near the western Indian state of Gujarat.", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "www.bbc.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "alt": "Indian Navy Warship INS Kolkata arrives at Hamad Port during the Doha International Maritime Defence Exhibition & Conference (DIMDEX) in the Qatari capital Doha on March 20, 2022.", - "height": 320, - "width": 569, - "url": "https://pbs.twimg.com/card_img/1739605503250948096/zh5gJoE7?format=jpg&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "alt": "Indian Navy Warship INS Kolkata arrives at Hamad Port during the Doha International Maritime Defence Exhibition & Conference (DIMDEX) in the Qatari capital Doha on March 20, 2022.", - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739605503250948096/zh5gJoE7?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "alt": "Indian Navy Warship INS Kolkata arrives at Hamad Port during the Doha International Maritime Defence Exhibition & Conference (DIMDEX) in the Qatari capital Doha on March 20, 2022.", - "height": 576, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739605503250948096/zh5gJoE7?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "alt": "Indian Navy Warship INS Kolkata arrives at Hamad Port during the Doha International Maritime Defence Exhibition & Conference (DIMDEX) in the Qatari capital Doha on March 20, 2022.", - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739605503250948096/zh5gJoE7?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "alt": "Indian Navy Warship INS Kolkata arrives at Hamad Port during the Doha International Maritime Defence Exhibition & Conference (DIMDEX) in the Qatari capital Doha on March 20, 2022.", - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739605503250948096/zh5gJoE7?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "alt": "Indian Navy Warship INS Kolkata arrives at Hamad Port during the Doha International Maritime Defence Exhibition & Conference (DIMDEX) in the Qatari capital Doha on March 20, 2022.", - "height": 81, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1739605503250948096/zh5gJoE7?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "alt": "Indian Navy Warship INS Kolkata arrives at Hamad Port during the Doha International Maritime Defence Exhibition & Conference (DIMDEX) in the Qatari capital Doha on March 20, 2022.", - "height": 576, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739605503250948096/zh5gJoE7?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "alt": "Indian Navy Warship INS Kolkata arrives at Hamad Port during the Doha International Maritime Defence Exhibition & Conference (DIMDEX) in the Qatari capital Doha on March 20, 2022.", - "height": 576, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739605503250948096/zh5gJoE7?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_alt_text", - "value": { - "string_value": "Indian Navy Warship INS Kolkata arrives at Hamad Port during the Doha International Maritime Defence Exhibition & Conference (DIMDEX) in the Qatari capital Doha on March 20, 2022.", - "type": "STRING" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "bbc.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "alt": "Indian Navy Warship INS Kolkata arrives at Hamad Port during the Doha International Maritime Defence Exhibition & Conference (DIMDEX) in the Qatari capital Doha on March 20, 2022.", - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739605503250948096/zh5gJoE7?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_alt_text", - "value": { - "string_value": "Indian Navy Warship INS Kolkata arrives at Hamad Port during the Doha International Maritime Defence Exhibition & Conference (DIMDEX) in the Qatari capital Doha on March 20, 2022.", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 204, - "green": 195, - "red": 185 - }, - "percentage": 83.59 - }, - { - "rgb": { - "blue": 98, - "green": 84, - "red": 65 - }, - "percentage": 13.9 - }, - { - "rgb": { - "blue": 172, - "green": 175, - "red": 179 - }, - "percentage": 1.0 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "India deploys three warships to Arabian Sea after attack on tanker", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 204, - "green": 195, - "red": 185 - }, - "percentage": 83.59 - }, - { - "rgb": { - "blue": 98, - "green": 84, - "red": 65 - }, - "percentage": 13.9 - }, - { - "rgb": { - "blue": 172, - "green": 175, - "red": 179 - }, - "percentage": 1.0 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "alt": "Indian Navy Warship INS Kolkata arrives at Hamad Port during the Doha International Maritime Defence Exhibition & Conference (DIMDEX) in the Qatari capital Doha on March 20, 2022.", - "height": 576, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739605503250948096/zh5gJoE7?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "alt": "Indian Navy Warship INS Kolkata arrives at Hamad Port during the Doha International Maritime Defence Exhibition & Conference (DIMDEX) in the Qatari capital Doha on March 20, 2022.", - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739605503250948096/zh5gJoE7?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 204, - "green": 195, - "red": 185 - }, - "percentage": 83.59 - }, - { - "rgb": { - "blue": 98, - "green": 84, - "red": 65 - }, - "percentage": 13.9 - }, - { - "rgb": { - "blue": 172, - "green": 175, - "red": 179 - }, - "percentage": 1.0 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "alt": "Indian Navy Warship INS Kolkata arrives at Hamad Port during the Doha International Maritime Defence Exhibition & Conference (DIMDEX) in the Qatari capital Doha on March 20, 2022.", - "height": 576, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739605503250948096/zh5gJoE7?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/DZeDApoKez", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "alt": "Indian Navy Warship INS Kolkata arrives at Hamad Port during the Doha International Maritime Defence Exhibition & Conference (DIMDEX) in the Qatari capital Doha on March 20, 2022.", - "height": 576, - "width": 1024, - "url": "https://pbs.twimg.com/card_img/1739605503250948096/zh5gJoE7?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/DZeDApoKez", - "user_refs_results": [] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739610959197466986" - ], - "editable_until_msecs": "1703594147000", - "is_edit_eligible": true, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "38592", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 1, - "bookmarked": false, - "created_at": "Tue Dec 26 11:35:47 +0000 2023", - "conversation_id_str": "1739610959197466986", - "display_text_range": [ - 0, - 274 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "bbc.com/news/world-asi…", - "expanded_url": "https://www.bbc.com/news/world-asia-india-67822247", - "url": "https://t.co/DZeDApoKez", - "indices": [ - 251, - 274 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 12, - "favorited": false, - "full_text": "Indian Navy deploys guided missile destroyers, INS Mormugao, INS Kochi and INS Kolkata & begins flying a long-range maritime reconn aircraft in Arabian Sea in response to suspected Iranian drone attack on tanker ferrying Saudi oil to Mangalore. \n https://t.co/DZeDApoKez", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 1, - "reply_count": 0, - "retweet_count": 4, - "retweeted": false, - "user_id_str": "48989557", - "id_str": "1739610959197466986" - } - } - }, - "legacy": { - "bookmark_count": 1, - "bookmarked": false, - "created_at": "Tue Dec 26 17:22:20 +0000 2023", - "conversation_id_str": "1739698170420924476", - "display_text_range": [ - 0, - 223 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 68, - "favorited": false, - "full_text": "These Indian naval deployments can’t be “in response” to the drone attack because INS Kolkata & Kochi (not sure about Mormugao) were in the western Arabian Sea several days ago, well before the tanker was hit off India.", - "is_quote_status": true, - "lang": "en", - "quote_count": 1, - "quoted_status_id_str": "1739610959197466986", - "quoted_status_permalink": { - "url": "https://t.co/BTqqVqmHNb", - "expanded": "https://twitter.com/kamranbokhari/status/1739610959197466986", - "display": "twitter.com/kamranbokhari/…" - }, - "reply_count": 6, - "retweet_count": 14, - "retweeted": false, - "user_id_str": "17175213", - "id_str": "1739698170420924476" + "id_str": "1756308298834284643" } } }, @@ -55866,7 +710,7 @@ } }, { - "entryId": "list-conversation-1739819664587882583-tweet-1739702911976734865", + "entryId": "list-conversation-1756309211907620864-tweet-1756308300746932267", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -55874,34 +718,53 @@ "tweet_results": { "result": { "__typename": "Tweet", - "rest_id": "1739702911976734865", + "rest_id": "1756308300746932267", "core": { "user_results": { "result": { "__typename": "User", - "id": "VXNlcjoxNzE3NTIxMw==", - "rest_id": "17175213", + "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", + "rest_id": "1462548977367359490", "affiliates_highlighted_label": {}, "has_graduated_access": true, - "is_blue_verified": false, + "is_blue_verified": true, "profile_image_shape": "Circle", "legacy": { "can_dm": true, "can_media_tag": true, - "created_at": "Wed Nov 05 00:59:16 +0000 2008", + "created_at": "Sun Nov 21 22:30:41 +0000 2021", "default_profile": true, "default_profile_image": false, - "description": "Defence editor at @TheEconomist, Visiting fellow at @warstudies King's College London.", + "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", "entities": { "description": { - "urls": [] + "urls": [ + { + "display_url": "kyivindependent.com/membership/", + "expanded_url": "http://kyivindependent.com/membership/", + "url": "https://t.co/jsQiFkoveH", + "indices": [ + 17, + 40 + ] + }, + { + "display_url": "kyivindependent.com/membership/?in…", + "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", + "url": "https://t.co/eNwj76xa7a", + "indices": [ + 60, + 83 + ] + } + ] }, "url": { "urls": [ { - "display_url": "shashankjoshi.wordpress.com", - "expanded_url": "http://shashankjoshi.wordpress.com", - "url": "https://t.co/euRjbnk3WT", + "display_url": "kyivindependent.com", + "expanded_url": "http://kyivindependent.com", + "url": "https://t.co/WZvsaFpT20", "indices": [ 0, 23 @@ -55911,30 +774,35 @@ } }, "fast_followers_count": 0, - "favourites_count": 36102, - "followers_count": 194545, - "friends_count": 1787, + "favourites_count": 307, + "followers_count": 2090013, + "friends_count": 27, "has_custom_timelines": true, "is_translator": false, - "listed_count": 5880, - "location": "London", - "media_count": 4138, - "name": "Shashank Joshi", - "normal_followers_count": 194545, + "listed_count": 20010, + "location": "Kyiv", + "media_count": 3970, + "name": "The Kyiv Independent", + "normal_followers_count": 2090013, "pinned_tweet_ids_str": [ - "1729977020002476084" + "1611768917151862784" ], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17175213/1688649354", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1509894709770076168/uNk9W2IH_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", "profile_interstitial_type": "", - "screen_name": "shashj", - "statuses_count": 49138, + "screen_name": "KyivIndependent", + "statuses_count": 36943, "translator_type": "none", - "url": "https://t.co/euRjbnk3WT", + "url": "https://t.co/WZvsaFpT20", "verified": false, "want_retweets": false, "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1595086441079513088", + "professional_type": "Business", + "category": [] } } } @@ -55942,151 +810,26 @@ "unmention_data": {}, "edit_control": { "edit_tweet_ids": [ - "1739702911976734865" + "1756308300746932267" ], - "editable_until_msecs": "1703616070000", + "editable_until_msecs": "1707575104000", "is_edit_eligible": false, "edits_remaining": "5" }, "is_translatable": false, "views": { - "count": "22279", + "count": "4384", "state": "EnabledWithCount" }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739698170420924476", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzE3NTIxMw==", - "rest_id": "17175213", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed Nov 05 00:59:16 +0000 2008", - "default_profile": true, - "default_profile_image": false, - "description": "Defence editor at @TheEconomist, Visiting fellow at @warstudies King's College London.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "shashankjoshi.wordpress.com", - "expanded_url": "http://shashankjoshi.wordpress.com", - "url": "https://t.co/euRjbnk3WT", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 36102, - "followers_count": 194545, - "friends_count": 1787, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5880, - "location": "London", - "media_count": 4138, - "name": "Shashank Joshi", - "normal_followers_count": 194545, - "pinned_tweet_ids_str": [ - "1729977020002476084" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17175213/1688649354", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1509894709770076168/uNk9W2IH_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "shashj", - "statuses_count": 49138, - "translator_type": "none", - "url": "https://t.co/euRjbnk3WT", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739698170420924476" - ], - "editable_until_msecs": "1703614940000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "59668", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quotedRefResult": { - "result": { - "__typename": "Tweet", - "rest_id": "1739610959197466986" - } - }, - "legacy": { - "bookmark_count": 1, - "bookmarked": false, - "created_at": "Tue Dec 26 17:22:20 +0000 2023", - "conversation_id_str": "1739698170420924476", - "display_text_range": [ - 0, - 223 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 68, - "favorited": false, - "full_text": "These Indian naval deployments can’t be “in response” to the drone attack because INS Kolkata & Kochi (not sure about Mormugao) were in the western Arabian Sea several days ago, well before the tanker was hit off India.", - "is_quote_status": true, - "lang": "en", - "quote_count": 1, - "quoted_status_id_str": "1739610959197466986", - "quoted_status_permalink": { - "url": "https://t.co/BTqqVqmHNb", - "expanded": "https://twitter.com/kamranbokhari/status/1739610959197466986", - "display": "twitter.com/kamranbokhari/…" - }, - "reply_count": 6, - "retweet_count": 14, - "retweeted": false, - "user_id_str": "17175213", - "id_str": "1739698170420924476" - } - } - }, + "source": "Twitter Web App", "legacy": { "bookmark_count": 0, "bookmarked": false, - "created_at": "Tue Dec 26 17:41:10 +0000 2023", - "conversation_id_str": "1739698170420924476", + "created_at": "Sat Feb 10 13:25:04 +0000 2024", + "conversation_id_str": "1756308298834284643", "display_text_range": [ 0, - 195 + 115 ], "entities": { "hashtags": [], @@ -56095,836 +838,20 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 34, + "favorite_count": 14, "favorited": false, - "full_text": "I’m told the Mormugao was also in the region. So the Indian navy hasn’t “deployed” three ships in response to the tanker attack, it’s … kept them there. More interesting is what they will now do.", - "in_reply_to_screen_name": "shashj", - "in_reply_to_status_id_str": "1739698170420924476", - "in_reply_to_user_id_str": "17175213", - "is_quote_status": true, + "full_text": "Along the front line, Ukrainian soldiers complain of severe shortages of ammunition, equipment, troops, and drones.", + "in_reply_to_screen_name": "KyivIndependent", + "in_reply_to_status_id_str": "1756308298834284643", + "in_reply_to_user_id_str": "1462548977367359490", + "is_quote_status": false, "lang": "en", "quote_count": 0, - "quoted_status_id_str": "1739698170420924476", - "quoted_status_permalink": { - "url": "https://t.co/xmiwEOPaVp", - "expanded": "https://twitter.com/shashj/status/1739698170420924476", - "display": "twitter.com/shashj/status/…" - }, "reply_count": 2, - "retweet_count": 2, + "retweet_count": 6, "retweeted": false, - "user_id_str": "17175213", - "id_str": "1739702911976734865" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "suggest_organic_list_tweet", - "element": "tweet", - "details": { - "timelinesDetails": { - "injectionType": "OrganicListTweet" - } - } - } - } - }, - { - "entryId": "list-conversation-1739819664587882583-tweet-1739713198155030799", - "item": { - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739713198155030799", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNzE3NTIxMw==", - "rest_id": "17175213", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed Nov 05 00:59:16 +0000 2008", - "default_profile": true, - "default_profile_image": false, - "description": "Defence editor at @TheEconomist, Visiting fellow at @warstudies King's College London.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "shashankjoshi.wordpress.com", - "expanded_url": "http://shashankjoshi.wordpress.com", - "url": "https://t.co/euRjbnk3WT", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 36102, - "followers_count": 194545, - "friends_count": 1787, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 5880, - "location": "London", - "media_count": 4138, - "name": "Shashank Joshi", - "normal_followers_count": 194545, - "pinned_tweet_ids_str": [ - "1729977020002476084" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/17175213/1688649354", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1509894709770076168/uNk9W2IH_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "shashj", - "statuses_count": 49138, - "translator_type": "none", - "url": "https://t.co/euRjbnk3WT", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739713198155030799" - ], - "editable_until_msecs": "1703618523000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "14310", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "quoted_status_result": { - "result": { - "__typename": "Tweet", - "rest_id": "1739708120509591991", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo3NDE1MjA3MjM=", - "rest_id": "741520723", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Mon Aug 06 21:52:28 +0000 2012", - "default_profile": true, - "default_profile_image": false, - "description": "Sr Fellow, @BrookingsInst. Author, \"Fateful Triangle: How China Shaped US-India Rels During the Cold War.\" Host, Global India podcast https://t.co/4htS1ClEzY", - "entities": { - "description": { - "urls": [ - { - "display_url": "brookings.edu/globalindia", - "expanded_url": "http://brookings.edu/globalindia", - "url": "https://t.co/4htS1ClEzY", - "indices": [ - 134, - 157 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "brookings.edu/experts/madant", - "expanded_url": "http://www.brookings.edu/experts/madant", - "url": "https://t.co/k6blEYCBrA", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 13765, - "followers_count": 86768, - "friends_count": 4487, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 966, - "location": "", - "media_count": 5575, - "name": "Tanvi Madan", - "normal_followers_count": 86768, - "pinned_tweet_ids_str": [ - "1736066388161106066" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/741520723/1695758807", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1699806931483754496/yE0pWMdt_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "tanvi_madan", - "statuses_count": 46195, - "translator_type": "none", - "url": "https://t.co/k6blEYCBrA", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "https://t.co/3j4mBm0Rvv", - "legacy": { - "binding_values": [ - { - "key": "photo_image_full_size_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739686689608433664/vNXch6SA?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image", - "value": { - "image_value": { - "height": 150, - "width": 276, - "url": "https://pbs.twimg.com/card_img/1739686689608433664/vNXch6SA?format=jpg&name=280x150" - }, - "type": "IMAGE" - } - }, - { - "key": "description", - "value": { - "string_value": "India News: Indian destroyer INS Kochi has evacuated one of the 18 sailors on board the hijacked commercial vessel MV Ruen for urgent medical attention after he w", - "type": "STRING" - } - }, - { - "key": "domain", - "value": { - "string_value": "timesofindia.indiatimes.com", - "type": "STRING" - } - }, - { - "key": "thumbnail_image_large", - "value": { - "image_value": { - "height": 320, - "width": 590, - "url": "https://pbs.twimg.com/card_img/1739686689608433664/vNXch6SA?format=jpg&name=800x320_1" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739686689608433664/vNXch6SA?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_original", - "value": { - "image_value": { - "height": 580, - "width": 1069, - "url": "https://pbs.twimg.com/card_img/1739686689608433664/vNXch6SA?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "site", - "value": { - "scribe_key": "publisher_id", - "type": "USER", - "user_value": { - "id_str": "134758540", - "path": [] - } - } - }, - { - "key": "photo_image_full_size_small", - "value": { - "image_value": { - "height": 202, - "width": 386, - "url": "https://pbs.twimg.com/card_img/1739686689608433664/vNXch6SA?format=jpg&name=386x202" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image_large", - "value": { - "image_value": { - "height": 419, - "width": 800, - "url": "https://pbs.twimg.com/card_img/1739686689608433664/vNXch6SA?format=jpg&name=800x419" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_small", - "value": { - "image_value": { - "height": 78, - "width": 144, - "url": "https://pbs.twimg.com/card_img/1739686689608433664/vNXch6SA?format=jpg&name=144x144" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_x_large", - "value": { - "image_value": { - "height": 580, - "width": 1069, - "url": "https://pbs.twimg.com/card_img/1739686689608433664/vNXch6SA?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_original", - "value": { - "image_value": { - "height": 580, - "width": 1069, - "url": "https://pbs.twimg.com/card_img/1739686689608433664/vNXch6SA?format=jpg&name=orig" - }, - "type": "IMAGE" - } - }, - { - "key": "vanity_url", - "value": { - "scribe_key": "vanity_url", - "string_value": "timesofindia.indiatimes.com", - "type": "STRING" - } - }, - { - "key": "photo_image_full_size", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739686689608433664/vNXch6SA?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "thumbnail_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 89, - "green": 83, - "red": 76 - }, - "percentage": 69.94 - }, - { - "rgb": { - "blue": 113, - "green": 121, - "red": 149 - }, - "percentage": 18.37 - }, - { - "rgb": { - "blue": 71, - "green": 78, - "red": 121 - }, - "percentage": 4.13 - }, - { - "rgb": { - "blue": 120, - "green": 116, - "red": 114 - }, - "percentage": 4.04 - }, - { - "rgb": { - "blue": 18, - "green": 18, - "red": 254 - }, - "percentage": 0.48 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "title", - "value": { - "string_value": "Indian Navy evacuates injured sailor from hijacked ship | India News - Times of India", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 89, - "green": 83, - "red": 76 - }, - "percentage": 69.94 - }, - { - "rgb": { - "blue": 113, - "green": 121, - "red": 149 - }, - "percentage": 18.37 - }, - { - "rgb": { - "blue": 71, - "green": 78, - "red": 121 - }, - "percentage": 4.13 - }, - { - "rgb": { - "blue": 120, - "green": 116, - "red": 114 - }, - "percentage": 4.04 - }, - { - "rgb": { - "blue": 18, - "green": 18, - "red": 254 - }, - "percentage": 0.48 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "summary_photo_image_x_large", - "value": { - "image_value": { - "height": 580, - "width": 1069, - "url": "https://pbs.twimg.com/card_img/1739686689608433664/vNXch6SA?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "summary_photo_image", - "value": { - "image_value": { - "height": 314, - "width": 600, - "url": "https://pbs.twimg.com/card_img/1739686689608433664/vNXch6SA?format=jpg&name=600x314" - }, - "type": "IMAGE" - } - }, - { - "key": "photo_image_full_size_color", - "value": { - "image_color_value": { - "palette": [ - { - "rgb": { - "blue": 89, - "green": 83, - "red": 76 - }, - "percentage": 69.94 - }, - { - "rgb": { - "blue": 113, - "green": 121, - "red": 149 - }, - "percentage": 18.37 - }, - { - "rgb": { - "blue": 71, - "green": 78, - "red": 121 - }, - "percentage": 4.13 - }, - { - "rgb": { - "blue": 120, - "green": 116, - "red": 114 - }, - "percentage": 4.04 - }, - { - "rgb": { - "blue": 18, - "green": 18, - "red": 254 - }, - "percentage": 0.48 - } - ] - }, - "type": "IMAGE_COLOR" - } - }, - { - "key": "photo_image_full_size_x_large", - "value": { - "image_value": { - "height": 580, - "width": 1069, - "url": "https://pbs.twimg.com/card_img/1739686689608433664/vNXch6SA?format=png&name=2048x2048_2_exp" - }, - "type": "IMAGE" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://t.co/3j4mBm0Rvv", - "type": "STRING" - } - }, - { - "key": "summary_photo_image_original", - "value": { - "image_value": { - "height": 580, - "width": 1069, - "url": "https://pbs.twimg.com/card_img/1739686689608433664/vNXch6SA?format=jpg&name=orig" - }, - "type": "IMAGE" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "summary_large_image", - "url": "https://t.co/3j4mBm0Rvv", - "user_refs_results": [ - { - "result": { - "__typename": "User", - "id": "VXNlcjoxMzQ3NTg1NDA=", - "rest_id": "134758540", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Mon Apr 19 10:50:15 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "News. Views. Analysis. Conversations. India’s No.1 digital news destination, world’s largest-selling English newspaper - A Times Internet Limited Product", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "toi.in/BJa_yb63", - "expanded_url": "http://toi.in/BJa_yb63", - "url": "https://t.co/AZynmCvEVx", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 18, - "followers_count": 14714081, - "friends_count": 144, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 13149, - "location": "", - "media_count": 411447, - "name": "The Times Of India", - "normal_followers_count": 14714081, - "pinned_tweet_ids_str": [ - "1738151673766568148" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/134758540/1701842401", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1619701646027792385/atwP27sC_normal.png", - "profile_interstitial_type": "", - "screen_name": "timesofindia", - "statuses_count": 931049, - "translator_type": "regular", - "url": "https://t.co/AZynmCvEVx", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1642843220861411329", - "professional_type": "Business", - "category": [ - { - "id": 580, - "name": "Media & News Company", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - ] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1739708120509591991" - ], - "editable_until_msecs": "1703617312000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "15053", - "state": "EnabledWithCount" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 3, - "bookmarked": false, - "created_at": "Tue Dec 26 18:01:52 +0000 2023", - "conversation_id_str": "1739698170420924476", - "display_text_range": [ - 8, - 293 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "pib.gov.in/PressReleasePa…", - "expanded_url": "https://pib.gov.in/PressReleasePage.aspx?PRID=1987060", - "url": "https://t.co/4LVLWFqtHl", - "indices": [ - 142, - 165 - ] - }, - { - "display_url": "pib.gov.in/PressReleasePa…", - "expanded_url": "https://pib.gov.in/PressReleasePage.aspx?PRID=1989252", - "url": "https://t.co/6ntCfA5UPy", - "indices": [ - 166, - 189 - ] - }, - { - "display_url": "pib.gov.in/PressReleasePa…", - "expanded_url": "https://pib.gov.in/PressReleasePage.aspx?PRID=1990125", - "url": "https://t.co/L8LLrORZ8H", - "indices": [ - 190, - 213 - ] - }, - { - "display_url": "pib.gov.in/PressReleasePa…", - "expanded_url": "https://pib.gov.in/PressReleasePage.aspx?PRID=1990363", - "url": "https://t.co/nUidnWI2IH", - "indices": [ - 214, - 237 - ] - }, - { - "display_url": "timesofindia.indiatimes.com/india/indian-n…", - "expanded_url": "https://timesofindia.indiatimes.com/india/indian-navy-evacuates-injured-sailor-from-hijacked-ship/articleshow/106131010.cms?from=mdr", - "url": "https://t.co/3j4mBm0Rvv", - "indices": [ - 270, - 293 - ] - } - ], - "user_mentions": [ - { - "id_str": "17175213", - "name": "Shashank Joshi", - "screen_name": "shashj", - "indices": [ - 0, - 7 - ] - }, - { - "id_str": "254541750", - "name": "Rajat Pandit", - "screen_name": "rajatpTOI", - "indices": [ - 258, - 268 - ] - } - ] - }, - "favorite_count": 2, - "favorited": false, - "full_text": "@shashj Sounds like there was diversion (Kochi), redeployment (Kolkata) & response (Mormugao) after Ruen & then Chem Pluto incidents:\nhttps://t.co/4LVLWFqtHl\nhttps://t.co/6ntCfA5UPy\nhttps://t.co/L8LLrORZ8H\nhttps://t.co/nUidnWI2IH\n\nAlso see this from @rajatpTOI \nhttps://t.co/3j4mBm0Rvv", - "in_reply_to_screen_name": "shashj", - "in_reply_to_status_id_str": "1739698170420924476", - "in_reply_to_user_id_str": "17175213", - "is_quote_status": false, - "lang": "en", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 1, - "reply_count": 1, - "retweet_count": 1, - "retweeted": false, - "user_id_str": "741520723", - "id_str": "1739708120509591991" - } - } - }, - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Tue Dec 26 18:22:03 +0000 2023", - "conversation_id_str": "1739698170420924476", - "display_text_range": [ - 0, - 23 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [ - { - "display_url": "twitter.com/tanvi_madan/st…", - "expanded_url": "https://twitter.com/tanvi_madan/status/1739708120509591991", - "url": "https://t.co/3lpIoPUxKq", - "indices": [ - 0, - 23 - ] - } - ], - "user_mentions": [] - }, - "favorite_count": 12, - "favorited": false, - "full_text": "https://t.co/3lpIoPUxKq", - "in_reply_to_screen_name": "shashj", - "in_reply_to_status_id_str": "1739702911976734865", - "in_reply_to_user_id_str": "17175213", - "is_quote_status": true, - "lang": "zxx", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "quoted_status_id_str": "1739708120509591991", - "quoted_status_permalink": { - "url": "https://t.co/3lpIoPUxKq", - "expanded": "https://twitter.com/tanvi_madan/status/1739708120509591991", - "display": "twitter.com/tanvi_madan/st…" - }, - "reply_count": 0, - "retweet_count": 1, - "retweeted": false, - "user_id_str": "17175213", - "id_str": "1739713198155030799" + "user_id_str": "1462548977367359490", + "id_str": "1756308300746932267" } } }, @@ -56945,9 +872,8 @@ "metadata": { "conversationMetadata": { "allTweetIds": [ - "1739698170420924476", - "1739702911976734865", - "1739713198155030799" + "1756308298834284643", + "1756308300746932267" ], "enableDeduplication": true } @@ -56964,8 +890,8 @@ } }, { - "entryId": "tweet-1739712143937749187", - "sortIndex": "1739819664587882408", + "entryId": "tweet-1756308036811923557", + "sortIndex": "1756309211907620863", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -56975,24 +901,24 @@ "tweet_results": { "result": { "__typename": "Tweet", - "rest_id": "1739712143937749187", + "rest_id": "1756308036811923557", "core": { "user_results": { "result": { "__typename": "User", - "id": "VXNlcjoxMDA1ODQ2NTAwNTgzMzIxNjAx", - "rest_id": "1005846500583321601", + "id": "VXNlcjoyODA4MjI2MTM=", + "rest_id": "280822613", "affiliates_highlighted_label": {}, "has_graduated_access": true, "is_blue_verified": false, "profile_image_shape": "Circle", "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sun Jun 10 16:17:48 +0000 2018", + "can_dm": true, + "can_media_tag": true, + "created_at": "Tue Apr 12 02:53:43 +0000 2011", "default_profile": true, "default_profile_image": false, - "description": "Dad. Spouse to @natsechobbyist. Vet. NYT Best-selling Author. Ex NSC/WH Staff. Senior Advisor @votevets. Dr. & Senior Fellow, SAIS, JHU. 🧵 @alexander_s_vindman", + "description": "Mayak Intelligence, @UCLSSEES, @RUSI_org, @IIR_Prague. Analyst of murky topics from Russian politics to global crime. Views my own", "entities": { "description": { "urls": [] @@ -57000,9 +926,9 @@ "url": { "urls": [ { - "display_url": "alexandervindman.substack.com", - "expanded_url": "https://alexandervindman.substack.com", - "url": "https://t.co/vyo9QsFIcu", + "display_url": "inmoscowsshadows.wordpress.com", + "expanded_url": "http://inmoscowsshadows.wordpress.com/", + "url": "https://t.co/XqeY63I8Vg", "indices": [ 0, 23 @@ -57012,51 +938,513 @@ } }, "fast_followers_count": 0, - "favourites_count": 14442, - "followers_count": 927419, - "friends_count": 1642, + "favourites_count": 4051, + "followers_count": 120920, + "friends_count": 354, "has_custom_timelines": true, "is_translator": false, - "listed_count": 5737, - "location": "Florida, USA", - "media_count": 309, - "name": "Alexander S. Vindman ❎", - "normal_followers_count": 927419, - "pinned_tweet_ids_str": [ - "1725146404589334755" - ], + "listed_count": 3152, + "location": "Isle of Thanet, Kent", + "media_count": 653, + "name": "Mark Galeotti", + "normal_followers_count": 120920, + "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1005846500583321601/1682038223", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1438653431837872135/6170zRMd_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/280822613/1704904912", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1196790504752648193/6WTTzv2U_normal.png", "profile_interstitial_type": "", - "screen_name": "AVindman", - "statuses_count": 6286, + "screen_name": "MarkGaleotti", + "statuses_count": 21895, "translator_type": "none", - "url": "https://t.co/vyo9QsFIcu", + "url": "https://t.co/XqeY63I8Vg", "verified": false, "want_retweets": false, "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1469829466885132297", - "professional_type": "Business", - "category": [ - { - "id": 956, - "name": "Writer", - "icon_name": "IconBriefcaseStroke" - } - ] } } } }, + "card": { + "rest_id": "https://t.co/ul0GGk6T6J", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 200, + "width": 400, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=400x400" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "‎Show Ukraine: The Latest, Ep 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti - 10 Feb 2024", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "podcasts.apple.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 300, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=600x600" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 600, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "48436234", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 72, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 600, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 600, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_alt_text", + "value": { + "string_value": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "type": "STRING" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "podcasts.apple.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_alt_text", + "value": { + "string_value": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 248, + "green": 248, + "red": 248 + }, + "percentage": 75.04 + }, + { + "rgb": { + "blue": 1, + "green": 213, + "red": 254 + }, + "percentage": 11.38 + }, + { + "rgb": { + "blue": 199, + "green": 104, + "red": 0 + }, + "percentage": 11.36 + }, + { + "rgb": { + "blue": 226, + "green": 179, + "red": 127 + }, + "percentage": 1.51 + }, + { + "rgb": { + "blue": 130, + "green": 234, + "red": 254 + }, + "percentage": 0.23 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "‎Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark...", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 248, + "green": 248, + "red": 248 + }, + "percentage": 75.04 + }, + { + "rgb": { + "blue": 1, + "green": 213, + "red": 254 + }, + "percentage": 11.38 + }, + { + "rgb": { + "blue": 199, + "green": 104, + "red": 0 + }, + "percentage": 11.36 + }, + { + "rgb": { + "blue": 226, + "green": 179, + "red": 127 + }, + "percentage": 1.51 + }, + { + "rgb": { + "blue": 130, + "green": 234, + "red": 254 + }, + "percentage": 0.23 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 600, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 248, + "green": 248, + "red": 248 + }, + "percentage": 75.04 + }, + { + "rgb": { + "blue": 1, + "green": 213, + "red": 254 + }, + "percentage": 11.38 + }, + { + "rgb": { + "blue": 199, + "green": 104, + "red": 0 + }, + "percentage": 11.36 + }, + { + "rgb": { + "blue": 226, + "green": 179, + "red": 127 + }, + "percentage": 1.51 + }, + { + "rgb": { + "blue": 130, + "green": 234, + "red": 254 + }, + "percentage": 0.23 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 600, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/ul0GGk6T6J", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 600, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/ul0GGk6T6J", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjo0ODQzNjIzNA==", + "rest_id": "48436234", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Jun 18 18:13:59 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "The home of your next favorite podcasts and a place to get more access to the creators behind them.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "apple.co/podcasts", + "expanded_url": "http://apple.co/podcasts", + "url": "https://t.co/1Yw0TqfELV", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 2667, + "followers_count": 632931, + "friends_count": 2084, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 5071, + "location": "Cupertino, CA", + "media_count": 4426, + "name": "Apple Podcasts", + "normal_followers_count": 632931, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/48436234/1623766452", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1009097162104246272/07rvgUrd_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ApplePodcasts", + "statuses_count": 8174, + "translator_type": "none", + "url": "https://t.co/1Yw0TqfELV", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, "unmention_data": {}, "edit_control": { "edit_tweet_ids": [ - "1739712143937749187" + "1756308036811923557" ], - "editable_until_msecs": "1703618272060", + "editable_until_msecs": "1707575041258", "is_edit_eligible": false, "edits_remaining": "5" }, @@ -57064,309 +1452,74 @@ "views": { "state": "Enabled" }, - "source": "Twitter for iPhone", + "source": "Twitter for iPad", "legacy": { "bookmark_count": 0, "bookmarked": false, - "created_at": "Tue Dec 26 18:17:52 +0000 2023", - "conversation_id_str": "1739712143937749187", + "created_at": "Sat Feb 10 13:24:01 +0000 2024", + "conversation_id_str": "1756308036811923557", "display_text_range": [ 0, - 35 + 140 ], "entities": { "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/EVTPY8XcIN", - "expanded_url": "https://twitter.com/McFaul/status/1739711228459786441/photo/1", - "id_str": "1739711224823283712", - "indices": [ - 12, - 35 - ], - "media_key": "3_1739711224823283712", - "media_url_https": "https://pbs.twimg.com/media/GCSyJD9aAAAglJs.jpg", - "source_status_id_str": "1739711228459786441", - "source_user_id_str": "454099919", - "type": "photo", - "url": "https://t.co/EVTPY8XcIN", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 506, - "y": 241, - "h": 392, - "w": 392 - } - ] - }, - "medium": { - "faces": [ - { - "x": 506, - "y": 241, - "h": 392, - "w": 392 - } - ] - }, - "small": { - "faces": [ - { - "x": 368, - "y": 175, - "h": 285, - "w": 285 - } - ] - }, - "orig": { - "faces": [ - { - "x": 506, - "y": 241, - "h": 392, - "w": 392 - } - ] - } - }, - "sizes": { - "large": { - "h": 935, - "w": 932, - "resize": "fit" - }, - "medium": { - "h": 935, - "w": 932, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 678, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 935, - "width": 932, - "focus_rects": [ - { - "x": 0, - "y": 413, - "w": 932, - "h": 522 - }, - { - "x": 0, - "y": 3, - "w": 932, - "h": 932 - }, - { - "x": 0, - "y": 0, - "w": 820, - "h": 935 - }, - { - "x": 69, - "y": 0, - "w": 468, - "h": 935 - }, - { - "x": 0, - "y": 0, - "w": 932, - "h": 935 - } - ] - } - } - ], "symbols": [], "timestamps": [], "urls": [], "user_mentions": [ { - "id_str": "454099919", - "name": "Michael McFaul", - "screen_name": "McFaul", + "id_str": "1412866484", + "name": "David Knowles", + "screen_name": "djknowles22", "indices": [ 3, - 10 + 15 ] - } - ] - }, - "extended_entities": { - "media": [ + }, { - "display_url": "pic.twitter.com/EVTPY8XcIN", - "expanded_url": "https://twitter.com/McFaul/status/1739711228459786441/photo/1", - "id_str": "1739711224823283712", + "id_str": "280822613", + "name": "Mark Galeotti", + "screen_name": "MarkGaleotti", "indices": [ - 12, - 35 - ], - "media_key": "3_1739711224823283712", - "media_url_https": "https://pbs.twimg.com/media/GCSyJD9aAAAglJs.jpg", - "source_status_id_str": "1739711228459786441", - "source_user_id_str": "454099919", - "type": "photo", - "url": "https://t.co/EVTPY8XcIN", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 506, - "y": 241, - "h": 392, - "w": 392 - } - ] - }, - "medium": { - "faces": [ - { - "x": 506, - "y": 241, - "h": 392, - "w": 392 - } - ] - }, - "small": { - "faces": [ - { - "x": 368, - "y": 175, - "h": 285, - "w": 285 - } - ] - }, - "orig": { - "faces": [ - { - "x": 506, - "y": 241, - "h": 392, - "w": 392 - } - ] - } - }, - "sizes": { - "large": { - "h": 935, - "w": 932, - "resize": "fit" - }, - "medium": { - "h": 935, - "w": 932, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 678, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 935, - "width": 932, - "focus_rects": [ - { - "x": 0, - "y": 413, - "w": 932, - "h": 522 - }, - { - "x": 0, - "y": 3, - "w": 932, - "h": 932 - }, - { - "x": 0, - "y": 0, - "w": 820, - "h": 935 - }, - { - "x": 69, - "y": 0, - "w": 468, - "h": 935 - }, - { - "x": 0, - "y": 0, - "w": 932, - "h": 935 - } - ] - } + 45, + 58 + ] } ] }, "favorite_count": 0, "favorited": false, - "full_text": "RT @McFaul: https://t.co/EVTPY8XcIN", + "full_text": "RT @djknowles22: Was fascinating to speak to @MarkGaleotti for this podcast, I do hope you find it as interesting as I did \n\nhttps://t.co/u…", "is_quote_status": false, - "lang": "zxx", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, + "lang": "en", "quote_count": 0, "reply_count": 0, - "retweet_count": 1472, + "retweet_count": 3, "retweeted": false, - "user_id_str": "1005846500583321601", - "id_str": "1739712143937749187", + "user_id_str": "280822613", + "id_str": "1756308036811923557", "retweeted_status_result": { "result": { "__typename": "Tweet", - "rest_id": "1739711228459786441", + "rest_id": "1756301111584022806", "core": { "user_results": { "result": { "__typename": "User", - "id": "VXNlcjo0NTQwOTk5MTk=", - "rest_id": "454099919", + "id": "VXNlcjoxNDEyODY2NDg0", + "rest_id": "1412866484", "affiliates_highlighted_label": {}, "has_graduated_access": true, - "is_blue_verified": true, + "is_blue_verified": false, "profile_image_shape": "Circle", "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Tue Jan 03 16:36:02 +0000 2012", + "can_dm": true, + "can_media_tag": true, + "created_at": "Wed May 08 13:29:53 +0000 2013", "default_profile": false, "default_profile_image": false, - "description": "Professor of Political Science, Director of Freeman Spogli Institute & Hoover Senior Fellow all at Stanford University. U.S. Ambassador to Russia, 2012-2014.", + "description": "Journalist at @telegraph, Presenter: Ukraine: The Latest, enthusiastic cricketer and mandolinist", "entities": { "description": { "urls": [] @@ -57374,9 +1527,9 @@ "url": { "urls": [ { - "display_url": "michaelmcfaul.substack.com", - "expanded_url": "https://michaelmcfaul.substack.com/", - "url": "https://t.co/Mdi9pqQ58Q", + "display_url": "telegraph.co.uk/authors/d/da-d…", + "expanded_url": "https://www.telegraph.co.uk/authors/d/da-de/david-knowles/", + "url": "https://t.co/mc4H1PzYcc", "indices": [ 0, 23 @@ -57386,27 +1539,27 @@ } }, "fast_followers_count": 0, - "favourites_count": 46606, - "followers_count": 900854, - "friends_count": 2092, + "favourites_count": 28710, + "followers_count": 11820, + "friends_count": 5793, "has_custom_timelines": true, "is_translator": false, - "listed_count": 10476, - "location": "Stanford, California", - "media_count": 3445, - "name": "Michael McFaul", - "normal_followers_count": 900854, + "listed_count": 151, + "location": "London, England", + "media_count": 2539, + "name": "David Knowles", + "normal_followers_count": 11820, "pinned_tweet_ids_str": [ - "1515923887720071168" + "1739267259674067205" ], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/454099919/1667071005", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1483538323368910851/gqSpEuaL_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1412866484/1639353661", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1470181558522990598/iJeHfeD9_normal.jpg", "profile_interstitial_type": "", - "screen_name": "McFaul", - "statuses_count": 122048, + "screen_name": "djknowles22", + "statuses_count": 21840, "translator_type": "none", - "url": "https://t.co/Mdi9pqQ58Q", + "url": "https://t.co/mc4H1PzYcc", "verified": false, "want_retweets": false, "withheld_in_countries": [] @@ -57414,288 +1567,548 @@ } } }, + "card": { + "rest_id": "https://t.co/ul0GGk6T6J", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 200, + "width": 400, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=400x400" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "‎Show Ukraine: The Latest, Ep 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti - 10 Feb 2024", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "podcasts.apple.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 300, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=600x600" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 600, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "48436234", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 72, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 600, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 600, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_alt_text", + "value": { + "string_value": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "type": "STRING" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "podcasts.apple.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_alt_text", + "value": { + "string_value": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 248, + "green": 248, + "red": 248 + }, + "percentage": 75.04 + }, + { + "rgb": { + "blue": 1, + "green": 213, + "red": 254 + }, + "percentage": 11.38 + }, + { + "rgb": { + "blue": 199, + "green": 104, + "red": 0 + }, + "percentage": 11.36 + }, + { + "rgb": { + "blue": 226, + "green": 179, + "red": 127 + }, + "percentage": 1.51 + }, + { + "rgb": { + "blue": 130, + "green": 234, + "red": 254 + }, + "percentage": 0.23 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "‎Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark...", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 248, + "green": 248, + "red": 248 + }, + "percentage": 75.04 + }, + { + "rgb": { + "blue": 1, + "green": 213, + "red": 254 + }, + "percentage": 11.38 + }, + { + "rgb": { + "blue": 199, + "green": 104, + "red": 0 + }, + "percentage": 11.36 + }, + { + "rgb": { + "blue": 226, + "green": 179, + "red": 127 + }, + "percentage": 1.51 + }, + { + "rgb": { + "blue": 130, + "green": 234, + "red": 254 + }, + "percentage": 0.23 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 600, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 248, + "green": 248, + "red": 248 + }, + "percentage": 75.04 + }, + { + "rgb": { + "blue": 1, + "green": 213, + "red": 254 + }, + "percentage": 11.38 + }, + { + "rgb": { + "blue": 199, + "green": 104, + "red": 0 + }, + "percentage": 11.36 + }, + { + "rgb": { + "blue": 226, + "green": 179, + "red": 127 + }, + "percentage": 1.51 + }, + { + "rgb": { + "blue": 130, + "green": 234, + "red": 254 + }, + "percentage": 0.23 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 600, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/ul0GGk6T6J", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "alt": "Ukraine: The Latest: 'Putin has become a caricature of himself’: Understanding Russia with Mark Galeotti on Apple Podcasts", + "height": 600, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755671093581328385/ZT0ZUgKM?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/ul0GGk6T6J", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjo0ODQzNjIzNA==", + "rest_id": "48436234", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Jun 18 18:13:59 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "The home of your next favorite podcasts and a place to get more access to the creators behind them.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "apple.co/podcasts", + "expanded_url": "http://apple.co/podcasts", + "url": "https://t.co/1Yw0TqfELV", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 2667, + "followers_count": 632931, + "friends_count": 2084, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 5071, + "location": "Cupertino, CA", + "media_count": 4426, + "name": "Apple Podcasts", + "normal_followers_count": 632931, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/48436234/1623766452", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1009097162104246272/07rvgUrd_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ApplePodcasts", + "statuses_count": 8174, + "translator_type": "none", + "url": "https://t.co/1Yw0TqfELV", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, "edit_control": { "edit_tweet_ids": [ - "1739711228459786441" + "1756301111584022806" ], - "editable_until_msecs": "1703618053000", + "editable_until_msecs": "1707573390000", "is_edit_eligible": true, "edits_remaining": "5" }, "is_translatable": false, "views": { - "count": "162196", + "count": "809", "state": "EnabledWithCount" }, "source": "Twitter for iPhone", "legacy": { - "bookmark_count": 37, + "bookmark_count": 3, "bookmarked": false, - "created_at": "Tue Dec 26 18:14:13 +0000 2023", - "conversation_id_str": "1739711228459786441", + "created_at": "Sat Feb 10 12:56:30 +0000 2024", + "conversation_id_str": "1756301111584022806", "display_text_range": [ 0, - 0 + 131 ], "entities": { "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/EVTPY8XcIN", - "expanded_url": "https://twitter.com/McFaul/status/1739711228459786441/photo/1", - "id_str": "1739711224823283712", - "indices": [ - 0, - 23 - ], - "media_key": "3_1739711224823283712", - "media_url_https": "https://pbs.twimg.com/media/GCSyJD9aAAAglJs.jpg", - "type": "photo", - "url": "https://t.co/EVTPY8XcIN", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 506, - "y": 241, - "h": 392, - "w": 392 - } - ] - }, - "medium": { - "faces": [ - { - "x": 506, - "y": 241, - "h": 392, - "w": 392 - } - ] - }, - "small": { - "faces": [ - { - "x": 368, - "y": 175, - "h": 285, - "w": 285 - } - ] - }, - "orig": { - "faces": [ - { - "x": 506, - "y": 241, - "h": 392, - "w": 392 - } - ] - } - }, - "sizes": { - "large": { - "h": 935, - "w": 932, - "resize": "fit" - }, - "medium": { - "h": 935, - "w": 932, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 678, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 935, - "width": 932, - "focus_rects": [ - { - "x": 0, - "y": 413, - "w": 932, - "h": 522 - }, - { - "x": 0, - "y": 3, - "w": 932, - "h": 932 - }, - { - "x": 0, - "y": 0, - "w": 820, - "h": 935 - }, - { - "x": 69, - "y": 0, - "w": 468, - "h": 935 - }, - { - "x": 0, - "y": 0, - "w": 932, - "h": 935 - } - ] - } - } - ], "symbols": [], "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ + "urls": [ { - "display_url": "pic.twitter.com/EVTPY8XcIN", - "expanded_url": "https://twitter.com/McFaul/status/1739711228459786441/photo/1", - "id_str": "1739711224823283712", + "display_url": "podcasts.apple.com/gb/podcast/ukr…", + "expanded_url": "https://podcasts.apple.com/gb/podcast/ukraine-the-latest/id1612424182?i=1000644862801", + "url": "https://t.co/ul0GGk6T6J", "indices": [ - 0, - 23 - ], - "media_key": "3_1739711224823283712", - "media_url_https": "https://pbs.twimg.com/media/GCSyJD9aAAAglJs.jpg", - "type": "photo", - "url": "https://t.co/EVTPY8XcIN", - "ext_media_availability": { - "status": "Available" - }, - "features": { - "large": { - "faces": [ - { - "x": 506, - "y": 241, - "h": 392, - "w": 392 - } - ] - }, - "medium": { - "faces": [ - { - "x": 506, - "y": 241, - "h": 392, - "w": 392 - } - ] - }, - "small": { - "faces": [ - { - "x": 368, - "y": 175, - "h": 285, - "w": 285 - } - ] - }, - "orig": { - "faces": [ - { - "x": 506, - "y": 241, - "h": 392, - "w": 392 - } - ] - } - }, - "sizes": { - "large": { - "h": 935, - "w": 932, - "resize": "fit" - }, - "medium": { - "h": 935, - "w": 932, - "resize": "fit" - }, - "small": { - "h": 680, - "w": 678, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 935, - "width": 932, - "focus_rects": [ - { - "x": 0, - "y": 413, - "w": 932, - "h": 522 - }, - { - "x": 0, - "y": 3, - "w": 932, - "h": 932 - }, - { - "x": 0, - "y": 0, - "w": 820, - "h": 935 - }, - { - "x": 69, - "y": 0, - "w": 468, - "h": 935 - }, - { - "x": 0, - "y": 0, - "w": 932, - "h": 935 - } - ] - } + 108, + 131 + ] + } + ], + "user_mentions": [ + { + "id_str": "280822613", + "name": "Mark Galeotti", + "screen_name": "MarkGaleotti", + "indices": [ + 28, + 41 + ] } ] }, - "favorite_count": 7468, + "favorite_count": 22, "favorited": false, - "full_text": "https://t.co/EVTPY8XcIN", + "full_text": "Was fascinating to speak to @MarkGaleotti for this podcast, I do hope you find it as interesting as I did \n\nhttps://t.co/ul0GGk6T6J", "is_quote_status": false, - "lang": "zxx", + "lang": "en", "possibly_sensitive": false, "possibly_sensitive_editable": true, - "quote_count": 50, - "reply_count": 448, - "retweet_count": 1472, + "quote_count": 0, + "reply_count": 1, + "retweet_count": 3, "retweeted": false, - "user_id_str": "454099919", - "id_str": "1739711228459786441" + "user_id_str": "1412866484", + "id_str": "1756301111584022806" } } } @@ -57716,22 +2129,53320 @@ } }, { - "entryId": "cursor-top-1739819664587882497", - "sortIndex": "1739819664587882497", + "entryId": "tweet-1756307733064614026", + "sortIndex": "1756309211907620862", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756307733064614026", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", + "rest_id": "1462548977367359490", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Nov 21 22:30:41 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", + "entities": { + "description": { + "urls": [ + { + "display_url": "kyivindependent.com/membership/", + "expanded_url": "http://kyivindependent.com/membership/", + "url": "https://t.co/jsQiFkoveH", + "indices": [ + 17, + 40 + ] + }, + { + "display_url": "kyivindependent.com/membership/?in…", + "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", + "url": "https://t.co/eNwj76xa7a", + "indices": [ + 60, + 83 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "kyivindependent.com", + "expanded_url": "http://kyivindependent.com", + "url": "https://t.co/WZvsaFpT20", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 307, + "followers_count": 2090013, + "friends_count": 27, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 20010, + "location": "Kyiv", + "media_count": 3970, + "name": "The Kyiv Independent", + "normal_followers_count": 2090013, + "pinned_tweet_ids_str": [ + "1611768917151862784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivIndependent", + "statuses_count": 36943, + "translator_type": "none", + "url": "https://t.co/WZvsaFpT20", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1595086441079513088", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756307733064614026" + ], + "editable_until_msecs": "1707574968000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "8792", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE3NTYzMDc3MzI5NzY1NTgwODA=", + "text": "⚡️Movement of trucks at checkpoint on Polish border resumed after blockade by farmers.\n\nThe movement of trucks at the Shehyni-Medyka border checkpoint between Ukraine and Poland has been restored, Ukraine's State Border Guard Service reported on Feb. 10. Polish farmers launched a blockade at the Medyka-Shehyni crossing with Ukraine on Feb. 9. According to border control, the protest ended at 11:30 a.m. local time on Feb. 10 and 220 trucks are now expected to enter Ukraine.", + "entity_set": { + "hashtags": [], + "symbols": [], + "urls": [], + "user_mentions": [] + }, + "richtext": { + "richtext_tags": [] + }, + "media": { + "inline_media": [] + } + } + } + }, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:22:48 +0000 2024", + "conversation_id_str": "1756307733064614026", + "display_text_range": [ + 0, + 281 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 30, + "favorited": false, + "full_text": "⚡️Movement of trucks at checkpoint on Polish border resumed after blockade by farmers.\n\nThe movement of trucks at the Shehyni-Medyka border checkpoint between Ukraine and Poland has been restored, Ukraine's State Border Guard Service reported on Feb. 10. Polish farmers launched a…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 1, + "retweet_count": 5, + "retweeted": false, + "user_id_str": "1462548977367359490", + "id_str": "1756307733064614026" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756306886205362447", + "sortIndex": "1756309211907620861", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756306886205362447", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyODg1NDkzNTE5", + "rest_id": "2885493519", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Thu Nov 20 11:38:47 +0000 2014", + "default_profile": true, + "default_profile_image": false, + "description": "Minister of Foreign Affairs of Ukraine 🇺🇦 Міністр закордонних справ України", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "uk.m.wikipedia.org/wiki/Кулеба_Дм…", + "expanded_url": "https://uk.m.wikipedia.org/wiki/Кулеба_Дмитро_Іванович", + "url": "https://t.co/UqqVspzRtj", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 2408, + "followers_count": 1158725, + "friends_count": 240, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 8218, + "location": "Київ", + "media_count": 1775, + "name": "Dmytro Kuleba", + "normal_followers_count": 1158725, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2885493519/1670528669", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1589329247235182592/jXOx7Fvz_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "DmytroKuleba", + "statuses_count": 8216, + "translator_type": "none", + "url": "https://t.co/UqqVspzRtj", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756306886205362447" + ], + "editable_until_msecs": "1707574766000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "5721", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE3NTYzMDY4ODYxMjEzNTczMTI=", + "text": "Today you allow Putin to spread his insane genocidal propaganda, and the next day he strikes Kharkiv, killing seven people.\n\nRussians burned alive a paralyzed man and his wife, as well as an entire family of five: young parents, their children aged four and seven, and a newborn.\n\nInterviewing Putin in 2024 is akin to giving Hitler the floor in 1944. He must be defeated, not helped out to spread bloodthirsty lies.", + "entity_set": { + "hashtags": [], + "symbols": [], + "urls": [], + "user_mentions": [] + } + } + } + }, + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "created_at": "Sat Feb 10 13:19:26 +0000 2024", + "conversation_id_str": "1756306886205362447", + "display_text_range": [ + 0, + 280 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/wz9Wmd8L4v", + "expanded_url": "https://twitter.com/DmytroKuleba/status/1756306886205362447/photo/1", + "id_str": "1756306877351149568", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756306877351149568", + "media_url_https": "https://pbs.twimg.com/media/GF-nzLUXQAAmXDu.jpg", + "type": "photo", + "url": "https://t.co/wz9Wmd8L4v", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 851, + "y": 728, + "h": 57, + "w": 57 + } + ] + }, + "medium": { + "faces": [ + { + "x": 797, + "y": 682, + "h": 53, + "w": 53 + } + ] + }, + "small": { + "faces": [ + { + "x": 452, + "y": 386, + "h": 30, + "w": 30 + } + ] + }, + "orig": { + "faces": [ + { + "x": 851, + "y": 728, + "h": 57, + "w": 57 + } + ] + } + }, + "sizes": { + "large": { + "h": 852, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 799, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 852, + "width": 1280, + "focus_rects": [ + { + "x": 0, + "y": 135, + "w": 1280, + "h": 717 + }, + { + "x": 428, + "y": 0, + "w": 852, + "h": 852 + }, + { + "x": 533, + "y": 0, + "w": 747, + "h": 852 + }, + { + "x": 779, + "y": 0, + "w": 426, + "h": 852 + }, + { + "x": 0, + "y": 0, + "w": 1280, + "h": 852 + } + ] + } + }, + { + "display_url": "pic.twitter.com/wz9Wmd8L4v", + "expanded_url": "https://twitter.com/DmytroKuleba/status/1756306886205362447/photo/1", + "id_str": "1756306877384667136", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756306877384667136", + "media_url_https": "https://pbs.twimg.com/media/GF-nzLcWsAAUHNb.jpg", + "type": "photo", + "url": "https://t.co/wz9Wmd8L4v", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1600, + "h": 896 + }, + { + "x": 0, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + }, + { + "display_url": "pic.twitter.com/wz9Wmd8L4v", + "expanded_url": "https://twitter.com/DmytroKuleba/status/1756306886205362447/photo/1", + "id_str": "1756306877342715904", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756306877342715904", + "media_url_https": "https://pbs.twimg.com/media/GF-nzLSWkAACY1Y.jpg", + "type": "photo", + "url": "https://t.co/wz9Wmd8L4v", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 543, + "y": 881, + "h": 81, + "w": 81 + } + ] + }, + "medium": { + "faces": [ + { + "x": 407, + "y": 660, + "h": 60, + "w": 60 + } + ] + }, + "small": { + "faces": [ + { + "x": 230, + "y": 374, + "h": 34, + "w": 34 + } + ] + }, + "orig": { + "faces": [ + { + "x": 543, + "y": 881, + "h": 81, + "w": 81 + } + ] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 170, + "w": 1600, + "h": 896 + }, + { + "x": 467, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 533, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 734, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/wz9Wmd8L4v", + "expanded_url": "https://twitter.com/DmytroKuleba/status/1756306886205362447/photo/1", + "id_str": "1756306877351149568", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756306877351149568", + "media_url_https": "https://pbs.twimg.com/media/GF-nzLUXQAAmXDu.jpg", + "type": "photo", + "url": "https://t.co/wz9Wmd8L4v", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 851, + "y": 728, + "h": 57, + "w": 57 + } + ] + }, + "medium": { + "faces": [ + { + "x": 797, + "y": 682, + "h": 53, + "w": 53 + } + ] + }, + "small": { + "faces": [ + { + "x": 452, + "y": 386, + "h": 30, + "w": 30 + } + ] + }, + "orig": { + "faces": [ + { + "x": 851, + "y": 728, + "h": 57, + "w": 57 + } + ] + } + }, + "sizes": { + "large": { + "h": 852, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 799, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 852, + "width": 1280, + "focus_rects": [ + { + "x": 0, + "y": 135, + "w": 1280, + "h": 717 + }, + { + "x": 428, + "y": 0, + "w": 852, + "h": 852 + }, + { + "x": 533, + "y": 0, + "w": 747, + "h": 852 + }, + { + "x": 779, + "y": 0, + "w": 426, + "h": 852 + }, + { + "x": 0, + "y": 0, + "w": 1280, + "h": 852 + } + ] + } + }, + { + "display_url": "pic.twitter.com/wz9Wmd8L4v", + "expanded_url": "https://twitter.com/DmytroKuleba/status/1756306886205362447/photo/1", + "id_str": "1756306877384667136", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756306877384667136", + "media_url_https": "https://pbs.twimg.com/media/GF-nzLcWsAAUHNb.jpg", + "type": "photo", + "url": "https://t.co/wz9Wmd8L4v", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1600, + "h": 896 + }, + { + "x": 0, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + }, + { + "display_url": "pic.twitter.com/wz9Wmd8L4v", + "expanded_url": "https://twitter.com/DmytroKuleba/status/1756306886205362447/photo/1", + "id_str": "1756306877342715904", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756306877342715904", + "media_url_https": "https://pbs.twimg.com/media/GF-nzLSWkAACY1Y.jpg", + "type": "photo", + "url": "https://t.co/wz9Wmd8L4v", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 543, + "y": 881, + "h": 81, + "w": 81 + } + ] + }, + "medium": { + "faces": [ + { + "x": 407, + "y": 660, + "h": 60, + "w": 60 + } + ] + }, + "small": { + "faces": [ + { + "x": 230, + "y": 374, + "h": 34, + "w": 34 + } + ] + }, + "orig": { + "faces": [ + { + "x": 543, + "y": 881, + "h": 81, + "w": 81 + } + ] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 170, + "w": 1600, + "h": 896 + }, + { + "x": 467, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 533, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 734, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + } + ] + }, + "favorite_count": 210, + "favorited": false, + "full_text": "Today you allow Putin to spread his insane genocidal propaganda, and the next day he strikes Kharkiv, killing seven people.\n\nRussians burned alive a paralyzed man and his wife, as well as an entire family of five: young parents, their children aged four and seven, and a newborn.… https://t.co/wz9Wmd8L4v", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 12, + "reply_count": 10, + "retweet_count": 111, + "retweeted": false, + "user_id_str": "2885493519", + "id_str": "1756306886205362447" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756305638202785807", + "sortIndex": "1756309211907620860", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756305638202785807", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMzc4OTQ3NzY5MTg0OTc2ODk2", + "rest_id": "1378947769184976896", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Apr 05 05:49:20 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Aiden Aslin\nBritish national. \nUkrainian marine 2018-2022\nPress Enquires Contact Humfrey@hunterprofiles.com\nOrder Putin's Prisoner Via link down below", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linktr.ee/Cossackgundi?u…", + "expanded_url": "https://linktr.ee/Cossackgundi?utm_source=linktree_admin_share", + "url": "https://t.co/avg3IXp4r5", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 3954, + "followers_count": 123958, + "friends_count": 267, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1821, + "location": "Ukraine ", + "media_count": 567, + "name": "COSSACKGUNDI", + "normal_followers_count": 123958, + "pinned_tweet_ids_str": [ + "1666857718387290135" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1378947769184976896/1689946967", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1482420026753921026/rWZRbEqN_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "cossackgundi", + "statuses_count": 4168, + "translator_type": "none", + "url": "https://t.co/avg3IXp4r5", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1692598619482862021", + "professional_type": "Creator", + "category": [ + { + "id": 957, + "name": "Author", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756305638202785807" + ], + "editable_until_msecs": "1707574469385", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for Android", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:14:29 +0000 2024", + "conversation_id_str": "1756305638202785807", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1222773302441148416", + "name": "Visegrád 24", + "screen_name": "visegrad24", + "indices": [ + 3, + 14 + ] + }, + { + "id_str": "81055599", + "name": "Ministry of Foreign Affairs 🇵🇱", + "screen_name": "PolandMFA", + "indices": [ + 64, + 74 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @visegrad24: BREAKING:\n\nPoland’s Ministry of Foreign Affairs @PolandMFA issues a correction to 10 of the lies Putin told Tucker Carlson’…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 461, + "retweeted": false, + "user_id_str": "1378947769184976896", + "id_str": "1756305638202785807", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756283640374329645", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMjIyNzczMzAyNDQxMTQ4NDE2", + "rest_id": "1222773302441148416", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Thu Jan 30 06:48:04 +0000 2020", + "default_profile": true, + "default_profile_image": false, + "description": "Aggregating and curating news, politics and current affairs.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "buymeacoffee.com/visegrad24", + "expanded_url": "https://www.buymeacoffee.com/visegrad24", + "url": "https://t.co/GzBTWQG8Lb", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 35570, + "followers_count": 911382, + "friends_count": 1139, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 7989, + "location": "Visegrad", + "media_count": 24482, + "name": "Visegrád 24", + "normal_followers_count": 911382, + "pinned_tweet_ids_str": [ + "1722307496184832484" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1222773302441148416/1699220291", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1496244011044155402/2l00Uki5_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "visegrad24", + "statuses_count": 37960, + "translator_type": "none", + "url": "https://t.co/GzBTWQG8Lb", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1679839390804131841", + "professional_type": "Creator", + "category": [ + { + "id": 580, + "name": "Media & News Company", + "icon_name": "IconBriefcaseStroke" + } + ] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "initial_tweet_id": "1756275456041488866", + "edit_control_initial": { + "edit_tweet_ids": [ + "1756275456041488866", + "1756276898030563803", + "1756283640374329645" + ], + "editable_until_msecs": "1707567273000", + "is_edit_eligible": true, + "edits_remaining": "3" + } + }, + "previous_counts": { + "bookmark_count": 83, + "favorite_count": 631, + "quote_count": 19, + "reply_count": 70, + "retweet_count": 191 + }, + "is_translatable": false, + "views": { + "count": "87179", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE3NTYyODM2NDAwMDUxMzIyODk=", + "text": "BREAKING:\n\nPoland’s Ministry of Foreign Affairs @PolandMFA issues a correction to 10 of the lies Putin told Tucker Carlson’s audience during his interview\n\n1. Poland cooperated with Hitler’s Germany.\n\n———\nBefore World War II, Polish diplomacy tried to keep good neighbourly relations with Germany. Poland’s entering into any sort of military alliance with Hitler was out of question. In the period between the First and Second World Wars, Poland found itself between two aggressive neighbours: Germany and Russia, neither of which practically recognized Polish nation’s right to have an independent state. \n\nIn 1934, in Berlin, the German–Polish declaration of non-aggression was signed, which was intended to guarantee the settling of disputes by peaceful means. Even before that, in 1932, a similar non-aggression pact was signed with the USSR. \n\n2. Poles forced Hitler to start World War II against them. Why did Poland start the war on 1 September 1939? It was unwilling to cooperate. Hitler had nothing to do but start implementing his plans with Poland.\n\n————— \n\nThe Second Polish Republic rejected Hitler’s claims as well as his proposal to enter into a Polish-German alliance against the USSR. \n\nIt was Hitler’s Germany and the Soviet authorities that signed an agreement against Poland on 23 August 1939 (so-called Molotov-Ribbentrop Pact), which allowed Germany to assault Poland on 1 September 1939. Soviet Russia and Hitler’s Germany cooperated in concert until June 1941.\n\n3. Poland fell prey to the policies it had pursued against Czechoslovakia, as under the well-known Molotov-Ribbentrop Pact, part of that territory, including western Ukraine, was to be given to Russia.\n\n———-\nPoland did not participate in, nor was it a party to, the Munich Agreement (of 30 September 1938), which in fact heavily limited the sovereignty of Czechoslovakia. Polish claims regarding the Trans-Olza were made after the signing of the Munich Agreement.\n\n4. Thus Russia, which was then named the USSR, regained its historical lands.\n\n————\n\nThe USSR incorporated Poland’s eastern territory as the result of armed aggression (17 September 1939) while Poland was fending off the German invasion. \n\nIt stabbed the Polish state in the back. So-called people’s referenda held by the Soviets on Poland’s eastern borderlands were accompanied by terror and rigs. Lviv and the then provinces of Lviv and Stanisławów (today’s Western Ukraine) have never been a part of the Russian Empire. Nor was the Vilnius region a historical part of Russia.\n\n5. Ukraine is in fact an artificial state created by Lenin and Stalin.\n\n———\n\nToday’s Ukraine emerged as a state thanks to Ukrainian national movement. The Bolsheviks did not establish it but merely conquered its part to set up one of the Soviet republics. Ukraine emerged at the will of Ukrainians themselves.\n\n6. The left bank of the Dnieper, including Kyiv, is a historical Russian land.\n——— \n\nKyiv was the historical capital of Ruthenia, and Moscow did not exist at the time. In 1991, Ukraine became an independent state with internationally recognized borders.\n\n7. The idea of Ukrainians as a separate nation emerged in Poland.\n\n———-\n\nThe process of self-defining of Ukrainians as a separate ethnic group was paralleled by similar processes in 19th century Europe. Nobody “invented” the Ukrainian nation.\n\n8. NATO bases have been set up on the territory of Ukraine.\n\n———\n\nThere are no NATO bases on the territory of Ukraine.\n\n9. Two coups d’etat were committed in Ukraine to artificially break its ties with Russia.\n\n———\n\nDuring the Orange Revolution, the Ukrainian nation opposed to rigged elections. Holding a next round of voting allowed President Viktor Yushchenko to actually win the majority of votes. After the Revolution of Dignity, President Petro Poroshenko democratically won the presidential election.\n\n10. In 2014, Moscow was forced to defend Crimea because it was in jeopardy.\n\n——— \n\nThere was no threat to Crimea in 2014.", + "entity_set": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "81055599", + "name": "Ministry of Foreign Affairs 🇵🇱", + "screen_name": "PolandMFA", + "indices": [ + 48, + 58 + ] + } + ] + } + } + } + }, + "legacy": { + "bookmark_count": 153, + "bookmarked": false, + "created_at": "Sat Feb 10 11:47:04 +0000 2024", + "conversation_id_str": "1756283640374329645", + "display_text_range": [ + 0, + 274 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/x7kYhFz5eC", + "expanded_url": "https://twitter.com/visegrad24/status/1756283640374329645/photo/1", + "id_str": "1756276891810516992", + "indices": [ + 275, + 298 + ], + "media_key": "3_1756276891810516992", + "media_url_https": "https://pbs.twimg.com/media/GF-MhyeX0AAMOuW.jpg", + "type": "photo", + "url": "https://t.co/x7kYhFz5eC", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 120, + "y": 34, + "h": 50, + "w": 50 + }, + { + "x": 641, + "y": 347, + "h": 83, + "w": 83 + } + ] + }, + "medium": { + "faces": [ + { + "x": 120, + "y": 34, + "h": 50, + "w": 50 + }, + { + "x": 641, + "y": 347, + "h": 83, + "w": 83 + } + ] + }, + "small": { + "faces": [ + { + "x": 107, + "y": 30, + "h": 44, + "w": 44 + }, + { + "x": 573, + "y": 310, + "h": 74, + "w": 74 + } + ] + }, + "orig": { + "faces": [ + { + "x": 120, + "y": 34, + "h": 50, + "w": 50 + }, + { + "x": 641, + "y": 347, + "h": 83, + "w": 83 + } + ] + } + }, + "sizes": { + "large": { + "h": 507, + "w": 760, + "resize": "fit" + }, + "medium": { + "h": 507, + "w": 760, + "resize": "fit" + }, + "small": { + "h": 454, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 507, + "width": 760, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 760, + "h": 426 + }, + { + "x": 0, + "y": 0, + "w": 507, + "h": 507 + }, + { + "x": 0, + "y": 0, + "w": 445, + "h": 507 + }, + { + "x": 0, + "y": 0, + "w": 254, + "h": 507 + }, + { + "x": 0, + "y": 0, + "w": 760, + "h": 507 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "81055599", + "name": "Ministry of Foreign Affairs 🇵🇱", + "screen_name": "PolandMFA", + "indices": [ + 48, + 58 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/x7kYhFz5eC", + "expanded_url": "https://twitter.com/visegrad24/status/1756283640374329645/photo/1", + "id_str": "1756276891810516992", + "indices": [ + 275, + 298 + ], + "media_key": "3_1756276891810516992", + "media_url_https": "https://pbs.twimg.com/media/GF-MhyeX0AAMOuW.jpg", + "type": "photo", + "url": "https://t.co/x7kYhFz5eC", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 120, + "y": 34, + "h": 50, + "w": 50 + }, + { + "x": 641, + "y": 347, + "h": 83, + "w": 83 + } + ] + }, + "medium": { + "faces": [ + { + "x": 120, + "y": 34, + "h": 50, + "w": 50 + }, + { + "x": 641, + "y": 347, + "h": 83, + "w": 83 + } + ] + }, + "small": { + "faces": [ + { + "x": 107, + "y": 30, + "h": 44, + "w": 44 + }, + { + "x": 573, + "y": 310, + "h": 74, + "w": 74 + } + ] + }, + "orig": { + "faces": [ + { + "x": 120, + "y": 34, + "h": 50, + "w": 50 + }, + { + "x": 641, + "y": 347, + "h": 83, + "w": 83 + } + ] + } + }, + "sizes": { + "large": { + "h": 507, + "w": 760, + "resize": "fit" + }, + "medium": { + "h": 507, + "w": 760, + "resize": "fit" + }, + "small": { + "h": 454, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 507, + "width": 760, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 760, + "h": 426 + }, + { + "x": 0, + "y": 0, + "w": 507, + "h": 507 + }, + { + "x": 0, + "y": 0, + "w": 445, + "h": 507 + }, + { + "x": 0, + "y": 0, + "w": 254, + "h": 507 + }, + { + "x": 0, + "y": 0, + "w": 760, + "h": 507 + } + ] + } + } + ] + }, + "favorite_count": 1574, + "favorited": false, + "full_text": "BREAKING:\n\nPoland’s Ministry of Foreign Affairs @PolandMFA issues a correction to 10 of the lies Putin told Tucker Carlson’s audience during his interview\n\n1. Poland cooperated with Hitler’s Germany.\n\n———\nBefore World War II, Polish diplomacy tried to keep good neighbourly… https://t.co/x7kYhFz5eC", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 32, + "reply_count": 105, + "retweet_count": 461, + "retweeted": false, + "user_id_str": "1222773302441148416", + "id_str": "1756283640374329645" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756305421176852701", + "sortIndex": "1756309211907620859", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756305421176852701", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzIxNDUxNDQ=", + "rest_id": "172145144", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Thu Jul 29 00:50:34 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Vice President for Studies & James Family Chair @CarnegieEndow. \nGraphic novel out now! ACCIDENTAL CZAR: THE LIFE AND LIES OF VLADIMIR PUTIN https://t.co/zf76DeFTUP", + "entities": { + "description": { + "urls": [ + { + "display_url": "bit.ly/3DrClmy", + "expanded_url": "http://bit.ly/3DrClmy", + "url": "https://t.co/zf76DeFTUP", + "indices": [ + 141, + 164 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "andrewweiss.me", + "expanded_url": "http://andrewweiss.me", + "url": "https://t.co/odcR29y60A", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 12237, + "followers_count": 36278, + "friends_count": 3706, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1048, + "location": "Washington, DC", + "media_count": 1636, + "name": "Andrew S. Weiss", + "normal_followers_count": 36278, + "pinned_tweet_ids_str": [ + "1725482522782388227" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/172145144/1663948172", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1563250826805534723/PdG9k-YO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "andrewsweiss", + "statuses_count": 15444, + "translator_type": "none", + "url": "https://t.co/odcR29y60A", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756305421176852701" + ], + "editable_until_msecs": "1707574417642", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:13:37 +0000 2024", + "conversation_id_str": "1756305421176852701", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "262219168", + "name": "Illia Ponomarenko 🇺🇦", + "screen_name": "IAPonomarenko", + "indices": [ + 3, + 17 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @IAPonomarenko: Valeriy Zaluzhny.\n\nI remember the summer of 2021 - really a time an epoch away from now. \n\nThe excitement from having Ze…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 355, + "retweeted": false, + "user_id_str": "172145144", + "id_str": "1756305421176852701", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756080618666930268", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyNjIyMTkxNjg=", + "rest_id": "262219168", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Mar 07 16:23:56 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "Live straight out of Bucha\nBuy Me a Coffee: https://t.co/2jsZNdSj2u\nAlso find me on BlueSky: https://t.co/rqus6D0CZd", + "entities": { + "description": { + "urls": [ + { + "display_url": "buymeacoffee.com/saintanger", + "expanded_url": "http://buymeacoffee.com/saintanger", + "url": "https://t.co/2jsZNdSj2u", + "indices": [ + 44, + 67 + ] + }, + { + "display_url": "bsky.app/profile/iopono…", + "expanded_url": "https://bsky.app/profile/ioponomarenko.bsky.social", + "url": "https://t.co/rqus6D0CZd", + "indices": [ + 93, + 116 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 30260, + "followers_count": 1264012, + "friends_count": 1623, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 16880, + "location": "Bucha, Ukraine", + "media_count": 3679, + "name": "Illia Ponomarenko 🇺🇦", + "normal_followers_count": 1264012, + "pinned_tweet_ids_str": [ + "1749528038247653628" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/262219168/1688741071", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1739983483521372160/MU4SjC52_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "IAPonomarenko", + "statuses_count": 21282, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1473057187006234626", + "professional_type": "Creator", + "category": [ + { + "id": 955, + "name": "Journalist", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "initial_tweet_id": "1756080398944153628", + "edit_control_initial": { + "edit_tweet_ids": [ + "1756080398944153628", + "1756080618666930268" + ], + "editable_until_msecs": "1707520768000", + "is_edit_eligible": true, + "edits_remaining": "4" + } + }, + "previous_counts": { + "bookmark_count": 1, + "favorite_count": 7, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 1 + }, + "is_translatable": false, + "views": { + "count": "231430", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE3NTYwODA2MTgyMzA2NDQ3Mzc=", + "text": "Valeriy Zaluzhny.\n\nI remember the summer of 2021 - really a time an epoch away from now. \n\nThe excitement from having Zelensky, 'a brand new face' in charge of the nation and a hope of major changes, was long gone. \n\nZelensky was almost completely absorbed by 'the system'. Lots of shady characters standing behind his back, pulling strings, and whispering things in his ears. \n\nThe defense minister is an old grumpy post-Soviet military bureaucrat with an awkwardly incompetent spokesperson and repeatedly failing defense procurement plans.\n\nThe defense production reform, along with many other vital reforms, standing still. \n\nInstead, the inception of new bureaucratic monsters filled with shady characters that were mostly engaged in the same bureaucratic ping pong with little to no results seen on the ground. \n\nIt's the same old Ukrainian model of 'making two steps forward and then immediately a step back.'\n\nDefense Minister Andriy Taran and top general Ruslan Khomchak hated each other so much that they couldn't stay in the same room and literally waged a legal battle against each other. \n\nDisappointment was growing. \n\nAnd then, during one of Zelensky's never-ending team reshuffles, suddenly a new name pops up: General Valeriy Zaluzhny. \n\nI remember the 'Woooooooow' cry that rolled through the military and near-military community when Zaluzhny was appointed as the new commander-in-chief. \n\nNot many really knew him beyond the community back then. \n\nA career soldier who went through years of dark decay in the Ukrainian armed forces as a platoon commander then received an extensive military education and gained his stars and his experience in the battlefields of Donbas.\n\nOne of 'the new blood' brought up by the war of 2014-15 who miraculously managed to stay in the military and gain the reputation of a 'reasonable commander' to serve under, as many were saying those days. \n\nA fresh start with a new general in charge? Let's hope so.\n\nThe standing military in Donbas and civil society behind its back were humiliated and enraged by our own then-time own version of 'escalation management'. \n\nIn many outrageous incidents reported from the front, Ukrainian units were prohibited from returning fire upon Russian-led militants unless upon a direct order from high command. \n\nThe low-intensity standoff with Russian proxies, in many instances, was supposed to be a one-way road on which Ukrainian soldiers had to patiently observe yet another 'universal ceasefire regime and be closely watched by OSCE -- and Russian proxies could do anything they liked.\n\nMinsk accords, you know.\n\nAnd then came the days of October '21. \n\nYet another deadly incident near the town of Hranitne not far away from my hometown in Donbas. \n\nTwo Ukrainian troops injured, one killed in an artillery strike. The Ukrainian command demands an immediate ceasefire, to no reaction. \n\nAnd then a Bayraktar TB2 receives coordinates. \n\nA missile strike takes out a Russian D-30 howitzer, one of three deployed to the scene. The gun crew flees into the fields. \n\nThe enemy artillery finally gets the message and shuts up. \n\nThis was the Turkish-produced strike drone system's combat debut in Ukraine directly authorized by the commander-in-chief. \n\nThe strike was rather limited, yet it worked. Now it feels like a tiny episode - but it was a breath of hope that triggered a lot of enthusiasm in Ukraine. \n\nWe were tired of burying a company of our soldiers each year and listening to how Ukraine should 'show restraint' to avoid having Putin 'provoked.'\n\nThe new top general is not going to sit idle and watch his men die as the enemy spits on the 'ceasefire' and enjoys full impunity, we were thinking. \n\nIn the hell of the gathering storm of war and the full-scale invasion, we needed this burly guy with a smiley face and a calm pleasant voice. \n\nHe was and is an everyone's unifier beloved and respected including by Zelensky's most faithful haters. He is and has been the one absolutely everyone wanted to take a selfie with. \n\nWe needed his face on a TIME Magazine cover as the symbol of the Ukrainian military-- heroic, self-sacrificing, and shockingly effective against the Russian war machine -- and we needed the world to fall in love with The General, too. \n\nZaluzhny had a team and a plan. He would sometimes play the role of an adult in the room behind his boss. And he was getting things done, with as little as he could rely on, in the world's hardest military job. \n\nHe was, of course, not ideal as a military leader. \n\nThe Ukrainian military under his command remained impeded by systemic, deeply ingrained issues like endemic bueraucracy, lack of responsibility for decisions, and commanders often not keeping up with the actual situation on the ground. \n\nHe tried to be friendly and nice (although many would criticize such a style of leadership). And he tried to be the kind of commander you'd be terribly ashamed to let down. \n\nWe will now spend years scrutinizing his strategy and decisions, whether he was right or wrong to stick to his own vision for the 2023 counteroffensive and (reportedly) not to listen to what the Pentagon was suggesting instead. \n\nI think it's fair to say that, given the fact that his rights and wrongs were to spell the fate of countless thousands of people, he was as popular in the military as it could be reasonably expected. \n\nZaluzhny has absolutely deserved his golden star and his title of a national hero of Ukraine. \n\nI don't think Zelensky was right. Time will tell. \n\nWhat's good, however, is that the administration, despite all the stupid mess, managed to give the general a decent farewell, and Zelensky and Zaluzhny gave each other a sincere hug. \n\nI think Zaluzhny is going to have some rest, maybe some lecturing at military academies, a New York Times bestselling book of memoirs, and then - an interesting future in the public square.\n\nPost-war time, maybe? \n\nLastly, General Zaluzhny was a wartime commander-in-chief one (well, at least many of us) could shoot a message to on Facebook and get something done. \n\nBack in the day, a good friend of ours, TV journalist Volodymyr Runets, bought off all TIME copies featuring Zaluzhny he could find when we were in Brussels for a NATO session. \n\nI also tried to get at least a dozen more when I was in Amsterdam later - but nope. \n\nA Facebook message to the big guy - and some dozen copies signed and sold off to get the money and buy drones for the military. \n\nI think that was beautiful.\n\nSupport my work: https://t.co/j4T7XvJnUN", + "entity_set": { + "hashtags": [], + "symbols": [], + "urls": [ + { + "display_url": "buymeacoffee.com/saintanger", + "expanded_url": "https://www.buymeacoffee.com/saintanger", + "url": "https://t.co/j4T7XvJnUN", + "indices": [ + 6515, + 6538 + ] + } + ], + "user_mentions": [] + }, + "richtext": { + "richtext_tags": [] + }, + "media": { + "inline_media": [] + } + } + } + }, + "legacy": { + "bookmark_count": 270, + "bookmarked": false, + "created_at": "Fri Feb 09 22:20:20 +0000 2024", + "conversation_id_str": "1756080618666930268", + "display_text_range": [ + 0, + 279 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/EWiBGQhgJG", + "expanded_url": "https://twitter.com/IAPonomarenko/status/1756080618666930268/photo/1", + "id_str": "1756028509992992768", + "indices": [ + 280, + 303 + ], + "media_key": "3_1756028509992992768", + "media_url_https": "https://pbs.twimg.com/media/GF6qoEGXQAAzHGD.jpg", + "type": "photo", + "url": "https://t.co/EWiBGQhgJG", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 711, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 667, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 378, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 711, + "width": 1280, + "focus_rects": [ + { + "x": 10, + "y": 0, + "w": 1270, + "h": 711 + }, + { + "x": 316, + "y": 0, + "w": 711, + "h": 711 + }, + { + "x": 359, + "y": 0, + "w": 624, + "h": 711 + }, + { + "x": 493, + "y": 0, + "w": 356, + "h": 711 + }, + { + "x": 0, + "y": 0, + "w": 1280, + "h": 711 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/EWiBGQhgJG", + "expanded_url": "https://twitter.com/IAPonomarenko/status/1756080618666930268/photo/1", + "id_str": "1756028509992992768", + "indices": [ + 280, + 303 + ], + "media_key": "3_1756028509992992768", + "media_url_https": "https://pbs.twimg.com/media/GF6qoEGXQAAzHGD.jpg", + "type": "photo", + "url": "https://t.co/EWiBGQhgJG", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 711, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 667, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 378, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 711, + "width": 1280, + "focus_rects": [ + { + "x": 10, + "y": 0, + "w": 1270, + "h": 711 + }, + { + "x": 316, + "y": 0, + "w": 711, + "h": 711 + }, + { + "x": 359, + "y": 0, + "w": 624, + "h": 711 + }, + { + "x": 493, + "y": 0, + "w": 356, + "h": 711 + }, + { + "x": 0, + "y": 0, + "w": 1280, + "h": 711 + } + ] + } + } + ] + }, + "favorite_count": 2823, + "favorited": false, + "full_text": "Valeriy Zaluzhny.\n\nI remember the summer of 2021 - really a time an epoch away from now. \n\nThe excitement from having Zelensky, 'a brand new face' in charge of the nation and a hope of major changes, was long gone. \n\nZelensky was almost completely absorbed by 'the system'. Lots… https://t.co/EWiBGQhgJG", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 20, + "reply_count": 90, + "retweet_count": 355, + "retweeted": false, + "user_id_str": "262219168", + "id_str": "1756080618666930268" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756304820611203582", + "sortIndex": "1756309211907620858", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756304820611203582", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjMwMTg2NTM=", + "rest_id": "163018653", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Jul 05 09:44:27 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Ambassador-at-large @MFA_Ukraine, Amb to Austria (2014-2021). Author of “Ukraine vs Darkness. Undiplomatic Thoughts”. Personal account.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amazon.com/Ukraine-vs-Dar…", + "expanded_url": "https://www.amazon.com/Ukraine-vs-Darkness-Undiplomatic-Ukrainian-ebook/dp/B08WKF3B2K", + "url": "https://t.co/ERA9Ntt061", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 28758, + "followers_count": 264429, + "friends_count": 1248, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 4354, + "location": "Kyiv", + "media_count": 6624, + "name": "olexander scherba🇺🇦", + "normal_followers_count": 264429, + "pinned_tweet_ids_str": [ + "1396956590713020416" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/163018653/1646220178", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671642770549956608/yR9Is6BD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "olex_scherba", + "statuses_count": 40000, + "translator_type": "none", + "url": "https://t.co/ERA9Ntt061", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1696586841602834861", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756304820611203582" + ], + "editable_until_msecs": "1707574274456", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:11:14 +0000 2024", + "conversation_id_str": "1756304820611203582", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "132512167", + "name": "(((Tendar)))", + "screen_name": "Tendar", + "indices": [ + 3, + 10 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @Tendar: Starlink in the hands of the Russian military and operational should be investigated by the US Congress and the European Union.…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 165, + "retweeted": false, + "user_id_str": "163018653", + "id_str": "1756304820611203582", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756303107523228072", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMzI1MTIxNjc=", + "rest_id": "132512167", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Apr 13 13:00:02 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Tyrants are my enemies | Si vis pacem para bellum |🇩🇪🇪🇺| Das Böse triumphiert allein dadurch, dass gute Menschen nichts unternehmen |Military & History", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 3720, + "followers_count": 337950, + "friends_count": 754, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 4818, + "location": "Germany", + "media_count": 5941, + "name": "(((Tendar)))", + "normal_followers_count": 337950, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132512167/1592079674", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1312810318951837696/SCyllslq_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "Tendar", + "statuses_count": 46008, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756303107523228072" + ], + "editable_until_msecs": "1707573866000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "21331", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE3NTYzMDMxMDczODA2NjIyNzI=", + "text": "Starlink in the hands of the Russian military and operational should be investigated by the US Congress and the European Union. If the company aided and abetted Russia or even just rejected to curb its use for military means by Russia, then I see a violation of export control.\n\nSource of Pics: https://t.co/qg56PHl7hP\n\n#Russia #Ukraine", + "entity_set": { + "hashtags": [ + { + "indices": [ + 320, + 327 + ], + "text": "Russia" + }, + { + "indices": [ + 328, + 336 + ], + "text": "Ukraine" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "t.me/uniannet/125272", + "expanded_url": "https://t.me/uniannet/125272", + "url": "https://t.co/qg56PHl7hP", + "indices": [ + 295, + 318 + ] + } + ], + "user_mentions": [] + } + } + } + }, + "legacy": { + "bookmark_count": 13, + "bookmarked": false, + "created_at": "Sat Feb 10 13:04:26 +0000 2024", + "conversation_id_str": "1756303107523228072", + "display_text_range": [ + 0, + 278 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/f8jaE8IqRD", + "expanded_url": "https://twitter.com/Tendar/status/1756303107523228072/photo/1", + "id_str": "1756303102037147648", + "indices": [ + 279, + 302 + ], + "media_key": "3_1756303102037147648", + "media_url_https": "https://pbs.twimg.com/media/GF-kXbLXQAAd3ik.jpg", + "type": "photo", + "url": "https://t.co/f8jaE8IqRD", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 394, + "w": 860, + "resize": "fit" + }, + "medium": { + "h": 394, + "w": 860, + "resize": "fit" + }, + "small": { + "h": 312, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 394, + "width": 860, + "focus_rects": [ + { + "x": 98, + "y": 0, + "w": 704, + "h": 394 + }, + { + "x": 253, + "y": 0, + "w": 394, + "h": 394 + }, + { + "x": 277, + "y": 0, + "w": 346, + "h": 394 + }, + { + "x": 352, + "y": 0, + "w": 197, + "h": 394 + }, + { + "x": 0, + "y": 0, + "w": 860, + "h": 394 + } + ] + } + }, + { + "display_url": "pic.twitter.com/f8jaE8IqRD", + "expanded_url": "https://twitter.com/Tendar/status/1756303107523228072/photo/1", + "id_str": "1756303102020358144", + "indices": [ + 279, + 302 + ], + "media_key": "3_1756303102020358144", + "media_url_https": "https://pbs.twimg.com/media/GF-kXbHXEAAk8Ft.jpg", + "type": "photo", + "url": "https://t.co/f8jaE8IqRD", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1280, + "w": 960, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 900, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 510, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1280, + "width": 960, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 960, + "h": 538 + }, + { + "x": 0, + "y": 0, + "w": 960, + "h": 960 + }, + { + "x": 0, + "y": 0, + "w": 960, + "h": 1094 + }, + { + "x": 160, + "y": 0, + "w": 640, + "h": 1280 + }, + { + "x": 0, + "y": 0, + "w": 960, + "h": 1280 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/f8jaE8IqRD", + "expanded_url": "https://twitter.com/Tendar/status/1756303107523228072/photo/1", + "id_str": "1756303102037147648", + "indices": [ + 279, + 302 + ], + "media_key": "3_1756303102037147648", + "media_url_https": "https://pbs.twimg.com/media/GF-kXbLXQAAd3ik.jpg", + "type": "photo", + "url": "https://t.co/f8jaE8IqRD", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 394, + "w": 860, + "resize": "fit" + }, + "medium": { + "h": 394, + "w": 860, + "resize": "fit" + }, + "small": { + "h": 312, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 394, + "width": 860, + "focus_rects": [ + { + "x": 98, + "y": 0, + "w": 704, + "h": 394 + }, + { + "x": 253, + "y": 0, + "w": 394, + "h": 394 + }, + { + "x": 277, + "y": 0, + "w": 346, + "h": 394 + }, + { + "x": 352, + "y": 0, + "w": 197, + "h": 394 + }, + { + "x": 0, + "y": 0, + "w": 860, + "h": 394 + } + ] + } + }, + { + "display_url": "pic.twitter.com/f8jaE8IqRD", + "expanded_url": "https://twitter.com/Tendar/status/1756303107523228072/photo/1", + "id_str": "1756303102020358144", + "indices": [ + 279, + 302 + ], + "media_key": "3_1756303102020358144", + "media_url_https": "https://pbs.twimg.com/media/GF-kXbHXEAAk8Ft.jpg", + "type": "photo", + "url": "https://t.co/f8jaE8IqRD", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1280, + "w": 960, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 900, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 510, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1280, + "width": 960, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 960, + "h": 538 + }, + { + "x": 0, + "y": 0, + "w": 960, + "h": 960 + }, + { + "x": 0, + "y": 0, + "w": 960, + "h": 1094 + }, + { + "x": 160, + "y": 0, + "w": 640, + "h": 1280 + }, + { + "x": 0, + "y": 0, + "w": 960, + "h": 1280 + } + ] + } + } + ] + }, + "favorite_count": 712, + "favorited": false, + "full_text": "Starlink in the hands of the Russian military and operational should be investigated by the US Congress and the European Union. If the company aided and abetted Russia or even just rejected to curb its use for military means by Russia, then I see a violation of export control.… https://t.co/f8jaE8IqRD", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 4, + "reply_count": 39, + "retweet_count": 165, + "retweeted": false, + "user_id_str": "132512167", + "id_str": "1756303107523228072" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756304755847000133", + "sortIndex": "1756309211907620857", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756304755847000133", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjMwMTg2NTM=", + "rest_id": "163018653", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Jul 05 09:44:27 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Ambassador-at-large @MFA_Ukraine, Amb to Austria (2014-2021). Author of “Ukraine vs Darkness. Undiplomatic Thoughts”. Personal account.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amazon.com/Ukraine-vs-Dar…", + "expanded_url": "https://www.amazon.com/Ukraine-vs-Darkness-Undiplomatic-Ukrainian-ebook/dp/B08WKF3B2K", + "url": "https://t.co/ERA9Ntt061", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 28758, + "followers_count": 264429, + "friends_count": 1248, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 4354, + "location": "Kyiv", + "media_count": 6624, + "name": "olexander scherba🇺🇦", + "normal_followers_count": 264429, + "pinned_tweet_ids_str": [ + "1396956590713020416" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/163018653/1646220178", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671642770549956608/yR9Is6BD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "olex_scherba", + "statuses_count": 40000, + "translator_type": "none", + "url": "https://t.co/ERA9Ntt061", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1696586841602834861", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756304755847000133" + ], + "editable_until_msecs": "1707574259015", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:10:59 +0000 2024", + "conversation_id_str": "1756304755847000133", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1537130875296563200", + "name": "Jay in Kyiv", + "screen_name": "JayinKyiv", + "indices": [ + 3, + 13 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @JayinKyiv: Murdered by Russians in their car while trying to flee the Russian occupied area of Zaporizhia, Anna Rodzina and Danilo Svyr…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 166, + "retweeted": false, + "user_id_str": "163018653", + "id_str": "1756304755847000133", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756301811688825102", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTM3MTMwODc1Mjk2NTYzMjAw", + "rest_id": "1537130875296563200", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed Jun 15 17:54:58 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "American in Ukraine\n\nhttps://t.co/ecJv657h6u", + "entities": { + "description": { + "urls": [ + { + "display_url": "buymeacoffee.com/jayinkyiv", + "expanded_url": "https://www.buymeacoffee.com/jayinkyiv", + "url": "https://t.co/ecJv657h6u", + "indices": [ + 21, + 44 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "prytulafoundation.org", + "expanded_url": "https://prytulafoundation.org/", + "url": "https://t.co/iJ6X5XGm56", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 31478, + "followers_count": 76355, + "friends_count": 1370, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 1708, + "location": "Kyiv", + "media_count": 8715, + "name": "Jay in Kyiv", + "normal_followers_count": 76355, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1677733643811160065/KvmrKArN_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "JayinKyiv", + "statuses_count": 25611, + "translator_type": "none", + "url": "https://t.co/iJ6X5XGm56", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756301811688825102" + ], + "editable_until_msecs": "1707573557000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "9227", + "state": "EnabledWithCount" + }, + "source": "Twitter for Android", + "legacy": { + "bookmark_count": 7, + "bookmarked": false, + "created_at": "Sat Feb 10 12:59:17 +0000 2024", + "conversation_id_str": "1756301811688825102", + "display_text_range": [ + 0, + 150 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/SHs39autIF", + "expanded_url": "https://twitter.com/JayinKyiv/status/1756301811688825102/photo/1", + "id_str": "1756301809583333376", + "indices": [ + 151, + 174 + ], + "media_key": "3_1756301809583333376", + "media_url_https": "https://pbs.twimg.com/media/GF-jMMaXIAAUrOF.jpg", + "type": "photo", + "url": "https://t.co/SHs39autIF", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 286, + "y": 88, + "h": 230, + "w": 230 + } + ] + }, + "medium": { + "faces": [ + { + "x": 286, + "y": 88, + "h": 230, + "w": 230 + } + ] + }, + "small": { + "faces": [ + { + "x": 286, + "y": 88, + "h": 230, + "w": 230 + } + ] + }, + "orig": { + "faces": [ + { + "x": 286, + "y": 88, + "h": 230, + "w": 230 + } + ] + } + }, + "sizes": { + "large": { + "h": 568, + "w": 611, + "resize": "fit" + }, + "medium": { + "h": 568, + "w": 611, + "resize": "fit" + }, + "small": { + "h": 568, + "w": 611, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 568, + "width": 611, + "focus_rects": [ + { + "x": 0, + "y": 58, + "w": 611, + "h": 342 + }, + { + "x": 43, + "y": 0, + "w": 568, + "h": 568 + }, + { + "x": 113, + "y": 0, + "w": 498, + "h": 568 + }, + { + "x": 270, + "y": 0, + "w": 284, + "h": 568 + }, + { + "x": 0, + "y": 0, + "w": 611, + "h": 568 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/SHs39autIF", + "expanded_url": "https://twitter.com/JayinKyiv/status/1756301811688825102/photo/1", + "id_str": "1756301809583333376", + "indices": [ + 151, + 174 + ], + "media_key": "3_1756301809583333376", + "media_url_https": "https://pbs.twimg.com/media/GF-jMMaXIAAUrOF.jpg", + "type": "photo", + "url": "https://t.co/SHs39autIF", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 286, + "y": 88, + "h": 230, + "w": 230 + } + ] + }, + "medium": { + "faces": [ + { + "x": 286, + "y": 88, + "h": 230, + "w": 230 + } + ] + }, + "small": { + "faces": [ + { + "x": 286, + "y": 88, + "h": 230, + "w": 230 + } + ] + }, + "orig": { + "faces": [ + { + "x": 286, + "y": 88, + "h": 230, + "w": 230 + } + ] + } + }, + "sizes": { + "large": { + "h": 568, + "w": 611, + "resize": "fit" + }, + "medium": { + "h": 568, + "w": 611, + "resize": "fit" + }, + "small": { + "h": 568, + "w": 611, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 568, + "width": 611, + "focus_rects": [ + { + "x": 0, + "y": 58, + "w": 611, + "h": 342 + }, + { + "x": 43, + "y": 0, + "w": 568, + "h": 568 + }, + { + "x": 113, + "y": 0, + "w": 498, + "h": 568 + }, + { + "x": 270, + "y": 0, + "w": 284, + "h": 568 + }, + { + "x": 0, + "y": 0, + "w": 611, + "h": 568 + } + ] + } + } + ] + }, + "favorite_count": 466, + "favorited": false, + "full_text": "Murdered by Russians in their car while trying to flee the Russian occupied area of Zaporizhia, Anna Rodzina and Danilo Svyridenko, both 19 years old. https://t.co/SHs39autIF", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 16, + "reply_count": 23, + "retweet_count": 166, + "retweeted": false, + "user_id_str": "1537130875296563200", + "id_str": "1756301811688825102" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756304597725974893", + "sortIndex": "1756309211907620856", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756304597725974893", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjMwMTg2NTM=", + "rest_id": "163018653", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Jul 05 09:44:27 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Ambassador-at-large @MFA_Ukraine, Amb to Austria (2014-2021). Author of “Ukraine vs Darkness. Undiplomatic Thoughts”. Personal account.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amazon.com/Ukraine-vs-Dar…", + "expanded_url": "https://www.amazon.com/Ukraine-vs-Darkness-Undiplomatic-Ukrainian-ebook/dp/B08WKF3B2K", + "url": "https://t.co/ERA9Ntt061", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 28758, + "followers_count": 264429, + "friends_count": 1248, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 4354, + "location": "Kyiv", + "media_count": 6624, + "name": "olexander scherba🇺🇦", + "normal_followers_count": 264429, + "pinned_tweet_ids_str": [ + "1396956590713020416" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/163018653/1646220178", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671642770549956608/yR9Is6BD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "olex_scherba", + "statuses_count": 40000, + "translator_type": "none", + "url": "https://t.co/ERA9Ntt061", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1696586841602834861", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756304597725974893" + ], + "editable_until_msecs": "1707574221316", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:10:21 +0000 2024", + "conversation_id_str": "1756304597725974893", + "display_text_range": [ + 0, + 139 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "2657033400", + "name": "Kateryna Yushchenko 🌻 🇺🇦", + "screen_name": "KatyaYushchenko", + "indices": [ + 3, + 19 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @KatyaYushchenko: This is who should be interviewing dictator putin, but she can’t, because she was murdered in 2006 as a gift to putin…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 123, + "retweeted": false, + "user_id_str": "163018653", + "id_str": "1756304597725974893", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756299523339489653", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyNjU3MDMzNDAw", + "rest_id": "2657033400", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Fri Jul 18 16:04:55 +0000 2014", + "default_profile": false, + "default_profile_image": false, + "description": "Passionate about UKRAINE, freedom, economics, history, technology. Georgetown SFS, Chicago Booth.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 48011, + "followers_count": 38900, + "friends_count": 2196, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 826, + "location": "Kyiv", + "media_count": 440, + "name": "Kateryna Yushchenko 🌻 🇺🇦", + "normal_followers_count": 38900, + "pinned_tweet_ids_str": [ + "1734510389377818997" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2657033400/1471280447", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1548396476346224640/YiMTC3J8_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KatyaYushchenko", + "statuses_count": 21627, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756299523339489653" + ], + "editable_until_msecs": "1707573011000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "4670", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 3, + "bookmarked": false, + "created_at": "Sat Feb 10 12:50:11 +0000 2024", + "conversation_id_str": "1756299523339489653", + "display_text_range": [ + 0, + 214 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 136, + 152 + ], + "text": "AnnaPolitkovska" + }, + { + "indices": [ + 206, + 213 + ], + "text": "tucker" + } + ], + "media": [ + { + "display_url": "pic.twitter.com/6FwTwE4VHY", + "expanded_url": "https://twitter.com/KatyaYushchenko/status/1756299523339489653/photo/1", + "id_str": "1756299518952316929", + "indices": [ + 215, + 238 + ], + "media_key": "3_1756299518952316929", + "media_url_https": "https://pbs.twimg.com/media/GF-hG3JXoAEHYbF.jpg", + "type": "photo", + "url": "https://t.co/6FwTwE4VHY", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 244, + "y": 49, + "h": 489, + "w": 489 + } + ] + }, + "medium": { + "faces": [ + { + "x": 244, + "y": 49, + "h": 489, + "w": 489 + } + ] + }, + "small": { + "faces": [ + { + "x": 171, + "y": 34, + "h": 342, + "w": 342 + } + ] + }, + "orig": { + "faces": [ + { + "x": 244, + "y": 49, + "h": 489, + "w": 489 + } + ] + } + }, + "sizes": { + "large": { + "h": 799, + "w": 970, + "resize": "fit" + }, + "medium": { + "h": 799, + "w": 970, + "resize": "fit" + }, + "small": { + "h": 560, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 799, + "width": 970, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 970, + "h": 543 + }, + { + "x": 12, + "y": 0, + "w": 799, + "h": 799 + }, + { + "x": 61, + "y": 0, + "w": 701, + "h": 799 + }, + { + "x": 211, + "y": 0, + "w": 400, + "h": 799 + }, + { + "x": 0, + "y": 0, + "w": 970, + "h": 799 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/6FwTwE4VHY", + "expanded_url": "https://twitter.com/KatyaYushchenko/status/1756299523339489653/photo/1", + "id_str": "1756299518952316929", + "indices": [ + 215, + 238 + ], + "media_key": "3_1756299518952316929", + "media_url_https": "https://pbs.twimg.com/media/GF-hG3JXoAEHYbF.jpg", + "type": "photo", + "url": "https://t.co/6FwTwE4VHY", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 244, + "y": 49, + "h": 489, + "w": 489 + } + ] + }, + "medium": { + "faces": [ + { + "x": 244, + "y": 49, + "h": 489, + "w": 489 + } + ] + }, + "small": { + "faces": [ + { + "x": 171, + "y": 34, + "h": 342, + "w": 342 + } + ] + }, + "orig": { + "faces": [ + { + "x": 244, + "y": 49, + "h": 489, + "w": 489 + } + ] + } + }, + "sizes": { + "large": { + "h": 799, + "w": 970, + "resize": "fit" + }, + "medium": { + "h": 799, + "w": 970, + "resize": "fit" + }, + "small": { + "h": 560, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 799, + "width": 970, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 970, + "h": 543 + }, + { + "x": 12, + "y": 0, + "w": 799, + "h": 799 + }, + { + "x": 61, + "y": 0, + "w": 701, + "h": 799 + }, + { + "x": 211, + "y": 0, + "w": 400, + "h": 799 + }, + { + "x": 0, + "y": 0, + "w": 970, + "h": 799 + } + ] + } + } + ] + }, + "favorite_count": 298, + "favorited": false, + "full_text": "This is who should be interviewing dictator putin, but she can’t, because she was murdered in 2006 as a gift to putin on his birthday. #AnnaPolitkovska was a brave journalist, not a traitor and clown like #tucker. https://t.co/6FwTwE4VHY", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 4, + "reply_count": 11, + "retweet_count": 123, + "retweeted": false, + "user_id_str": "2657033400", + "id_str": "1756299523339489653" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756302833316499853", + "sortIndex": "1756309211907620855", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756302833316499853", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NDA4MzE4Nw==", + "rest_id": "84083187", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Oct 21 13:42:34 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Ukraine Correspondent. British-Lebanese conflict journalist & filmmaker based in Kyiv. Co-host of @DrillPod. RTs ≠ endorsement.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ko-fi.com/ozkaterji", + "expanded_url": "http://ko-fi.com/ozkaterji", + "url": "https://t.co/FC9pQbgXa4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 45500, + "followers_count": 215887, + "friends_count": 11666, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3397, + "location": "Kyiv, Ukraine", + "media_count": 6412, + "name": "Oz Katerji", + "normal_followers_count": 215887, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84083187/1647382697", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713181637574275072/gUp8KMF4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OzKaterji", + "statuses_count": 174699, + "translator_type": "none", + "url": "https://t.co/FC9pQbgXa4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/nvLWpaILAs", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 414, + "width": 790, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 150, + "width": 276, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "أكّد مدير إدارة مكافحة المخدرات الأردنية السابق، اللواء طايل المجالي، أن \"جهات رسمية\" تقف وراء عمليات تصنيع وتهريب المخدرات في الداخل السوري", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.syria.tv", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 320, + "width": 588, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 430, + "width": 790, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 414, + "width": 790, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 78, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "creator", + "value": { + "type": "USER", + "user_value": { + "id_str": "853507499181432832", + "path": [] + } + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 430, + "width": 790, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 430, + "width": 790, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "syria.tv", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 151, + "green": 170, + "red": 183 + }, + "percentage": 64.34 + }, + { + "rgb": { + "blue": 87, + "green": 100, + "red": 114 + }, + "percentage": 26.8 + }, + { + "rgb": { + "blue": 110, + "green": 112, + "red": 111 + }, + "percentage": 4.51 + }, + { + "rgb": { + "blue": 115, + "green": 144, + "red": 172 + }, + "percentage": 2.71 + }, + { + "rgb": { + "blue": 39, + "green": 42, + "red": 101 + }, + "percentage": 0.59 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "مدير مكافحة المخدرات الأردني السابق لتلفزيون سوريا: وراء المخدرات جهات رسمية", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 151, + "green": 170, + "red": 183 + }, + "percentage": 64.34 + }, + { + "rgb": { + "blue": 87, + "green": 100, + "red": 114 + }, + "percentage": 26.8 + }, + { + "rgb": { + "blue": 110, + "green": 112, + "red": 111 + }, + "percentage": 4.51 + }, + { + "rgb": { + "blue": 115, + "green": 144, + "red": 172 + }, + "percentage": 2.71 + }, + { + "rgb": { + "blue": 39, + "green": 42, + "red": 101 + }, + "percentage": 0.59 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 430, + "width": 790, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 151, + "green": 170, + "red": 183 + }, + "percentage": 64.34 + }, + { + "rgb": { + "blue": 87, + "green": 100, + "red": 114 + }, + "percentage": 26.8 + }, + { + "rgb": { + "blue": 110, + "green": 112, + "red": 111 + }, + "percentage": 4.51 + }, + { + "rgb": { + "blue": 115, + "green": 144, + "red": 172 + }, + "percentage": 2.71 + }, + { + "rgb": { + "blue": 39, + "green": 42, + "red": 101 + }, + "percentage": 0.59 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 430, + "width": 790, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/nvLWpaILAs", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 430, + "width": 790, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/nvLWpaILAs", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjo4NTM1MDc0OTkxODE0MzI4MzI=", + "rest_id": "853507499181432832", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Apr 16 07:17:00 +0000 2017", + "default_profile": false, + "default_profile_image": false, + "description": "تلفزيون سوريا: خدمة إعلامية تعلي من أسس المهنية والموضوعية والانفتاح في عملها مع انحياز قيمي للإنسان السوري في حريته \nتابعونا على تيليجرام: https://t.co/PzbzNEfTrC", + "entities": { + "description": { + "urls": [ + { + "display_url": "t.me/TelevisionSyria", + "expanded_url": "http://t.me/TelevisionSyria", + "url": "https://t.co/PzbzNEfTrC", + "indices": [ + 140, + 163 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "syria.tv", + "expanded_url": "https://www.syria.tv", + "url": "https://t.co/c1M7F0n99W", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 107, + "followers_count": 681139, + "friends_count": 68, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 539, + "location": "Istanbul ", + "media_count": 81746, + "name": "تلفزيون سوريا", + "normal_followers_count": 681139, + "pinned_tweet_ids_str": [ + "1756303355838714091" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/853507499181432832/1704091732", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/926011190056247296/gU9CfRj0_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "syr_television", + "statuses_count": 161528, + "translator_type": "none", + "url": "https://t.co/c1M7F0n99W", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1465310342322565120", + "professional_type": "Business", + "category": [ + { + "id": 580, + "name": "Media & News Company", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + ] + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756302833316499853" + ], + "editable_until_msecs": "1707573800648", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:03:20 +0000 2024", + "conversation_id_str": "1756302833316499853", + "display_text_range": [ + 0, + 139 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "3978224638", + "name": "Qalaat Al Mudiq", + "screen_name": "QalaatAlMudiq", + "indices": [ + 3, + 17 + ] + }, + { + "id_str": "853507499181432832", + "name": "تلفزيون سوريا", + "screen_name": "syr_television", + "indices": [ + 29, + 44 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @QalaatAlMudiq: Exclusive @syr_television interview w/ former Director of Jordanian Anti-Narcotics Department, General Majali:\n- Syrian…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 6, + "retweeted": false, + "user_id_str": "84083187", + "id_str": "1756302833316499853", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756298968932270135", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozOTc4MjI0NjM4", + "rest_id": "3978224638", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sat Oct 17 08:24:22 +0000 2015", + "default_profile": false, + "default_profile_image": false, + "description": "Dr in History. Syria, Military News. Fact Checking. Tracking Captagon in MENA & Russians who fought in Syria slain in Ukraine. More on https://t.co/zFWgpQOwjM", + "entities": { + "description": { + "urls": [ + { + "display_url": "t.me/QalaatM", + "expanded_url": "https://t.me/QalaatM", + "url": "https://t.co/zFWgpQOwjM", + "indices": [ + 135, + 158 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 956, + "followers_count": 52087, + "friends_count": 219, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1070, + "location": "", + "media_count": 16581, + "name": "Qalaat Al Mudiq", + "normal_followers_count": 52087, + "pinned_tweet_ids_str": [ + "1505971389114814479" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3978224638/1445076462", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/655306005929185280/EqnrbihG_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "QalaatAlMudiq", + "statuses_count": 31127, + "translator_type": "regular", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/nvLWpaILAs", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 414, + "width": 790, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 150, + "width": 276, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "أكّد مدير إدارة مكافحة المخدرات الأردنية السابق، اللواء طايل المجالي، أن \"جهات رسمية\" تقف وراء عمليات تصنيع وتهريب المخدرات في الداخل السوري", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.syria.tv", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 320, + "width": 588, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 430, + "width": 790, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 414, + "width": 790, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 78, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "creator", + "value": { + "type": "USER", + "user_value": { + "id_str": "853507499181432832", + "path": [] + } + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 430, + "width": 790, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 430, + "width": 790, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "syria.tv", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 151, + "green": 170, + "red": 183 + }, + "percentage": 64.34 + }, + { + "rgb": { + "blue": 87, + "green": 100, + "red": 114 + }, + "percentage": 26.8 + }, + { + "rgb": { + "blue": 110, + "green": 112, + "red": 111 + }, + "percentage": 4.51 + }, + { + "rgb": { + "blue": 115, + "green": 144, + "red": 172 + }, + "percentage": 2.71 + }, + { + "rgb": { + "blue": 39, + "green": 42, + "red": 101 + }, + "percentage": 0.59 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "مدير مكافحة المخدرات الأردني السابق لتلفزيون سوريا: وراء المخدرات جهات رسمية", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 151, + "green": 170, + "red": 183 + }, + "percentage": 64.34 + }, + { + "rgb": { + "blue": 87, + "green": 100, + "red": 114 + }, + "percentage": 26.8 + }, + { + "rgb": { + "blue": 110, + "green": 112, + "red": 111 + }, + "percentage": 4.51 + }, + { + "rgb": { + "blue": 115, + "green": 144, + "red": 172 + }, + "percentage": 2.71 + }, + { + "rgb": { + "blue": 39, + "green": 42, + "red": 101 + }, + "percentage": 0.59 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 430, + "width": 790, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 151, + "green": 170, + "red": 183 + }, + "percentage": 64.34 + }, + { + "rgb": { + "blue": 87, + "green": 100, + "red": 114 + }, + "percentage": 26.8 + }, + { + "rgb": { + "blue": 110, + "green": 112, + "red": 111 + }, + "percentage": 4.51 + }, + { + "rgb": { + "blue": 115, + "green": 144, + "red": 172 + }, + "percentage": 2.71 + }, + { + "rgb": { + "blue": 39, + "green": 42, + "red": 101 + }, + "percentage": 0.59 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 430, + "width": 790, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/nvLWpaILAs", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 430, + "width": 790, + "url": "https://pbs.twimg.com/card_img/1756053078199898113/qlDNAaxg?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/nvLWpaILAs", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjo4NTM1MDc0OTkxODE0MzI4MzI=", + "rest_id": "853507499181432832", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Apr 16 07:17:00 +0000 2017", + "default_profile": false, + "default_profile_image": false, + "description": "تلفزيون سوريا: خدمة إعلامية تعلي من أسس المهنية والموضوعية والانفتاح في عملها مع انحياز قيمي للإنسان السوري في حريته \nتابعونا على تيليجرام: https://t.co/PzbzNEfTrC", + "entities": { + "description": { + "urls": [ + { + "display_url": "t.me/TelevisionSyria", + "expanded_url": "http://t.me/TelevisionSyria", + "url": "https://t.co/PzbzNEfTrC", + "indices": [ + 140, + 163 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "syria.tv", + "expanded_url": "https://www.syria.tv", + "url": "https://t.co/c1M7F0n99W", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 107, + "followers_count": 681139, + "friends_count": 68, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 539, + "location": "Istanbul ", + "media_count": 81746, + "name": "تلفزيون سوريا", + "normal_followers_count": 681139, + "pinned_tweet_ids_str": [ + "1756303355838714091" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/853507499181432832/1704091732", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/926011190056247296/gU9CfRj0_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "syr_television", + "statuses_count": 161528, + "translator_type": "none", + "url": "https://t.co/c1M7F0n99W", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1465310342322565120", + "professional_type": "Business", + "category": [ + { + "id": 580, + "name": "Media & News Company", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756298968932270135" + ], + "editable_until_msecs": "1707572879000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "4053", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 2, + "bookmarked": false, + "created_at": "Sat Feb 10 12:47:59 +0000 2024", + "conversation_id_str": "1741829673972048295", + "display_text_range": [ + 0, + 280 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "bit.ly/42y5FSI", + "expanded_url": "https://bit.ly/42y5FSI", + "url": "https://t.co/nvLWpaILAs", + "indices": [ + 257, + 280 + ] + } + ], + "user_mentions": [ + { + "id_str": "853507499181432832", + "name": "تلفزيون سوريا", + "screen_name": "syr_television", + "indices": [ + 10, + 25 + ] + } + ] + }, + "favorite_count": 10, + "favorited": false, + "full_text": "Exclusive @syr_television interview w/ former Director of Jordanian Anti-Narcotics Department, General Majali:\n- Syrian officials are behind Captagon production\n- info on drug traffickers given to Damascus - no action\n- all diplomatic efforts failed.\nLink: https://t.co/nvLWpaILAs", + "in_reply_to_screen_name": "QalaatAlMudiq", + "in_reply_to_status_id_str": "1755998753310277749", + "in_reply_to_user_id_str": "3978224638", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 6, + "retweeted": false, + "user_id_str": "3978224638", + "id_str": "1756298968932270135" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756302128677585199", + "sortIndex": "1756309211907620854", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "TweetWithVisibilityResults", + "tweet": { + "rest_id": "1756302128677585199", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NDA4MzE4Nw==", + "rest_id": "84083187", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Oct 21 13:42:34 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Ukraine Correspondent. British-Lebanese conflict journalist & filmmaker based in Kyiv. Co-host of @DrillPod. RTs ≠ endorsement.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ko-fi.com/ozkaterji", + "expanded_url": "http://ko-fi.com/ozkaterji", + "url": "https://t.co/FC9pQbgXa4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 45500, + "followers_count": 215887, + "friends_count": 11666, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3397, + "location": "Kyiv, Ukraine", + "media_count": 6412, + "name": "Oz Katerji", + "normal_followers_count": 215887, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84083187/1647382697", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713181637574275072/gUp8KMF4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OzKaterji", + "statuses_count": 174699, + "translator_type": "none", + "url": "https://t.co/FC9pQbgXa4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756302128677585199" + ], + "editable_until_msecs": "1707573632649", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:00:32 +0000 2024", + "conversation_control": { + "policy": "Community", + "conversation_owner_results": { + "result": { + "__typename": "User", + "legacy": { + "screen_name": "UNLazzarini" + } + } + } + }, + "conversation_id_str": "1756302128677585199", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 35, + 40 + ], + "text": "Gaza" + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1568300168", + "name": "Philippe Lazzarini", + "screen_name": "UNLazzarini", + "indices": [ + 3, + 15 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @UNLazzarini: In Rafah southern #Gaza, there are 1.4 million people - tens of kilometres of people living in the streets in plastic make…", + "is_quote_status": false, + "lang": "en", + "limited_actions": "limited_replies", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 261, + "retweeted": false, + "user_id_str": "84083187", + "id_str": "1756302128677585199", + "retweeted_status_result": { + "result": { + "__typename": "TweetWithVisibilityResults", + "tweet": { + "rest_id": "1756285108405821767", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTY4MzAwMTY4", + "rest_id": "1568300168", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Thu Jul 04 14:15:02 +0000 2013", + "default_profile": true, + "default_profile_image": false, + "description": "Commissioner-General of @UNRWA", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "unrwa.org", + "expanded_url": "http://www.unrwa.org", + "url": "https://t.co/W67wP9qfeg", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 1407, + "followers_count": 70083, + "friends_count": 770, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 529, + "location": "", + "media_count": 1222, + "name": "Philippe Lazzarini", + "normal_followers_count": 70083, + "pinned_tweet_ids_str": [ + "1755855441890795800" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1568300168/1706094458", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1730701941196439552/xsezRId7_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "UNLazzarini", + "statuses_count": 4952, + "translator_type": "none", + "url": "https://t.co/W67wP9qfeg", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756285108405821767" + ], + "editable_until_msecs": "1707569574000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "19567", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE3NTYyODUxMDgyNjMyMDY5MTI=", + "text": "In Rafah southern #Gaza, there are 1.4 million people - tens of kilometres of people living in the streets in plastic makeshift shelters. \n\nA military offensive in the middle of these completely exposed, vulnerable people is a recipe for disaster. I am almost becoming wordless.\n\nMy latest in @FT 👇\nhttps://t.co/qhizFLRiRc", + "entity_set": { + "hashtags": [ + { + "indices": [ + 18, + 23 + ], + "text": "Gaza" + } + ], + "symbols": [], + "urls": [ + { + "display_url": "ft.com/content/83ec11…", + "expanded_url": "https://www.ft.com/content/83ec1189-567c-4eed-bfc8-9c1a7095a9bc", + "url": "https://t.co/qhizFLRiRc", + "indices": [ + 299, + 322 + ] + } + ], + "user_mentions": [ + { + "id_str": "18949452", + "name": "Financial Times", + "screen_name": "FT", + "indices": [ + 293, + 296 + ] + } + ] + }, + "richtext": { + "richtext_tags": [] + }, + "media": { + "inline_media": [] + } + } + } + }, + "legacy": { + "bookmark_count": 11, + "bookmarked": false, + "created_at": "Sat Feb 10 11:52:54 +0000 2024", + "conversation_control": { + "policy": "Community", + "conversation_owner_results": { + "result": { + "__typename": "User", + "legacy": { + "screen_name": "UNLazzarini" + } + } + } + }, + "conversation_id_str": "1756285108405821767", + "display_text_range": [ + 0, + 279 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 18, + 23 + ], + "text": "Gaza" + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 358, + "favorited": false, + "full_text": "In Rafah southern #Gaza, there are 1.4 million people - tens of kilometres of people living in the streets in plastic makeshift shelters. \n\nA military offensive in the middle of these completely exposed, vulnerable people is a recipe for disaster. I am almost becoming wordless.…", + "is_quote_status": false, + "lang": "en", + "limited_actions": "limited_replies", + "quote_count": 19, + "reply_count": 0, + "retweet_count": 261, + "retweeted": false, + "user_id_str": "1568300168", + "id_str": "1756285108405821767" + } + }, + "limitedActionResults": { + "limited_actions": [ + { + "action": "Reply", + "prompt": { + "__typename": "CtaLimitedActionPrompt", + "cta_type": "SeeConversation", + "headline": { + "text": "Who can reply?", + "entities": [] + }, + "subtext": { + "text": "People the author mentioned can reply", + "entities": [] + } + } + } + ] + } + } + } + } + }, + "limitedActionResults": { + "limited_actions": [ + { + "action": "Reply", + "prompt": { + "__typename": "CtaLimitedActionPrompt", + "cta_type": "SeeConversation", + "headline": { + "text": "Who can reply?", + "entities": [] + }, + "subtext": { + "text": "People the author mentioned can reply", + "entities": [] + } + } + } + ] + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756302110184849785", + "sortIndex": "1756309211907620853", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756302110184849785", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NDA4MzE4Nw==", + "rest_id": "84083187", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Oct 21 13:42:34 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Ukraine Correspondent. British-Lebanese conflict journalist & filmmaker based in Kyiv. Co-host of @DrillPod. RTs ≠ endorsement.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ko-fi.com/ozkaterji", + "expanded_url": "http://ko-fi.com/ozkaterji", + "url": "https://t.co/FC9pQbgXa4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 45500, + "followers_count": 215887, + "friends_count": 11666, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3397, + "location": "Kyiv, Ukraine", + "media_count": 6412, + "name": "Oz Katerji", + "normal_followers_count": 215887, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84083187/1647382697", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713181637574275072/gUp8KMF4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OzKaterji", + "statuses_count": 174699, + "translator_type": "none", + "url": "https://t.co/FC9pQbgXa4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756302110184849785" + ], + "editable_until_msecs": "1707573628240", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:00:28 +0000 2024", + "conversation_id_str": "1756302110184849785", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "318933041", + "name": "Secunder Kermani", + "screen_name": "SecKermani", + "indices": [ + 3, + 14 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @SecKermani: PTI backed candidate Salman Akram Raja told us he has evidence of major electoral fraud in his constituency\n\n“Are you confi…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 5112, + "retweeted": false, + "user_id_str": "84083187", + "id_str": "1756302110184849785", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756297896759116231", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozMTg5MzMwNDE=", + "rest_id": "318933041", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Fri Jun 17 08:53:52 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "Foreign Correspondent @Channel4News, ex BBC Pakistan & Afghanistan Correspondent / Newsnight", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "youtube.com/playlist?list=…", + "expanded_url": "https://www.youtube.com/playlist?list=PLrpXvkasqvCcMfmQzMbitzV-ji0s4Xw27", + "url": "https://t.co/Mr449QcXbT", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 16564, + "followers_count": 74617, + "friends_count": 3861, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 717, + "location": "Back where I came from. Kinda", + "media_count": 1228, + "name": "Secunder Kermani", + "normal_followers_count": 74617, + "pinned_tweet_ids_str": [ + "1755324296929419553" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/318933041/1702845413", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/855867454588715008/jiTP8zzW_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "SecKermani", + "statuses_count": 11976, + "translator_type": "none", + "url": "https://t.co/Mr449QcXbT", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756297896759116231" + ], + "editable_until_msecs": "1707572623000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "110740", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 108, + "bookmarked": false, + "created_at": "Sat Feb 10 12:43:43 +0000 2024", + "conversation_id_str": "1756297896759116231", + "display_text_range": [ + 0, + 264 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/5CTlIVgd64", + "expanded_url": "https://twitter.com/SecKermani/status/1756297896759116231/video/1", + "id_str": "1756297812063457280", + "indices": [ + 265, + 288 + ], + "media_key": "7_1756297812063457280", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1756297812063457280/pu/img/AM6sFPtxLd0RBn-Z.jpg", + "type": "video", + "url": "https://t.co/5CTlIVgd64", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 1280, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 31840, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1756297812063457280/pu/pl/A_can8ErO4eRYO7y.m3u8?tag=12&container=cmaf" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756297812063457280/pu/vid/avc1/1280x720/utiXDFgRSi-5f0ff.mp4?tag=12" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756297812063457280/pu/vid/avc1/480x270/K09x3iTPHjuyWEzQ.mp4?tag=12" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756297812063457280/pu/vid/avc1/640x360/MPwBOM2EXr1AEVmy.mp4?tag=12" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/5CTlIVgd64", + "expanded_url": "https://twitter.com/SecKermani/status/1756297896759116231/video/1", + "id_str": "1756297812063457280", + "indices": [ + 265, + 288 + ], + "media_key": "7_1756297812063457280", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1756297812063457280/pu/img/AM6sFPtxLd0RBn-Z.jpg", + "type": "video", + "url": "https://t.co/5CTlIVgd64", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 1280, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 31840, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1756297812063457280/pu/pl/A_can8ErO4eRYO7y.m3u8?tag=12&container=cmaf" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756297812063457280/pu/vid/avc1/1280x720/utiXDFgRSi-5f0ff.mp4?tag=12" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756297812063457280/pu/vid/avc1/480x270/K09x3iTPHjuyWEzQ.mp4?tag=12" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756297812063457280/pu/vid/avc1/640x360/MPwBOM2EXr1AEVmy.mp4?tag=12" + } + ] + } + } + ] + }, + "favorite_count": 10481, + "favorited": false, + "full_text": "PTI backed candidate Salman Akram Raja told us he has evidence of major electoral fraud in his constituency\n\n“Are you confident justice will be done?”\n\n“One is always apprehensive of justice in this country but the extent of the injustice is so great that we will” https://t.co/5CTlIVgd64", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 80, + "reply_count": 105, + "retweet_count": 5112, + "retweeted": false, + "user_id_str": "318933041", + "id_str": "1756297896759116231" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "list-conversation-1756309211907620876", + "sortIndex": "1756309211907620852", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "list-conversation-1756309211907620876-tweet-1756301685226369353", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756301685226369353", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMTIwNjMzNzI2NDc4ODIzNDI1", + "rest_id": "1120633726478823425", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Apr 23 10:21:15 +0000 2019", + "default_profile": true, + "default_profile_image": false, + "description": "President of Ukraine / Президент України", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "president.gov.ua", + "expanded_url": "https://www.president.gov.ua", + "url": "https://t.co/ctVL0atMBQ", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 90, + "followers_count": 7385577, + "friends_count": 1, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 17737, + "location": "Україна", + "media_count": 2338, + "name": "Volodymyr Zelenskyy / Володимир Зеленський", + "normal_followers_count": 7385577, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1120633726478823425/1692773060", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1585550046740848642/OpGKpqx9_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ZelenskyyUa", + "statuses_count": 5529, + "translator_type": "none", + "url": "https://t.co/ctVL0atMBQ", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756301685226369353" + ], + "editable_until_msecs": "1707573526000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "61970", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE3NTYzMDE2ODUwODgwMzA3MjA=", + "text": "Reality always speaks louder than any words. An entire family was killed in a fire last night as a result of a Russian strike on Kharkiv using \"Shahed\" drones. Parents and their three children were killed. Oleksiy, the older son, was seven; Mykhailo, the middle son, was six; and Pavlo, the younger son, was only seven months old.\n\nThese children had not yet seen life, but were killed as a result of Russian madness. Another family was killed: a man and his wife. My condolences to the victims' loved ones.\n\nThe rescue operation in Kharkiv is ongoing. Four people were rescued, including a child. Dozens of people were evacuated. All services are working, and everyone affected will receive the necessary aid.\n\nI thank everyone who helps Ukraine and Ukrainians defend against Russian terror. Every act of support is critical. It is also critical to realize that this terror cannot go unpunished or remain without a fair response.\n\nTerrorists must lose the war they started. Russia must be held accountable for every life it has harmed and ruined. This is the only way to make security a reality again.", + "entity_set": { + "hashtags": [], + "symbols": [], + "urls": [], + "user_mentions": [] + }, + "richtext": { + "richtext_tags": [] + }, + "media": { + "inline_media": [] + } + } + } + }, + "legacy": { + "bookmark_count": 23, + "bookmarked": false, + "created_at": "Sat Feb 10 12:58:46 +0000 2024", + "conversation_id_str": "1756301685226369353", + "display_text_range": [ + 0, + 280 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/qRKKujZRbQ", + "expanded_url": "https://twitter.com/ZelenskyyUa/status/1756301685226369353/photo/1", + "id_str": "1756301599591333888", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756301599591333888", + "media_url_https": "https://pbs.twimg.com/media/GF-i_-IXgAAe-bL.jpg", + "type": "photo", + "url": "https://t.co/qRKKujZRbQ", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 170, + "w": 1600, + "h": 896 + }, + { + "x": 534, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 665, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 974, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + }, + { + "display_url": "pic.twitter.com/qRKKujZRbQ", + "expanded_url": "https://twitter.com/ZelenskyyUa/status/1756301685226369353/photo/1", + "id_str": "1756301620730605568", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756301620730605568", + "media_url_https": "https://pbs.twimg.com/media/GF-jBM4XMAAOhfP.jpg", + "type": "photo", + "url": "https://t.co/qRKKujZRbQ", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 543, + "y": 881, + "h": 81, + "w": 81 + } + ] + }, + "medium": { + "faces": [ + { + "x": 407, + "y": 660, + "h": 60, + "w": 60 + } + ] + }, + "small": { + "faces": [ + { + "x": 230, + "y": 374, + "h": 34, + "w": 34 + } + ] + }, + "orig": { + "faces": [ + { + "x": 543, + "y": 881, + "h": 81, + "w": 81 + } + ] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 170, + "w": 1600, + "h": 896 + }, + { + "x": 467, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 533, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 734, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + }, + { + "display_url": "pic.twitter.com/qRKKujZRbQ", + "expanded_url": "https://twitter.com/ZelenskyyUa/status/1756301685226369353/photo/1", + "id_str": "1756301640875868160", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756301640875868160", + "media_url_https": "https://pbs.twimg.com/media/GF-jCX7XgAAQF5E.jpg", + "type": "photo", + "url": "https://t.co/qRKKujZRbQ", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 1196, + "y": 348, + "h": 60, + "w": 60 + }, + { + "x": 978, + "y": 293, + "h": 59, + "w": 59 + } + ] + }, + "medium": { + "faces": [ + { + "x": 897, + "y": 261, + "h": 45, + "w": 45 + }, + { + "x": 733, + "y": 219, + "h": 44, + "w": 44 + } + ] + }, + "small": { + "faces": [ + { + "x": 508, + "y": 147, + "h": 25, + "w": 25 + }, + { + "x": 415, + "y": 124, + "h": 25, + "w": 25 + } + ] + }, + "orig": { + "faces": [ + { + "x": 1196, + "y": 348, + "h": 60, + "w": 60 + }, + { + "x": 978, + "y": 293, + "h": 59, + "w": 59 + } + ] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1600, + "h": 896 + }, + { + "x": 534, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 665, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 894, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + }, + { + "display_url": "pic.twitter.com/qRKKujZRbQ", + "expanded_url": "https://twitter.com/ZelenskyyUa/status/1756301685226369353/photo/1", + "id_str": "1756301656981946368", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756301656981946368", + "media_url_https": "https://pbs.twimg.com/media/GF-jDT7WwAAjoAX.jpg", + "type": "photo", + "url": "https://t.co/qRKKujZRbQ", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1600, + "h": 896 + }, + { + "x": 0, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/qRKKujZRbQ", + "expanded_url": "https://twitter.com/ZelenskyyUa/status/1756301685226369353/photo/1", + "id_str": "1756301599591333888", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756301599591333888", + "media_url_https": "https://pbs.twimg.com/media/GF-i_-IXgAAe-bL.jpg", + "type": "photo", + "url": "https://t.co/qRKKujZRbQ", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 170, + "w": 1600, + "h": 896 + }, + { + "x": 534, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 665, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 974, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + }, + { + "display_url": "pic.twitter.com/qRKKujZRbQ", + "expanded_url": "https://twitter.com/ZelenskyyUa/status/1756301685226369353/photo/1", + "id_str": "1756301620730605568", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756301620730605568", + "media_url_https": "https://pbs.twimg.com/media/GF-jBM4XMAAOhfP.jpg", + "type": "photo", + "url": "https://t.co/qRKKujZRbQ", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 543, + "y": 881, + "h": 81, + "w": 81 + } + ] + }, + "medium": { + "faces": [ + { + "x": 407, + "y": 660, + "h": 60, + "w": 60 + } + ] + }, + "small": { + "faces": [ + { + "x": 230, + "y": 374, + "h": 34, + "w": 34 + } + ] + }, + "orig": { + "faces": [ + { + "x": 543, + "y": 881, + "h": 81, + "w": 81 + } + ] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 170, + "w": 1600, + "h": 896 + }, + { + "x": 467, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 533, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 734, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + }, + { + "display_url": "pic.twitter.com/qRKKujZRbQ", + "expanded_url": "https://twitter.com/ZelenskyyUa/status/1756301685226369353/photo/1", + "id_str": "1756301640875868160", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756301640875868160", + "media_url_https": "https://pbs.twimg.com/media/GF-jCX7XgAAQF5E.jpg", + "type": "photo", + "url": "https://t.co/qRKKujZRbQ", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 1196, + "y": 348, + "h": 60, + "w": 60 + }, + { + "x": 978, + "y": 293, + "h": 59, + "w": 59 + } + ] + }, + "medium": { + "faces": [ + { + "x": 897, + "y": 261, + "h": 45, + "w": 45 + }, + { + "x": 733, + "y": 219, + "h": 44, + "w": 44 + } + ] + }, + "small": { + "faces": [ + { + "x": 508, + "y": 147, + "h": 25, + "w": 25 + }, + { + "x": 415, + "y": 124, + "h": 25, + "w": 25 + } + ] + }, + "orig": { + "faces": [ + { + "x": 1196, + "y": 348, + "h": 60, + "w": 60 + }, + { + "x": 978, + "y": 293, + "h": 59, + "w": 59 + } + ] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1600, + "h": 896 + }, + { + "x": 534, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 665, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 894, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + }, + { + "display_url": "pic.twitter.com/qRKKujZRbQ", + "expanded_url": "https://twitter.com/ZelenskyyUa/status/1756301685226369353/photo/1", + "id_str": "1756301656981946368", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756301656981946368", + "media_url_https": "https://pbs.twimg.com/media/GF-jDT7WwAAjoAX.jpg", + "type": "photo", + "url": "https://t.co/qRKKujZRbQ", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1600, + "h": 896 + }, + { + "x": 0, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + } + ] + }, + "favorite_count": 1580, + "favorited": false, + "full_text": "Reality always speaks louder than any words. An entire family was killed in a fire last night as a result of a Russian strike on Kharkiv using \"Shahed\" drones. Parents and their three children were killed. Oleksiy, the older son, was seven; Mykhailo, the middle son, was six; and… https://t.co/qRKKujZRbQ", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 41, + "reply_count": 168, + "retweet_count": 553, + "retweeted": false, + "user_id_str": "1120633726478823425", + "id_str": "1756301685226369353" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "list-conversation-1756309211907620876-tweet-1756301900335419599", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756301900335419599", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMTIwNjMzNzI2NDc4ODIzNDI1", + "rest_id": "1120633726478823425", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Apr 23 10:21:15 +0000 2019", + "default_profile": true, + "default_profile_image": false, + "description": "President of Ukraine / Президент України", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "president.gov.ua", + "expanded_url": "https://www.president.gov.ua", + "url": "https://t.co/ctVL0atMBQ", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 90, + "followers_count": 7385577, + "friends_count": 1, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 17737, + "location": "Україна", + "media_count": 2338, + "name": "Volodymyr Zelenskyy / Володимир Зеленський", + "normal_followers_count": 7385577, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1120633726478823425/1692773060", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1585550046740848642/OpGKpqx9_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ZelenskyyUa", + "statuses_count": 5529, + "translator_type": "none", + "url": "https://t.co/ctVL0atMBQ", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756301900335419599" + ], + "editable_until_msecs": "1707573578000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "count": "38487", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE3NTYzMDE5MDAxODg2NzIwMDA=", + "text": "Реальність завжди говорить більше, ніж будь-які слова. Минулої ночі через пожежу після удару «шахедів» у Харкові загинула ціла сімʼя: батьки та троє дітей. Найстаршому сину, Олексію, 7 років, середньому, Михайлу, 4 роки, найменший – Павло, йому було 7 місяців. Діти, які ще не встигли побачити життя й були вбиті через російське божевілля. Загинула і ще одна сімʼя: чоловік та дружина. Мої співчуття всім рідним та близьким!\n\nРятувальна операція на місці в Харкові продовжується. Вдалося врятувати чотирьох людей, і серед них одна дитина. Десятки людей евакуйовані. Усі потрібні служби залучені, і кожному, хто постраждав, буде надана необхідна допомога.\n\nЯ вдячний усім, хто підтримує Україну та українців у захисті від російського терору. Кожен прояв підтримки критично важливий. І так само важливо розуміти, що терор не може залишатися безкарним. Терор не може залишатися без справедливої відповіді. Терористи повинні програти цю війну, яку вони розпочали. Росія повинна відповісти за кожне зруйноване і знищене нею життя. Тільки так безпека для всіх знов стане частиною реальності.", + "entity_set": { + "hashtags": [], + "symbols": [], + "urls": [], + "user_mentions": [] + }, + "richtext": { + "richtext_tags": [] + }, + "media": { + "inline_media": [] + } + } + } + }, + "legacy": { + "bookmark_count": 2, + "bookmarked": false, + "created_at": "Sat Feb 10 12:59:38 +0000 2024", + "conversation_id_str": "1756301685226369353", + "display_text_range": [ + 0, + 277 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/0WC0n0JNs9", + "expanded_url": "https://twitter.com/ZelenskyyUa/status/1756301900335419599/photo/1", + "id_str": "1756301812896792576", + "indices": [ + 278, + 301 + ], + "media_key": "3_1756301812896792576", + "media_url_https": "https://pbs.twimg.com/media/GF-jMYwWgAAWZcC.jpg", + "type": "photo", + "url": "https://t.co/0WC0n0JNs9", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 170, + "w": 1600, + "h": 896 + }, + { + "x": 227, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 293, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 494, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + }, + { + "display_url": "pic.twitter.com/0WC0n0JNs9", + "expanded_url": "https://twitter.com/ZelenskyyUa/status/1756301900335419599/photo/1", + "id_str": "1756301862653833216", + "indices": [ + 278, + 301 + ], + "media_key": "3_1756301862653833216", + "media_url_https": "https://pbs.twimg.com/media/GF-jPSHWsAAiZdC.jpg", + "type": "photo", + "url": "https://t.co/0WC0n0JNs9", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1600, + "h": 896 + }, + { + "x": 0, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + }, + { + "display_url": "pic.twitter.com/0WC0n0JNs9", + "expanded_url": "https://twitter.com/ZelenskyyUa/status/1756301900335419599/photo/1", + "id_str": "1756301877929496576", + "indices": [ + 278, + 301 + ], + "media_key": "3_1756301877929496576", + "media_url_https": "https://pbs.twimg.com/media/GF-jQLBW0AAmpqk.jpg", + "type": "photo", + "url": "https://t.co/0WC0n0JNs9", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1600, + "h": 896 + }, + { + "x": 0, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + }, + { + "display_url": "pic.twitter.com/0WC0n0JNs9", + "expanded_url": "https://twitter.com/ZelenskyyUa/status/1756301900335419599/photo/1", + "id_str": "1756301892303417344", + "indices": [ + 278, + 301 + ], + "media_key": "3_1756301892303417344", + "media_url_https": "https://pbs.twimg.com/media/GF-jRAkXcAAaPtv.jpg", + "type": "photo", + "url": "https://t.co/0WC0n0JNs9", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 853, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 853, + "width": 1280, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1280, + "h": 717 + }, + { + "x": 0, + "y": 0, + "w": 853, + "h": 853 + }, + { + "x": 0, + "y": 0, + "w": 748, + "h": 853 + }, + { + "x": 0, + "y": 0, + "w": 427, + "h": 853 + }, + { + "x": 0, + "y": 0, + "w": 1280, + "h": 853 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/0WC0n0JNs9", + "expanded_url": "https://twitter.com/ZelenskyyUa/status/1756301900335419599/photo/1", + "id_str": "1756301812896792576", + "indices": [ + 278, + 301 + ], + "media_key": "3_1756301812896792576", + "media_url_https": "https://pbs.twimg.com/media/GF-jMYwWgAAWZcC.jpg", + "type": "photo", + "url": "https://t.co/0WC0n0JNs9", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 170, + "w": 1600, + "h": 896 + }, + { + "x": 227, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 293, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 494, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + }, + { + "display_url": "pic.twitter.com/0WC0n0JNs9", + "expanded_url": "https://twitter.com/ZelenskyyUa/status/1756301900335419599/photo/1", + "id_str": "1756301862653833216", + "indices": [ + 278, + 301 + ], + "media_key": "3_1756301862653833216", + "media_url_https": "https://pbs.twimg.com/media/GF-jPSHWsAAiZdC.jpg", + "type": "photo", + "url": "https://t.co/0WC0n0JNs9", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1600, + "h": 896 + }, + { + "x": 0, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + }, + { + "display_url": "pic.twitter.com/0WC0n0JNs9", + "expanded_url": "https://twitter.com/ZelenskyyUa/status/1756301900335419599/photo/1", + "id_str": "1756301877929496576", + "indices": [ + 278, + 301 + ], + "media_key": "3_1756301877929496576", + "media_url_https": "https://pbs.twimg.com/media/GF-jQLBW0AAmpqk.jpg", + "type": "photo", + "url": "https://t.co/0WC0n0JNs9", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1066, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1066, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1600, + "h": 896 + }, + { + "x": 0, + "y": 0, + "w": 1066, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 935, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 533, + "h": 1066 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1066 + } + ] + } + }, + { + "display_url": "pic.twitter.com/0WC0n0JNs9", + "expanded_url": "https://twitter.com/ZelenskyyUa/status/1756301900335419599/photo/1", + "id_str": "1756301892303417344", + "indices": [ + 278, + 301 + ], + "media_key": "3_1756301892303417344", + "media_url_https": "https://pbs.twimg.com/media/GF-jRAkXcAAaPtv.jpg", + "type": "photo", + "url": "https://t.co/0WC0n0JNs9", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 853, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 800, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 853, + "width": 1280, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1280, + "h": 717 + }, + { + "x": 0, + "y": 0, + "w": 853, + "h": 853 + }, + { + "x": 0, + "y": 0, + "w": 748, + "h": 853 + }, + { + "x": 0, + "y": 0, + "w": 427, + "h": 853 + }, + { + "x": 0, + "y": 0, + "w": 1280, + "h": 853 + } + ] + } + } + ] + }, + "favorite_count": 212, + "favorited": false, + "full_text": "Реальність завжди говорить більше, ніж будь-які слова. Минулої ночі через пожежу після удару «шахедів» у Харкові загинула ціла сімʼя: батьки та троє дітей. Найстаршому сину, Олексію, 7 років, середньому, Михайлу, 4 роки, найменший – Павло, йому було 7 місяців. Діти, які ще не… https://t.co/0WC0n0JNs9", + "in_reply_to_screen_name": "ZelenskyyUa", + "in_reply_to_status_id_str": "1756301685226369353", + "in_reply_to_user_id_str": "1120633726478823425", + "is_quote_status": false, + "lang": "uk", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 2, + "reply_count": 22, + "retweet_count": 53, + "retweeted": false, + "user_id_str": "1120633726478823425", + "id_str": "1756301900335419599" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1756301685226369353", + "1756301900335419599" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756301257080258696", + "sortIndex": "1756309211907620851", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756301257080258696", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjMwMTg2NTM=", + "rest_id": "163018653", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Jul 05 09:44:27 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Ambassador-at-large @MFA_Ukraine, Amb to Austria (2014-2021). Author of “Ukraine vs Darkness. Undiplomatic Thoughts”. Personal account.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amazon.com/Ukraine-vs-Dar…", + "expanded_url": "https://www.amazon.com/Ukraine-vs-Darkness-Undiplomatic-Ukrainian-ebook/dp/B08WKF3B2K", + "url": "https://t.co/ERA9Ntt061", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 28758, + "followers_count": 264429, + "friends_count": 1248, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 4354, + "location": "Kyiv", + "media_count": 6624, + "name": "olexander scherba🇺🇦", + "normal_followers_count": 264429, + "pinned_tweet_ids_str": [ + "1396956590713020416" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/163018653/1646220178", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671642770549956608/yR9Is6BD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "olex_scherba", + "statuses_count": 40000, + "translator_type": "none", + "url": "https://t.co/ERA9Ntt061", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1696586841602834861", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756301257080258696" + ], + "editable_until_msecs": "1707573424000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "2701", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "created_at": "Sat Feb 10 12:57:04 +0000 2024", + "conversation_id_str": "1756301257080258696", + "display_text_range": [ + 0, + 277 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 233, + 240 + ], + "text": "Russia" + }, + { + "indices": [ + 241, + 258 + ], + "text": "RussianDiplomacy" + }, + { + "indices": [ + 260, + 277 + ], + "text": "StandWithUkraine" + } + ], + "media": [ + { + "display_url": "pic.twitter.com/oSy9GvIkPm", + "expanded_url": "https://twitter.com/olex_scherba/status/1756301257080258696/video/1", + "id_str": "1756301198062206977", + "indices": [ + 278, + 301 + ], + "media_key": "13_1756301198062206977", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1756301198062206977/img/cB01e6iq5vypWPO4.jpg", + "type": "video", + "url": "https://t.co/oSy9GvIkPm", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 884, + "w": 1562, + "resize": "fit" + }, + "medium": { + "h": 679, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 385, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 884, + "width": 1562, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 781, + 442 + ], + "duration_millis": 226451, + "variants": [ + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756301198062206977/vid/avc1/636x360/R0sJTVjKB0WfY5Cm.mp4?tag=14" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756301198062206977/vid/avc1/1272x720/jQpR93j1FUjabnqf.mp4?tag=14" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1756301198062206977/pl/qx-7qrW8_6bbkgVP.m3u8?tag=14&container=cmaf" + }, + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756301198062206977/vid/avc1/476x270/q_8GrChuCO8tyah-.mp4?tag=14" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/oSy9GvIkPm", + "expanded_url": "https://twitter.com/olex_scherba/status/1756301257080258696/video/1", + "id_str": "1756301198062206977", + "indices": [ + 278, + 301 + ], + "media_key": "13_1756301198062206977", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1756301198062206977/img/cB01e6iq5vypWPO4.jpg", + "type": "video", + "url": "https://t.co/oSy9GvIkPm", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 884, + "w": 1562, + "resize": "fit" + }, + "medium": { + "h": 679, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 385, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 884, + "width": 1562, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 781, + 442 + ], + "duration_millis": 226451, + "variants": [ + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756301198062206977/vid/avc1/636x360/R0sJTVjKB0WfY5Cm.mp4?tag=14" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756301198062206977/vid/avc1/1272x720/jQpR93j1FUjabnqf.mp4?tag=14" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1756301198062206977/pl/qx-7qrW8_6bbkgVP.m3u8?tag=14&container=cmaf" + }, + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756301198062206977/vid/avc1/476x270/q_8GrChuCO8tyah-.mp4?tag=14" + } + ] + } + } + ] + }, + "favorite_count": 24, + "favorited": false, + "full_text": "🇷🇺 diplomacy is not only famously strong, but also can march in place & has a beautiful singing voice.\n\nSong is titled “Nash MID” (Our Foreign Ministry.\n\nPS. Be patient, wait for the ambassador making his appearance in the end.\n\n#Russia #RussianDiplomacy \n#StandWithUkraine https://t.co/oSy9GvIkPm", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 2, + "reply_count": 4, + "retweet_count": 10, + "retweeted": false, + "user_id_str": "163018653", + "id_str": "1756301257080258696" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756296401053438404", + "sortIndex": "1756309211907620850", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756296401053438404", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyODA4MjI2MTM=", + "rest_id": "280822613", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Tue Apr 12 02:53:43 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Mayak Intelligence, @UCLSSEES, @RUSI_org, @IIR_Prague. Analyst of murky topics from Russian politics to global crime. Views my own", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "inmoscowsshadows.wordpress.com", + "expanded_url": "http://inmoscowsshadows.wordpress.com/", + "url": "https://t.co/XqeY63I8Vg", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 4051, + "followers_count": 120920, + "friends_count": 354, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3152, + "location": "Isle of Thanet, Kent", + "media_count": 653, + "name": "Mark Galeotti", + "normal_followers_count": 120920, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/280822613/1704904912", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1196790504752648193/6WTTzv2U_normal.png", + "profile_interstitial_type": "", + "screen_name": "MarkGaleotti", + "statuses_count": 21895, + "translator_type": "none", + "url": "https://t.co/XqeY63I8Vg", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/xnm2gggUdH", + "legacy": { + "binding_values": [ + { + "key": "player_url", + "value": { + "string_value": "https://www.youtube.com/embed/wUsunxdA9Ho", + "type": "STRING" + } + }, + { + "key": "player_image_large", + "value": { + "image_value": { + "height": 320, + "width": 569, + "url": "https://pbs.twimg.com/card_img/1756295913570455552/9EcLDob0?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "player_image", + "value": { + "image_value": { + "height": 158, + "width": 280, + "url": "https://pbs.twimg.com/card_img/1756295913570455552/9EcLDob0?format=jpg&name=280x280" + }, + "type": "IMAGE" + } + }, + { + "key": "app_star_rating", + "value": { + "string_value": "4.67713", + "type": "STRING" + } + }, + { + "key": "description", + "value": { + "string_value": "It wasn't exactly Frost-Nixon, but in some ways the very things that made this a bad interview - the rambling diversions, the lack of real interrogation - ma...", + "type": "STRING" + } + }, + { + "key": "player_width", + "value": { + "string_value": "960", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.youtube.com", + "type": "STRING" + } + }, + { + "key": "app_is_free", + "value": { + "string_value": "true", + "type": "STRING" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "10228272", + "path": [] + } + } + }, + { + "key": "player_image_original", + "value": { + "image_value": { + "height": 720, + "width": 1280, + "url": "https://pbs.twimg.com/card_img/1756295913570455552/9EcLDob0?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "app_num_ratings", + "value": { + "string_value": "34,709,878", + "type": "STRING" + } + }, + { + "key": "app_price_amount", + "value": { + "string_value": "0.0", + "type": "STRING" + } + }, + { + "key": "player_height", + "value": { + "string_value": "720", + "type": "STRING" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "youtube.com", + "type": "STRING" + } + }, + { + "key": "app_name", + "value": { + "string_value": "YouTube: Watch, Listen, Stream", + "type": "STRING" + } + }, + { + "key": "player_image_small", + "value": { + "image_value": { + "height": 81, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1756295913570455552/9EcLDob0?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "title", + "value": { + "string_value": "That Carlson-Putin Interview", + "type": "STRING" + } + }, + { + "key": "app_price_currency", + "value": { + "string_value": "USD", + "type": "STRING" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/xnm2gggUdH", + "type": "STRING" + } + }, + { + "key": "player_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 21, + "green": 27, + "red": 28 + }, + "percentage": 68.85 + }, + { + "rgb": { + "blue": 244, + "green": 244, + "red": 250 + }, + "percentage": 13.99 + }, + { + "rgb": { + "blue": 45, + "green": 45, + "red": 204 + }, + "percentage": 3.88 + }, + { + "rgb": { + "blue": 94, + "green": 94, + "red": 197 + }, + "percentage": 3.58 + }, + { + "rgb": { + "blue": 39, + "green": 49, + "red": 102 + }, + "percentage": 3.05 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "player_image_x_large", + "value": { + "image_value": { + "height": 720, + "width": 1280, + "url": "https://pbs.twimg.com/card_img/1756295913570455552/9EcLDob0?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "player", + "url": "https://t.co/xnm2gggUdH", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoxMDIyODI3Mg==", + "rest_id": "10228272", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Nov 13 21:43:46 +0000 2007", + "default_profile": false, + "default_profile_image": false, + "description": "like and subscribe.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "youtube.com", + "expanded_url": "http://youtube.com", + "url": "https://t.co/bUisN3Y1A6", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 6189, + "followers_count": 79755986, + "friends_count": 1173, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 79777, + "location": "San Bruno, CA", + "media_count": 15778, + "name": "YouTube", + "normal_followers_count": 79755986, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10228272/1706796151", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "YouTube", + "statuses_count": 57697, + "translator_type": "regular", + "url": "https://t.co/bUisN3Y1A6", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756296401053438404" + ], + "editable_until_msecs": "1707572267000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "9418", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 24, + "bookmarked": false, + "created_at": "Sat Feb 10 12:37:47 +0000 2024", + "conversation_id_str": "1756296401053438404", + "display_text_range": [ + 0, + 236 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 87, + 99 + ], + "text": "TuckerPutin" + } + ], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "youtu.be/wUsunxdA9Ho?si…", + "expanded_url": "https://youtu.be/wUsunxdA9Ho?si=3St-ZRKHuSepQtV5", + "url": "https://t.co/xnm2gggUdH", + "indices": [ + 213, + 236 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 90, + "favorited": false, + "full_text": "That Carlson-Putin Interview\nHardly Frost-Nixon, but in a way the degree to which this #TuckerPutin propaganda event was Putin unmediated, unmoderated, gives us some insights into his character. My 4 takeaways. \nhttps://t.co/xnm2gggUdH", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1, + "reply_count": 2, + "retweet_count": 19, + "retweeted": false, + "user_id_str": "280822613", + "id_str": "1756296401053438404" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756294519337689333", + "sortIndex": "1756309211907620849", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756294519337689333", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo3MDY2NDM3MQ==", + "rest_id": "70664371", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Sep 01 12:13:17 +0000 2009", + "default_profile": true, + "default_profile_image": false, + "description": "Two decades of reporting in more than 20 countries. Foreign correspondent @TheDailyBeast;@TheAtlantic,@USAToday @RollingStone. Courage in Journalism Award @IWMF", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 4129, + "followers_count": 18930, + "friends_count": 2232, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 950, + "location": "", + "media_count": 1231, + "name": "Anna Nemtsova", + "normal_followers_count": 18930, + "pinned_tweet_ids_str": [ + "1729932755713077531" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/70664371/1658767939", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1321538376961531904/AlUu6-aU_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "annanemtsova", + "statuses_count": 7795, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756294519337689333" + ], + "editable_until_msecs": "1707571818000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "474", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "created_at": "Sat Feb 10 12:30:18 +0000 2024", + "conversation_id_str": "1756294519337689333", + "display_text_range": [ + 0, + 117 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/OiQlfrcJ0m", + "expanded_url": "https://twitter.com/annanemtsova/status/1756294519337689333/photo/1", + "id_str": "1756294510223454208", + "indices": [ + 118, + 141 + ], + "media_key": "3_1756294510223454208", + "media_url_https": "https://pbs.twimg.com/media/GF-cjULWcAAyi8d.jpg", + "type": "photo", + "url": "https://t.co/OiQlfrcJ0m", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1807, + "w": 1170, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 777, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 440, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1807, + "width": 1170, + "focus_rects": [ + { + "x": 0, + "y": 621, + "w": 1170, + "h": 655 + }, + { + "x": 0, + "y": 363, + "w": 1170, + "h": 1170 + }, + { + "x": 0, + "y": 281, + "w": 1170, + "h": 1334 + }, + { + "x": 0, + "y": 0, + "w": 904, + "h": 1807 + }, + { + "x": 0, + "y": 0, + "w": 1170, + "h": 1807 + } + ] + } + }, + { + "display_url": "pic.twitter.com/OiQlfrcJ0m", + "expanded_url": "https://twitter.com/annanemtsova/status/1756294519337689333/photo/1", + "id_str": "1756294510231855104", + "indices": [ + 118, + 141 + ], + "media_key": "3_1756294510231855104", + "media_url_https": "https://pbs.twimg.com/media/GF-cjUNWoAA0qLI.jpg", + "type": "photo", + "url": "https://t.co/OiQlfrcJ0m", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1735, + "w": 1170, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 809, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 459, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1735, + "width": 1170, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1170, + "h": 655 + }, + { + "x": 0, + "y": 0, + "w": 1170, + "h": 1170 + }, + { + "x": 0, + "y": 0, + "w": 1170, + "h": 1334 + }, + { + "x": 129, + "y": 0, + "w": 868, + "h": 1735 + }, + { + "x": 0, + "y": 0, + "w": 1170, + "h": 1735 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "16170860", + "name": "masha gessen", + "screen_name": "mashagessen", + "indices": [ + 40, + 52 + ] + }, + { + "id_str": "22703645", + "name": "Tucker Carlson", + "screen_name": "TuckerCarlson", + "indices": [ + 81, + 95 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/OiQlfrcJ0m", + "expanded_url": "https://twitter.com/annanemtsova/status/1756294519337689333/photo/1", + "id_str": "1756294510223454208", + "indices": [ + 118, + 141 + ], + "media_key": "3_1756294510223454208", + "media_url_https": "https://pbs.twimg.com/media/GF-cjULWcAAyi8d.jpg", + "type": "photo", + "url": "https://t.co/OiQlfrcJ0m", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1807, + "w": 1170, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 777, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 440, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1807, + "width": 1170, + "focus_rects": [ + { + "x": 0, + "y": 621, + "w": 1170, + "h": 655 + }, + { + "x": 0, + "y": 363, + "w": 1170, + "h": 1170 + }, + { + "x": 0, + "y": 281, + "w": 1170, + "h": 1334 + }, + { + "x": 0, + "y": 0, + "w": 904, + "h": 1807 + }, + { + "x": 0, + "y": 0, + "w": 1170, + "h": 1807 + } + ] + } + }, + { + "display_url": "pic.twitter.com/OiQlfrcJ0m", + "expanded_url": "https://twitter.com/annanemtsova/status/1756294519337689333/photo/1", + "id_str": "1756294510231855104", + "indices": [ + 118, + 141 + ], + "media_key": "3_1756294510231855104", + "media_url_https": "https://pbs.twimg.com/media/GF-cjUNWoAA0qLI.jpg", + "type": "photo", + "url": "https://t.co/OiQlfrcJ0m", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1735, + "w": 1170, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 809, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 459, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1735, + "width": 1170, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1170, + "h": 655 + }, + { + "x": 0, + "y": 0, + "w": 1170, + "h": 1170 + }, + { + "x": 0, + "y": 0, + "w": 1170, + "h": 1334 + }, + { + "x": 129, + "y": 0, + "w": 868, + "h": 1735 + }, + { + "x": 0, + "y": 0, + "w": 1170, + "h": 1735 + } + ] + } + } + ] + }, + "favorite_count": 4, + "favorited": false, + "full_text": "“If I were Poland, I’d be scared,” says @mashagessen in her latest article about @TuckerCarlson interview with Putin. https://t.co/OiQlfrcJ0m", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 1, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "70664371", + "id_str": "1756294519337689333" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756293018728948223", + "sortIndex": "1756309211907620848", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756293018728948223", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NDA4MzE4Nw==", + "rest_id": "84083187", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Oct 21 13:42:34 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Ukraine Correspondent. British-Lebanese conflict journalist & filmmaker based in Kyiv. Co-host of @DrillPod. RTs ≠ endorsement.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ko-fi.com/ozkaterji", + "expanded_url": "http://ko-fi.com/ozkaterji", + "url": "https://t.co/FC9pQbgXa4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 45500, + "followers_count": 215887, + "friends_count": 11666, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3397, + "location": "Kyiv, Ukraine", + "media_count": 6412, + "name": "Oz Katerji", + "normal_followers_count": 215887, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84083187/1647382697", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713181637574275072/gUp8KMF4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OzKaterji", + "statuses_count": 174699, + "translator_type": "none", + "url": "https://t.co/FC9pQbgXa4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756293018728948223" + ], + "editable_until_msecs": "1707571460668", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 12:24:20 +0000 2024", + "conversation_id_str": "1756293018728948223", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "2195671183", + "name": "MSF International", + "screen_name": "MSF", + "indices": [ + 3, + 7 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @MSF: 🚨GAZA: In the past 48 hours, MSF staff report shots fired at people inside Nasser hospital. \nTwo people were killed, five others i…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 421, + "retweeted": false, + "user_id_str": "84083187", + "id_str": "1756293018728948223", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756286375618293978", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyMTk1NjcxMTgz", + "rest_id": "2195671183", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Fri Nov 15 09:20:25 +0000 2013", + "default_profile": true, + "default_profile_image": false, + "description": "Médecins Sans Frontières (MSF) is an international, independent, medical humanitarian organisation.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "msf.org", + "expanded_url": "http://msf.org", + "url": "https://t.co/b0KV4w6zj5", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 11466, + "followers_count": 230256, + "friends_count": 1215, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2280, + "location": "(Doctors Without Borders)", + "media_count": 6039, + "name": "MSF International", + "normal_followers_count": 230256, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2195671183/1701682146", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1651129787488825344/JOA_2T0K_normal.png", + "profile_interstitial_type": "", + "screen_name": "MSF", + "statuses_count": 32310, + "translator_type": "none", + "url": "https://t.co/b0KV4w6zj5", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756286375618293978" + ], + "editable_until_msecs": "1707569876000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "18656", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 18, + "bookmarked": false, + "created_at": "Sat Feb 10 11:57:56 +0000 2024", + "conversation_id_str": "1756286375618293978", + "display_text_range": [ + 0, + 277 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 526, + "favorited": false, + "full_text": "🚨GAZA: In the past 48 hours, MSF staff report shots fired at people inside Nasser hospital. \nTwo people were killed, five others injured, including one nurse who was severely wounded. \nMedical staff are afraid to move within and around the hospital due to fear of being shot...", + "is_quote_status": false, + "lang": "en", + "quote_count": 34, + "reply_count": 10, + "retweet_count": 421, + "retweeted": false, + "user_id_str": "2195671183", + "id_str": "1756286375618293978" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756291473551634617", + "sortIndex": "1756309211907620847", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756291473551634617", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", + "rest_id": "1462548977367359490", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Nov 21 22:30:41 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", + "entities": { + "description": { + "urls": [ + { + "display_url": "kyivindependent.com/membership/", + "expanded_url": "http://kyivindependent.com/membership/", + "url": "https://t.co/jsQiFkoveH", + "indices": [ + 17, + 40 + ] + }, + { + "display_url": "kyivindependent.com/membership/?in…", + "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", + "url": "https://t.co/eNwj76xa7a", + "indices": [ + 60, + 83 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "kyivindependent.com", + "expanded_url": "http://kyivindependent.com", + "url": "https://t.co/WZvsaFpT20", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 307, + "followers_count": 2090013, + "friends_count": 27, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 20010, + "location": "Kyiv", + "media_count": 3970, + "name": "The Kyiv Independent", + "normal_followers_count": 2090013, + "pinned_tweet_ids_str": [ + "1611768917151862784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivIndependent", + "statuses_count": 36943, + "translator_type": "none", + "url": "https://t.co/WZvsaFpT20", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1595086441079513088", + "professional_type": "Business", + "category": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/omfve6NKLw", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756290334370168832/G9Jb6bz0?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 150, + "width": 225, + "url": "https://pbs.twimg.com/card_img/1756290334370168832/G9Jb6bz0?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Romania's Defense Ministry said that jets stationed at an airbase near Fetesti, some 200 kilometers from the Ukrainian border, were summoned in response to perform reconnaissance.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "kyivindependent.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 320, + "width": 480, + "url": "https://pbs.twimg.com/card_img/1756290334370168832/G9Jb6bz0?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756290334370168832/G9Jb6bz0?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 683, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756290334370168832/G9Jb6bz0?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "1462548977367359490", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756290334370168832/G9Jb6bz0?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756290334370168832/G9Jb6bz0?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 67, + "width": 100, + "url": "https://pbs.twimg.com/card_img/1756290334370168832/G9Jb6bz0?format=jpg&name=100x100" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 683, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756290334370168832/G9Jb6bz0?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 683, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756290334370168832/G9Jb6bz0?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "kyivindependent.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756290334370168832/G9Jb6bz0?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 206, + "green": 201, + "red": 193 + }, + "percentage": 72.57 + }, + { + "rgb": { + "blue": 136, + "green": 161, + "red": 174 + }, + "percentage": 18.18 + }, + { + "rgb": { + "blue": 111, + "green": 109, + "red": 98 + }, + "percentage": 8.9 + }, + { + "rgb": { + "blue": 34, + "green": 37, + "red": 28 + }, + "percentage": 0.28 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Romania scrambles F-16s amid Russian drone strikes on Odesa Oblast", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 206, + "green": 201, + "red": 193 + }, + "percentage": 72.57 + }, + { + "rgb": { + "blue": 136, + "green": 161, + "red": 174 + }, + "percentage": 18.18 + }, + { + "rgb": { + "blue": 111, + "green": 109, + "red": 98 + }, + "percentage": 8.9 + }, + { + "rgb": { + "blue": 34, + "green": 37, + "red": 28 + }, + "percentage": 0.28 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 683, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756290334370168832/G9Jb6bz0?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756290334370168832/G9Jb6bz0?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 206, + "green": 201, + "red": 193 + }, + "percentage": 72.57 + }, + { + "rgb": { + "blue": 136, + "green": 161, + "red": 174 + }, + "percentage": 18.18 + }, + { + "rgb": { + "blue": 111, + "green": 109, + "red": 98 + }, + "percentage": 8.9 + }, + { + "rgb": { + "blue": 34, + "green": 37, + "red": 28 + }, + "percentage": 0.28 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 683, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756290334370168832/G9Jb6bz0?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/omfve6NKLw", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 683, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756290334370168832/G9Jb6bz0?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/omfve6NKLw", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", + "rest_id": "1462548977367359490", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Nov 21 22:30:41 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", + "entities": { + "description": { + "urls": [ + { + "display_url": "kyivindependent.com/membership/", + "expanded_url": "http://kyivindependent.com/membership/", + "url": "https://t.co/jsQiFkoveH", + "indices": [ + 17, + 40 + ] + }, + { + "display_url": "kyivindependent.com/membership/?in…", + "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", + "url": "https://t.co/eNwj76xa7a", + "indices": [ + 60, + 83 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "kyivindependent.com", + "expanded_url": "http://kyivindependent.com", + "url": "https://t.co/WZvsaFpT20", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 307, + "followers_count": 2090013, + "friends_count": 27, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 20010, + "location": "Kyiv", + "media_count": 3970, + "name": "The Kyiv Independent", + "normal_followers_count": 2090013, + "pinned_tweet_ids_str": [ + "1611768917151862784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivIndependent", + "statuses_count": 36943, + "translator_type": "none", + "url": "https://t.co/WZvsaFpT20", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1595086441079513088", + "professional_type": "Business", + "category": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756291473551634617" + ], + "editable_until_msecs": "1707571092000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "44875", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 5, + "bookmarked": false, + "created_at": "Sat Feb 10 12:18:12 +0000 2024", + "conversation_id_str": "1756291473551634617", + "display_text_range": [ + 0, + 267 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "kyivindependent.com/romania-scramb…", + "expanded_url": "https://kyivindependent.com/romania-scrambles-f-16s-amid-russian-drone-strikes-on-odesa-oblast/", + "url": "https://t.co/omfve6NKLw", + "indices": [ + 244, + 267 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 299, + "favorited": false, + "full_text": "⚡️Romania scrambles F-16s amid Russian drone strikes on Odesa Oblast.\n\nTurkish F-16 fighter jets stationed in Romania were scrambled after Russian drone strikes on Odesa Oblast in the early morning of Feb. 10, Romania's Defense Ministry said.\n\nhttps://t.co/omfve6NKLw", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 3, + "reply_count": 11, + "retweet_count": 82, + "retweeted": false, + "user_id_str": "1462548977367359490", + "id_str": "1756291473551634617" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756289699461697735", + "sortIndex": "1756309211907620846", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756289699461697735", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NDA4MzE4Nw==", + "rest_id": "84083187", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Oct 21 13:42:34 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Ukraine Correspondent. British-Lebanese conflict journalist & filmmaker based in Kyiv. Co-host of @DrillPod. RTs ≠ endorsement.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ko-fi.com/ozkaterji", + "expanded_url": "http://ko-fi.com/ozkaterji", + "url": "https://t.co/FC9pQbgXa4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 45500, + "followers_count": 215887, + "friends_count": 11666, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3397, + "location": "Kyiv, Ukraine", + "media_count": 6412, + "name": "Oz Katerji", + "normal_followers_count": 215887, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84083187/1647382697", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713181637574275072/gUp8KMF4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OzKaterji", + "statuses_count": 174699, + "translator_type": "none", + "url": "https://t.co/FC9pQbgXa4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756289699461697735" + ], + "editable_until_msecs": "1707570669293", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 12:11:09 +0000 2024", + "conversation_id_str": "1756289699461697735", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "80298984", + "name": "Тетяна Denford (Тетяна Бісик) 🇺🇦", + "screen_name": "TetyanaUkrainka", + "indices": [ + 3, + 19 + ] + }, + { + "id_str": "1613781777675620353", + "name": "20DaysInMariupol", + "screen_name": "20DaysMariupol", + "indices": [ + 70, + 85 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @TetyanaUkrainka: The fact that this tweet is getting more eyes on @20DaysMariupol is incredible. Especially when the attention comes fr…", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1756247396680454403", + "quoted_status_permalink": { + "url": "https://t.co/1WbL8XyA8h", + "expanded": "https://twitter.com/USAmbKyiv/status/1756247396680454403", + "display": "twitter.com/USAmbKyiv/stat…" + }, + "reply_count": 0, + "retweet_count": 17, + "retweeted": false, + "user_id_str": "84083187", + "id_str": "1756289699461697735", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756288953206935909", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4MDI5ODk4NA==", + "rest_id": "80298984", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue Oct 06 13:16:24 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Ukrainian. Translator @20DaysMariupol & ‘The Battle for Ukraine’. Author: 'The Soldier's Child', ‘The Child of #Ukraine'. Translator for @FrontlinePBS & @apnews", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "geni.us/B0C37H35WNcover", + "expanded_url": "https://geni.us/B0C37H35WNcover", + "url": "https://t.co/kNBuLsOwj1", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 31556, + "followers_count": 12227, + "friends_count": 547, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 203, + "location": "IMDB and your local bookstore", + "media_count": 3984, + "name": "Тетяна Denford (Тетяна Бісик) 🇺🇦", + "normal_followers_count": 12227, + "pinned_tweet_ids_str": [ + "1751629284630737188" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/80298984/1706451882", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1587855586674237443/2yYuqTiO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "TetyanaUkrainka", + "statuses_count": 27453, + "translator_type": "none", + "url": "https://t.co/kNBuLsOwj1", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1465366239694532621", + "professional_type": "Creator", + "category": [ + { + "id": 957, + "name": "Author", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756288953206935909" + ], + "editable_until_msecs": "1707570491000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "8967", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756247396680454403", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTI4OTk2ODA0OTUxNDc4Mjcz", + "rest_id": "1528996804951478273", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/StateDept", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1653450164210630659/oPRqz0j6_bigger.jpg" + }, + "description": "Department of State", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue May 24 07:11:21 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "United States Ambassador to Ukraine", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ua.usembassy.gov/our-relationsh…", + "expanded_url": "https://ua.usembassy.gov/our-relationship/our-ambassador/", + "url": "https://t.co/pOYsF2er0t", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 1575, + "followers_count": 89813, + "friends_count": 194, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 691, + "location": "Ukraine", + "media_count": 983, + "name": "Ambassador Bridget A. Brink", + "normal_followers_count": 89813, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1528996804951478273/1654092211", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1531008733916057601/5wVHzk_y_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "USAmbKyiv", + "statuses_count": 1895, + "translator_type": "none", + "url": "https://t.co/pOYsF2er0t", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756247396680454403" + ], + "editable_until_msecs": "1707560583000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "count": "15588", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE3NTYyNDczOTY0NzQ4ODQwOTY=", + "text": "\"Замість того, щоб дивитися, як Путін бреше в інтерв'ю Такеру Карлсону, я пропоную подивитися @20DaysMariupol. \n\nКоли мені надіслали для перекладу кадри з лікарні, і я побачила цю сцену, мені довелося поставити на паузу і вийти з кімнати; я занадто сильно плакала, і не могла дивитися на екран. Син того чоловіка був убитий ракетою під час гри у футбол; його закривавлений черевик був викинутий у коридорі біля палати. Він обійняв сина і доторкнувся до його обличчя так, ніби міг повернути його до життя. \n\nЯ ніколи не забуду цього батька і часто думаю про нього. Цікаво, чи він ще живий?\n\nПодивіться, будь ласка, цей важливий документальний фільм. Ви дізнаєтеся більше з 30 секунд цих кадрів, ніж з години розповіді маніяка про своє захоплення Гітлером. Це вплине на вас більше, ніж публікація в соціальних мережах відео з роздутим обличчям Такера Карлсона, який захоплено розповідає про диктатора.\n\nПродовжуйте підтримувати Україну. \n\nhttps://t.co/L7hOHnD4bG\"", + "entity_set": { + "hashtags": [], + "symbols": [], + "urls": [ + { + "display_url": "20daysinmariupol.com", + "expanded_url": "https://20daysinmariupol.com", + "url": "https://t.co/L7hOHnD4bG", + "indices": [ + 937, + 960 + ] + } + ], + "user_mentions": [ + { + "id_str": "1613781777675620353", + "name": "20DaysInMariupol", + "screen_name": "20DaysMariupol", + "indices": [ + 94, + 109 + ] + } + ] + }, + "richtext": { + "richtext_tags": [] + }, + "media": { + "inline_media": [] + } + } + } + }, + "quotedRefResult": {}, + "legacy": { + "bookmark_count": 2, + "bookmarked": false, + "created_at": "Sat Feb 10 09:23:03 +0000 2024", + "conversation_id_str": "1756247396680454403", + "display_text_range": [ + 0, + 276 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1613781777675620353", + "name": "20DaysInMariupol", + "screen_name": "20DaysMariupol", + "indices": [ + 94, + 109 + ] + } + ] + }, + "favorite_count": 179, + "favorited": false, + "full_text": "\"Замість того, щоб дивитися, як Путін бреше в інтерв'ю Такеру Карлсону, я пропоную подивитися @20DaysMariupol. \n\nКоли мені надіслали для перекладу кадри з лікарні, і я побачила цю сцену, мені довелося поставити на паузу і вийти з кімнати; я занадто сильно плакала, і не могла…", + "is_quote_status": true, + "lang": "uk", + "quote_count": 3, + "quoted_status_id_str": "1755976544168624218", + "quoted_status_permalink": { + "url": "https://t.co/UhZGuCl6Iw", + "expanded": "https://twitter.com/TetyanaUkrainka/status/1755976544168624218", + "display": "twitter.com/TetyanaUkraink…" + }, + "reply_count": 2, + "retweet_count": 50, + "retweeted": false, + "user_id_str": "1528996804951478273", + "id_str": "1756247396680454403" + } + } + }, + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "created_at": "Sat Feb 10 12:08:11 +0000 2024", + "conversation_id_str": "1756288953206935909", + "display_text_range": [ + 0, + 266 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 248, + 256 + ], + "text": "Ukraine" + }, + { + "indices": [ + 257, + 266 + ], + "text": "Mariupol" + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1613781777675620353", + "name": "20DaysInMariupol", + "screen_name": "20DaysMariupol", + "indices": [ + 49, + 64 + ] + } + ] + }, + "favorite_count": 53, + "favorited": false, + "full_text": "The fact that this tweet is getting more eyes on @20DaysMariupol is incredible. Especially when the attention comes from official channels that can change the world. Thank you, everyone, for amplifying this film. We are all incredibly proud of it. #Ukraine #Mariupol", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1756247396680454403", + "quoted_status_permalink": { + "url": "https://t.co/1WbL8XyA8h", + "expanded": "https://twitter.com/USAmbKyiv/status/1756247396680454403", + "display": "twitter.com/USAmbKyiv/stat…" + }, + "reply_count": 0, + "retweet_count": 17, + "retweeted": false, + "user_id_str": "80298984", + "id_str": "1756288953206935909" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756289584546115952", + "sortIndex": "1756309211907620845", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756289584546115952", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NDA4MzE4Nw==", + "rest_id": "84083187", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Oct 21 13:42:34 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Ukraine Correspondent. British-Lebanese conflict journalist & filmmaker based in Kyiv. Co-host of @DrillPod. RTs ≠ endorsement.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ko-fi.com/ozkaterji", + "expanded_url": "http://ko-fi.com/ozkaterji", + "url": "https://t.co/FC9pQbgXa4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 45500, + "followers_count": 215887, + "friends_count": 11666, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3397, + "location": "Kyiv, Ukraine", + "media_count": 6412, + "name": "Oz Katerji", + "normal_followers_count": 215887, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84083187/1647382697", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713181637574275072/gUp8KMF4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OzKaterji", + "statuses_count": 174699, + "translator_type": "none", + "url": "https://t.co/FC9pQbgXa4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756289584546115952" + ], + "editable_until_msecs": "1707570641895", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 12:10:41 +0000 2024", + "conversation_id_str": "1756289584546115952", + "display_text_range": [ + 0, + 120 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "318933041", + "name": "Secunder Kermani", + "screen_name": "SecKermani", + "indices": [ + 3, + 14 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @SecKermani: Major disruption to Twitter in Pakistan amidst ongoing allegations of vote rigging by Imran Khan’s party", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1756283124978257991", + "quoted_status_permalink": { + "url": "https://t.co/7Tl7dhmYLK", + "expanded": "https://twitter.com/netblocks/status/1756283124978257991", + "display": "twitter.com/netblocks/stat…" + }, + "reply_count": 0, + "retweet_count": 541, + "retweeted": false, + "user_id_str": "84083187", + "id_str": "1756289584546115952", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756289022639390815", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozMTg5MzMwNDE=", + "rest_id": "318933041", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Fri Jun 17 08:53:52 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "Foreign Correspondent @Channel4News, ex BBC Pakistan & Afghanistan Correspondent / Newsnight", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "youtube.com/playlist?list=…", + "expanded_url": "https://www.youtube.com/playlist?list=PLrpXvkasqvCcMfmQzMbitzV-ji0s4Xw27", + "url": "https://t.co/Mr449QcXbT", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 16564, + "followers_count": 74617, + "friends_count": 3861, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 717, + "location": "Back where I came from. Kinda", + "media_count": 1228, + "name": "Secunder Kermani", + "normal_followers_count": 74617, + "pinned_tweet_ids_str": [ + "1755324296929419553" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/318933041/1702845413", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/855867454588715008/jiTP8zzW_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "SecKermani", + "statuses_count": 11976, + "translator_type": "none", + "url": "https://t.co/Mr449QcXbT", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756289022639390815" + ], + "editable_until_msecs": "1707570507000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "46591", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756283124978257991", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4MTUyOTc0NjM2OTUzMjcyMzQ=", + "rest_id": "815297463695327234", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sat Dec 31 20:43:57 +0000 2016", + "default_profile": false, + "default_profile_image": false, + "description": "The Internet's Observatory: Tracking cybersecurity and digital governance • connectivity and democracy • tools and policy for change", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "netblocks.org", + "expanded_url": "https://netblocks.org", + "url": "https://t.co/vEQHhnfEeu", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 11196, + "followers_count": 252792, + "friends_count": 0, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2369, + "location": "", + "media_count": 1837, + "name": "NetBlocks", + "normal_followers_count": 252792, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/815297463695327234/1667583890", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1000441008847572993/i8yE59Vm_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "netblocks", + "statuses_count": 5264, + "translator_type": "none", + "url": "https://t.co/vEQHhnfEeu", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1483101404583632898", + "professional_type": "Business", + "category": [ + { + "id": 713, + "name": "Science & Technology", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756283124978257991" + ], + "editable_until_msecs": "1707569101000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "784368", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 69, + "bookmarked": false, + "created_at": "Sat Feb 10 11:45:01 +0000 2024", + "conversation_id_str": "1756283124978257991", + "display_text_range": [ + 0, + 214 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 78, + 87 + ], + "text": "Pakistan" + } + ], + "media": [ + { + "display_url": "pic.twitter.com/1sZpkbWN6L", + "expanded_url": "https://twitter.com/netblocks/status/1756283124978257991/photo/1", + "id_str": "1756283057839951872", + "indices": [ + 215, + 238 + ], + "media_key": "3_1756283057839951872", + "media_url_https": "https://pbs.twimg.com/media/GF-SIsuWUAAjnMw.jpg", + "type": "photo", + "url": "https://t.co/1sZpkbWN6L", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1870, + "w": 1870, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1870, + "width": 1870, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1870, + "h": 1047 + }, + { + "x": 0, + "y": 0, + "w": 1870, + "h": 1870 + }, + { + "x": 161, + "y": 0, + "w": 1640, + "h": 1870 + }, + { + "x": 514, + "y": 0, + "w": 935, + "h": 1870 + }, + { + "x": 0, + "y": 0, + "w": 1870, + "h": 1870 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/1sZpkbWN6L", + "expanded_url": "https://twitter.com/netblocks/status/1756283124978257991/photo/1", + "id_str": "1756283057839951872", + "indices": [ + 215, + 238 + ], + "media_key": "3_1756283057839951872", + "media_url_https": "https://pbs.twimg.com/media/GF-SIsuWUAAjnMw.jpg", + "type": "photo", + "url": "https://t.co/1sZpkbWN6L", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1870, + "w": 1870, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1870, + "width": 1870, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1870, + "h": 1047 + }, + { + "x": 0, + "y": 0, + "w": 1870, + "h": 1870 + }, + { + "x": 161, + "y": 0, + "w": 1640, + "h": 1870 + }, + { + "x": 514, + "y": 0, + "w": 935, + "h": 1870 + }, + { + "x": 0, + "y": 0, + "w": 1870, + "h": 1870 + } + ] + } + } + ] + }, + "favorite_count": 5378, + "favorited": false, + "full_text": "⚠️ Confirmed: Live metrics show a nation-scale disruption to X/Twitter across #Pakistan; the incident comes amid political turmoil after a controversial election held under an internet and mobile network blackout 📉 https://t.co/1sZpkbWN6L", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 632, + "reply_count": 767, + "retweet_count": 3997, + "retweeted": false, + "user_id_str": "815297463695327234", + "id_str": "1756283124978257991" + } + } + }, + "legacy": { + "bookmark_count": 8, + "bookmarked": false, + "created_at": "Sat Feb 10 12:08:27 +0000 2024", + "conversation_id_str": "1756289022639390815", + "display_text_range": [ + 0, + 104 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 928, + "favorited": false, + "full_text": "Major disruption to Twitter in Pakistan amidst ongoing allegations of vote rigging by Imran Khan’s party", + "is_quote_status": true, + "lang": "en", + "quote_count": 13, + "quoted_status_id_str": "1756283124978257991", + "quoted_status_permalink": { + "url": "https://t.co/7Tl7dhmYLK", + "expanded": "https://twitter.com/netblocks/status/1756283124978257991", + "display": "twitter.com/netblocks/stat…" + }, + "reply_count": 33, + "retweet_count": 541, + "retweeted": false, + "user_id_str": "318933041", + "id_str": "1756289022639390815" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756288886710444068", + "sortIndex": "1756309211907620844", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756288886710444068", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMjI2MTEzMzcxNDgyODA4MzIx", + "rest_id": "1226113371482808321", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Feb 08 12:00:26 +0000 2020", + "default_profile": true, + "default_profile_image": false, + "description": "Sprecher des Auswärtigen Amts (@AuswaertigesAmt) / Spokesperson of the Federal Foreign Office (@GermanyDiplo) / All views are my own. RT ≠ endorsement. 🇩🇪🇪🇺", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "diplo.de", + "expanded_url": "http://www.diplo.de", + "url": "https://t.co/5TkOoKgTQG", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 19284, + "followers_count": 13163, + "friends_count": 2544, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 215, + "location": "Berlin, Deutschland", + "media_count": 667, + "name": "Sebastian Fischer", + "normal_followers_count": 13163, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1226113371482808321/1657659785", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1477691921988562952/Gl5efsml_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "SFischer_EU", + "statuses_count": 7450, + "translator_type": "none", + "url": "https://t.co/5TkOoKgTQG", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756288886710444068" + ], + "editable_until_msecs": "1707570475518", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 12:07:55 +0000 2024", + "conversation_id_str": "1756288886710444068", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 44, + 50 + ], + "text": "Rafah" + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "453030125", + "name": "GermanForeignOffice", + "screen_name": "GermanyDiplo", + "indices": [ + 3, + 16 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @GermanyDiplo: Already, the suffering in #Rafah is unfathomable. In an extremely confined space 1.3 million people are seeking shelter f…", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1756262896458174514", + "quoted_status_permalink": { + "url": "https://t.co/ORgOBYJXdc", + "expanded": "https://twitter.com/abaerbock/status/1756262896458174514", + "display": "twitter.com/abaerbock/stat…" + }, + "reply_count": 0, + "retweet_count": 51, + "retweeted": false, + "user_id_str": "1226113371482808321", + "id_str": "1756288886710444068", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756283599785988470", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NTMwMzAxMjU=", + "rest_id": "453030125", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Jan 02 14:13:02 +0000 2012", + "default_profile": false, + "default_profile_image": false, + "description": "News from the German Foreign Office - Follow us in German as well @AuswaertigesAmt - Imprint and data privacy: https://t.co/CUDlmEsfgc", + "entities": { + "description": { + "urls": [ + { + "display_url": "t1p.de/jkm1", + "expanded_url": "https://t1p.de/jkm1", + "url": "https://t.co/CUDlmEsfgc", + "indices": [ + 111, + 134 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "diplo.de/en", + "expanded_url": "http://www.diplo.de/en", + "url": "https://t.co/9fnyRjjP18", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 12924, + "followers_count": 309017, + "friends_count": 638, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 3471, + "location": "Berlin", + "media_count": 6200, + "name": "GermanForeignOffice", + "normal_followers_count": 309017, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/453030125/1638975044", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1648952631950229504/aQXQ4hjz_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "GermanyDiplo", + "statuses_count": 18424, + "translator_type": "none", + "url": "https://t.co/9fnyRjjP18", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756283599785988470" + ], + "editable_until_msecs": "1707569215000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "28980", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756262896458174514", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDY5MjY0Mzg3NTEyOTc5NDYx", + "rest_id": "1469264387512979461", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Fri Dec 10 11:15:44 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Offizieller Twitter Account von Außenministerin Annalena Baerbock │ Official Twitter Account of Foreign Minister Annalena Baerbock", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "auswaertiges-amt.de", + "expanded_url": "http://www.auswaertiges-amt.de", + "url": "https://t.co/bR6R0XD5I5", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 142, + "followers_count": 677968, + "friends_count": 106, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1863, + "location": "Berlin", + "media_count": 98, + "name": "Außenministerin Annalena Baerbock", + "normal_followers_count": 677968, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1469264387512979461/1647890690", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1555103756143960064/HTGWw8Pc_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ABaerbock", + "statuses_count": 632, + "translator_type": "none", + "url": "https://t.co/bR6R0XD5I5", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756262896458174514" + ], + "editable_until_msecs": "1707564278000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "count": "115418", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 29, + "bookmarked": false, + "created_at": "Sat Feb 10 10:24:38 +0000 2024", + "conversation_id_str": "1756262896458174514", + "display_text_range": [ + 0, + 270 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 11, + 17 + ], + "text": "Rafah" + }, + { + "indices": [ + 225, + 230 + ], + "text": "Gaza" + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 718, + "favorited": false, + "full_text": "Die Not in #Rafah ist schon jetzt unfassbar. 1,3 Mio. Menschen suchen dort auf engsten Raum Schutz vor den Kämpfen. Eine Offensive der israelischen Armee auf Rafah wäre eine humanitäre Katastrophe mit Ansage. Die Menschen in #Gaza können sich nicht in Luft auflösen. 1/2", + "is_quote_status": false, + "lang": "de", + "quote_count": 51, + "reply_count": 482, + "retweet_count": 101, + "retweeted": false, + "user_id_str": "1469264387512979461", + "id_str": "1756262896458174514" + } + } + }, + "legacy": { + "bookmark_count": 14, + "bookmarked": false, + "created_at": "Sat Feb 10 11:46:55 +0000 2024", + "conversation_id_str": "1756283599785988470", + "display_text_range": [ + 0, + 279 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 26, + 32 + ], + "text": "Rafah" + }, + { + "indices": [ + 241, + 246 + ], + "text": "Gaza" + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 94, + "favorited": false, + "full_text": "Already, the suffering in #Rafah is unfathomable. In an extremely confined space 1.3 million people are seeking shelter from the fighting. A large-scale IDF offensive in Rafah would be a humanitarian catastrophe in the making. The people of #Gaza cannot vanish into thin air. 1/2", + "is_quote_status": true, + "lang": "en", + "quote_count": 33, + "quoted_status_id_str": "1756262896458174514", + "quoted_status_permalink": { + "url": "https://t.co/ORgOBYJXdc", + "expanded": "https://twitter.com/abaerbock/status/1756262896458174514", + "display": "twitter.com/abaerbock/stat…" + }, + "reply_count": 66, + "retweet_count": 51, + "retweeted": false, + "user_id_str": "453030125", + "id_str": "1756283599785988470" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756287296310051038", + "sortIndex": "1756309211907620843", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756287296310051038", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjgyNzE0OA==", + "rest_id": "16827148", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Fri Oct 17 16:55:19 +0000 2008", + "default_profile": false, + "default_profile_image": false, + "description": "Ukraine correspondent @FT. 14 years reporting across Ukraine. Author, THE WAR CAME TO US, published @BloomsburyBooks, out now: https://t.co/Vfr0Qg7iIt", + "entities": { + "description": { + "urls": [ + { + "display_url": "linktr.ee/thewarcametous", + "expanded_url": "http://linktr.ee/thewarcametous", + "url": "https://t.co/Vfr0Qg7iIt", + "indices": [ + 127, + 150 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "ft.com/christopher-mi…", + "expanded_url": "https://www.ft.com/christopher-miller", + "url": "https://t.co/gCKlU6Hspj", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 54550, + "followers_count": 411540, + "friends_count": 4363, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 10737, + "location": "Kyiv via Bakhmut; also NYC", + "media_count": 8266, + "name": "Christopher Miller", + "normal_followers_count": 411540, + "pinned_tweet_ids_str": [ + "1681278741144633344" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16827148/1679318245", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1530061394619600896/GR0eYnkX_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ChristopherJM", + "statuses_count": 73927, + "translator_type": "none", + "url": "https://t.co/gCKlU6Hspj", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1504925671306534915", + "professional_type": "Creator", + "category": [ + { + "id": 955, + "name": "Journalist", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "card": { + "rest_id": "https://t.co/9xgwWHULSO", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 150, + "width": 267, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Finding Ukrainian civilians in Russian captivity is hard - and there is no formal way to secure their release.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.bbc.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 320, + "width": 569, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 81, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_alt_text", + "value": { + "string_value": "Mykyta", + "type": "STRING" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "bbc.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_alt_text", + "value": { + "string_value": "Mykyta", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 27, + "green": 29, + "red": 29 + }, + "percentage": 48.9 + }, + { + "rgb": { + "blue": 217, + "green": 222, + "red": 221 + }, + "percentage": 26.38 + }, + { + "rgb": { + "blue": 115, + "green": 164, + "red": 174 + }, + "percentage": 18.47 + }, + { + "rgb": { + "blue": 120, + "green": 120, + "red": 120 + }, + "percentage": 5.01 + }, + { + "rgb": { + "blue": 84, + "green": 110, + "red": 116 + }, + "percentage": 2.05 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "The Ukrainians 'disappearing' in Russia's prisons", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 27, + "green": 29, + "red": 29 + }, + "percentage": 48.9 + }, + { + "rgb": { + "blue": 217, + "green": 222, + "red": 221 + }, + "percentage": 26.38 + }, + { + "rgb": { + "blue": 115, + "green": 164, + "red": 174 + }, + "percentage": 18.47 + }, + { + "rgb": { + "blue": 120, + "green": 120, + "red": 120 + }, + "percentage": 5.01 + }, + { + "rgb": { + "blue": 84, + "green": 110, + "red": 116 + }, + "percentage": 2.05 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 27, + "green": 29, + "red": 29 + }, + "percentage": 48.9 + }, + { + "rgb": { + "blue": 217, + "green": 222, + "red": 221 + }, + "percentage": 26.38 + }, + { + "rgb": { + "blue": 115, + "green": 164, + "red": 174 + }, + "percentage": 18.47 + }, + { + "rgb": { + "blue": 120, + "green": 120, + "red": 120 + }, + "percentage": 5.01 + }, + { + "rgb": { + "blue": 84, + "green": 110, + "red": 116 + }, + "percentage": 2.05 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/9xgwWHULSO", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/9xgwWHULSO", + "user_refs_results": [] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756287296310051038" + ], + "editable_until_msecs": "1707570096337", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 12:01:36 +0000 2024", + "conversation_id_str": "1756287296310051038", + "display_text_range": [ + 0, + 87 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "bbc.in/48eQRd3", + "expanded_url": "https://bbc.in/48eQRd3", + "url": "https://t.co/9xgwWHULSO", + "indices": [ + 64, + 87 + ] + } + ], + "user_mentions": [ + { + "id_str": "742143", + "name": "BBC News (World)", + "screen_name": "BBCWorld", + "indices": [ + 3, + 12 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @BBCWorld: The Ukrainians 'disappearing' in Russia's prisons https://t.co/9xgwWHULSO", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 290, + "retweeted": false, + "user_id_str": "16827148", + "id_str": "1756287296310051038", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756259277746934007", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo3NDIxNDM=", + "rest_id": "742143", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/BBCNews", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1529107486271225859/03qcVNIk_bigger.jpg" + }, + "description": "BBC News (UK)", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Feb 01 07:44:29 +0000 2007", + "default_profile": false, + "default_profile_image": false, + "description": "News, features and analysis from the World's newsroom. Breaking news, follow @BBCBreaking. UK news, @BBCNews. Latest sports news @BBCSport", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bbc.com/news", + "expanded_url": "http://www.bbc.com/news", + "url": "https://t.co/4zUWrLAYqP", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 1, + "followers_count": 40609120, + "friends_count": 16, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 136605, + "location": "London, UK", + "media_count": 27217, + "name": "BBC News (World)", + "normal_followers_count": 40609120, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/742143/1663658662", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1529107170448523264/q3VwEx38_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "BBCWorld", + "statuses_count": 376025, + "translator_type": "none", + "url": "https://t.co/4zUWrLAYqP", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/9xgwWHULSO", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 150, + "width": 267, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Finding Ukrainian civilians in Russian captivity is hard - and there is no formal way to secure their release.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.bbc.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 320, + "width": 569, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 81, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_alt_text", + "value": { + "string_value": "Mykyta", + "type": "STRING" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "bbc.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_alt_text", + "value": { + "string_value": "Mykyta", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 27, + "green": 29, + "red": 29 + }, + "percentage": 48.9 + }, + { + "rgb": { + "blue": 217, + "green": 222, + "red": 221 + }, + "percentage": 26.38 + }, + { + "rgb": { + "blue": 115, + "green": 164, + "red": 174 + }, + "percentage": 18.47 + }, + { + "rgb": { + "blue": 120, + "green": 120, + "red": 120 + }, + "percentage": 5.01 + }, + { + "rgb": { + "blue": 84, + "green": 110, + "red": 116 + }, + "percentage": 2.05 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "The Ukrainians 'disappearing' in Russia's prisons", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 27, + "green": 29, + "red": 29 + }, + "percentage": 48.9 + }, + { + "rgb": { + "blue": 217, + "green": 222, + "red": 221 + }, + "percentage": 26.38 + }, + { + "rgb": { + "blue": 115, + "green": 164, + "red": 174 + }, + "percentage": 18.47 + }, + { + "rgb": { + "blue": 120, + "green": 120, + "red": 120 + }, + "percentage": 5.01 + }, + { + "rgb": { + "blue": 84, + "green": 110, + "red": 116 + }, + "percentage": 2.05 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 27, + "green": 29, + "red": 29 + }, + "percentage": 48.9 + }, + { + "rgb": { + "blue": 217, + "green": 222, + "red": 221 + }, + "percentage": 26.38 + }, + { + "rgb": { + "blue": 115, + "green": 164, + "red": 174 + }, + "percentage": 18.47 + }, + { + "rgb": { + "blue": 120, + "green": 120, + "red": 120 + }, + "percentage": 5.01 + }, + { + "rgb": { + "blue": 84, + "green": 110, + "red": 116 + }, + "percentage": 2.05 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/9xgwWHULSO", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/9xgwWHULSO", + "user_refs_results": [] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756259277746934007" + ], + "editable_until_msecs": "1707563416000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "131418", + "state": "EnabledWithCount" + }, + "source": "SocialFlow", + "legacy": { + "bookmark_count": 38, + "bookmarked": false, + "created_at": "Sat Feb 10 10:10:16 +0000 2024", + "conversation_id_str": "1756259277746934007", + "display_text_range": [ + 0, + 73 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "bbc.in/48eQRd3", + "expanded_url": "https://bbc.in/48eQRd3", + "url": "https://t.co/9xgwWHULSO", + "indices": [ + 50, + 73 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 599, + "favorited": false, + "full_text": "The Ukrainians 'disappearing' in Russia's prisons https://t.co/9xgwWHULSO", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 12, + "reply_count": 129, + "retweet_count": 290, + "retweeted": false, + "user_id_str": "742143", + "id_str": "1756259277746934007" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756286016762089631", + "sortIndex": "1756309211907620842", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756286016762089631", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozMDAxMTEwMA==", + "rest_id": "30011100", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Apr 09 16:06:23 +0000 2009", + "default_profile": true, + "default_profile_image": false, + "description": "Chief Foreign-Affairs Correspondent of The Wall Street Journal. Author. My newest book, Our Enemies Will Vanish, is out on Jan. 9. Instagram/Threads @yarotrof", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "yarotrof.com", + "expanded_url": "http://www.yarotrof.com", + "url": "https://t.co/ExAi4dkOQG", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 3675, + "followers_count": 138965, + "friends_count": 3908, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 4185, + "location": "", + "media_count": 1140, + "name": "Yaroslav Trofimov", + "normal_followers_count": 138965, + "pinned_tweet_ids_str": [ + "1756026653028020509" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/30011100/1703172988", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1107348447772975104/mK-YgG6Z_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "yarotrof", + "statuses_count": 25891, + "translator_type": "none", + "url": "https://t.co/ExAi4dkOQG", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1467865587615473671", + "professional_type": "Creator", + "category": [ + { + "id": 957, + "name": "Author", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756286016762089631" + ], + "editable_until_msecs": "1707569791000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "9884", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756284846819672266", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDk4Njc5NjQ3NDMyODEwNTAw", + "rest_id": "1498679647432810500", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Tue Mar 01 15:21:04 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "Work in UA foreign affairs sector, ex-UA defence sector. Thoughts on Rus-Ukr war updates. I speak fluent sarcasm. Personal account. RT ≠ endorsement", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linktr.ee/maria.drutska", + "expanded_url": "https://linktr.ee/maria.drutska", + "url": "https://t.co/tW2Rd4fPSN", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 14859, + "followers_count": 130970, + "friends_count": 99, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1702, + "location": "Ukraine, Kyiv", + "media_count": 2520, + "name": "Maria Drutska 🇺🇦", + "normal_followers_count": 130970, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1498679647432810500/1692375242", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1555811775651762178/Rds66rIu_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "maria_drutska", + "statuses_count": 16174, + "translator_type": "none", + "url": "https://t.co/tW2Rd4fPSN", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1498732860097900550", + "professional_type": "Creator", + "category": [ + { + "id": 695, + "name": "Public & Social Services", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756284846819672266" + ], + "editable_until_msecs": "1707569512000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "19270", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "created_at": "Sat Feb 10 11:51:52 +0000 2024", + "conversation_id_str": "1756284846819672266", + "display_text_range": [ + 0, + 165 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/ZhHARFwGu3", + "expanded_url": "https://twitter.com/maria_drutska/status/1756284846819672266/video/1", + "id_str": "1756284760928690176", + "indices": [ + 166, + 189 + ], + "media_key": "13_1756284760928690176", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1756284760928690176/img/TC3M7cerTP89T_LV.jpg", + "type": "video", + "url": "https://t.co/ZhHARFwGu3", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 1280, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 57566, + "variants": [ + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756284760928690176/vid/avc1/480x270/pMu2OIAulAr1ScO4.mp4?tag=14" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756284760928690176/vid/avc1/640x360/J-8HV-kJv-VdS9mx.mp4?tag=14" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1756284760928690176/pl/n6Dkl-LM0kR-uu7X.m3u8?tag=14&container=cmaf" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756284760928690176/vid/avc1/1280x720/y0cZQ4pA08zoMScL.mp4?tag=14" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/ZhHARFwGu3", + "expanded_url": "https://twitter.com/maria_drutska/status/1756284846819672266/video/1", + "id_str": "1756284760928690176", + "indices": [ + 166, + 189 + ], + "media_key": "13_1756284760928690176", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1756284760928690176/img/TC3M7cerTP89T_LV.jpg", + "type": "video", + "url": "https://t.co/ZhHARFwGu3", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 1280, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 57566, + "variants": [ + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756284760928690176/vid/avc1/480x270/pMu2OIAulAr1ScO4.mp4?tag=14" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756284760928690176/vid/avc1/640x360/J-8HV-kJv-VdS9mx.mp4?tag=14" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1756284760928690176/pl/n6Dkl-LM0kR-uu7X.m3u8?tag=14&container=cmaf" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756284760928690176/vid/avc1/1280x720/y0cZQ4pA08zoMScL.mp4?tag=14" + } + ] + } + } + ] + }, + "favorite_count": 106, + "favorited": false, + "full_text": "‼️In Kharkiv, there are already 7 people died as a result of the Russian attack\n\nAmong the deceased are three children: ages 7, 4, and an infant around 6 months old. https://t.co/ZhHARFwGu3", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 6, + "reply_count": 10, + "retweet_count": 31, + "retweeted": false, + "user_id_str": "1498679647432810500", + "id_str": "1756284846819672266" + } + } + }, + "legacy": { + "bookmark_count": 3, + "bookmarked": false, + "created_at": "Sat Feb 10 11:56:31 +0000 2024", + "conversation_id_str": "1756286016762089631", + "display_text_range": [ + 0, + 24 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 159, + "favorited": false, + "full_text": "“But Russia wants peace”", + "is_quote_status": true, + "lang": "en", + "quote_count": 1, + "quoted_status_id_str": "1756284846819672266", + "quoted_status_permalink": { + "url": "https://t.co/FiTKTuMXN6", + "expanded": "https://twitter.com/maria_drutska/status/1756284846819672266", + "display": "twitter.com/maria_drutska/…" + }, + "reply_count": 4, + "retweet_count": 52, + "retweeted": false, + "user_id_str": "30011100", + "id_str": "1756286016762089631" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756284941912928479", + "sortIndex": "1756309211907620841", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756284941912928479", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjMwMTg2NTM=", + "rest_id": "163018653", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Jul 05 09:44:27 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Ambassador-at-large @MFA_Ukraine, Amb to Austria (2014-2021). Author of “Ukraine vs Darkness. Undiplomatic Thoughts”. Personal account.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amazon.com/Ukraine-vs-Dar…", + "expanded_url": "https://www.amazon.com/Ukraine-vs-Darkness-Undiplomatic-Ukrainian-ebook/dp/B08WKF3B2K", + "url": "https://t.co/ERA9Ntt061", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 28758, + "followers_count": 264429, + "friends_count": 1248, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 4354, + "location": "Kyiv", + "media_count": 6624, + "name": "olexander scherba🇺🇦", + "normal_followers_count": 264429, + "pinned_tweet_ids_str": [ + "1396956590713020416" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/163018653/1646220178", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671642770549956608/yR9Is6BD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "olex_scherba", + "statuses_count": 40000, + "translator_type": "none", + "url": "https://t.co/ERA9Ntt061", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1696586841602834861", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756284941912928479" + ], + "editable_until_msecs": "1707569535000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "6534", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 5, + "bookmarked": false, + "created_at": "Sat Feb 10 11:52:15 +0000 2024", + "conversation_id_str": "1756284941912928479", + "display_text_range": [ + 0, + 109 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 70, + 80 + ], + "text": "Hypocrisy" + }, + { + "indices": [ + 81, + 90 + ], + "text": "ElonMusk" + }, + { + "indices": [ + 92, + 109 + ], + "text": "StandWithUkraine" + } + ], + "media": [ + { + "display_url": "pic.twitter.com/JuWXPwGu7M", + "expanded_url": "https://twitter.com/olex_scherba/status/1756284941912928479/photo/1", + "id_str": "1756284936749817856", + "indices": [ + 110, + 133 + ], + "media_key": "3_1756284936749817856", + "media_url_https": "https://pbs.twimg.com/media/GF-T2ENXoAA5BKm.jpg", + "type": "photo", + "url": "https://t.co/JuWXPwGu7M", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1902, + "w": 1179, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 744, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 422, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1902, + "width": 1179, + "focus_rects": [ + { + "x": 0, + "y": 1144, + "w": 1179, + "h": 660 + }, + { + "x": 0, + "y": 723, + "w": 1179, + "h": 1179 + }, + { + "x": 0, + "y": 558, + "w": 1179, + "h": 1344 + }, + { + "x": 0, + "y": 0, + "w": 951, + "h": 1902 + }, + { + "x": 0, + "y": 0, + "w": 1179, + "h": 1902 + } + ] + } + }, + { + "display_url": "pic.twitter.com/JuWXPwGu7M", + "expanded_url": "https://twitter.com/olex_scherba/status/1756284941912928479/photo/1", + "id_str": "1756284936758149120", + "indices": [ + 110, + 133 + ], + "media_key": "3_1756284936758149120", + "media_url_https": "https://pbs.twimg.com/media/GF-T2EPWwAAdeJX.jpg", + "type": "photo", + "url": "https://t.co/JuWXPwGu7M", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 12, + "y": 397, + "h": 187, + "w": 187 + } + ] + }, + "medium": { + "faces": [ + { + "x": 12, + "y": 397, + "h": 187, + "w": 187 + } + ] + }, + "small": { + "faces": [ + { + "x": 6, + "y": 228, + "h": 107, + "w": 107 + } + ] + }, + "orig": { + "faces": [ + { + "x": 12, + "y": 397, + "h": 187, + "w": 187 + } + ] + } + }, + "sizes": { + "large": { + "h": 750, + "w": 1179, + "resize": "fit" + }, + "medium": { + "h": 750, + "w": 1179, + "resize": "fit" + }, + "small": { + "h": 433, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 750, + "width": 1179, + "focus_rects": [ + { + "x": 0, + "y": 90, + "w": 1179, + "h": 660 + }, + { + "x": 419, + "y": 0, + "w": 750, + "h": 750 + }, + { + "x": 465, + "y": 0, + "w": 658, + "h": 750 + }, + { + "x": 607, + "y": 0, + "w": 375, + "h": 750 + }, + { + "x": 0, + "y": 0, + "w": 1179, + "h": 750 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/JuWXPwGu7M", + "expanded_url": "https://twitter.com/olex_scherba/status/1756284941912928479/photo/1", + "id_str": "1756284936749817856", + "indices": [ + 110, + 133 + ], + "media_key": "3_1756284936749817856", + "media_url_https": "https://pbs.twimg.com/media/GF-T2ENXoAA5BKm.jpg", + "type": "photo", + "url": "https://t.co/JuWXPwGu7M", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1902, + "w": 1179, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 744, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 422, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1902, + "width": 1179, + "focus_rects": [ + { + "x": 0, + "y": 1144, + "w": 1179, + "h": 660 + }, + { + "x": 0, + "y": 723, + "w": 1179, + "h": 1179 + }, + { + "x": 0, + "y": 558, + "w": 1179, + "h": 1344 + }, + { + "x": 0, + "y": 0, + "w": 951, + "h": 1902 + }, + { + "x": 0, + "y": 0, + "w": 1179, + "h": 1902 + } + ] + } + }, + { + "display_url": "pic.twitter.com/JuWXPwGu7M", + "expanded_url": "https://twitter.com/olex_scherba/status/1756284941912928479/photo/1", + "id_str": "1756284936758149120", + "indices": [ + 110, + 133 + ], + "media_key": "3_1756284936758149120", + "media_url_https": "https://pbs.twimg.com/media/GF-T2EPWwAAdeJX.jpg", + "type": "photo", + "url": "https://t.co/JuWXPwGu7M", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 12, + "y": 397, + "h": 187, + "w": 187 + } + ] + }, + "medium": { + "faces": [ + { + "x": 12, + "y": 397, + "h": 187, + "w": 187 + } + ] + }, + "small": { + "faces": [ + { + "x": 6, + "y": 228, + "h": 107, + "w": 107 + } + ] + }, + "orig": { + "faces": [ + { + "x": 12, + "y": 397, + "h": 187, + "w": 187 + } + ] + } + }, + "sizes": { + "large": { + "h": 750, + "w": 1179, + "resize": "fit" + }, + "medium": { + "h": 750, + "w": 1179, + "resize": "fit" + }, + "small": { + "h": 433, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 750, + "width": 1179, + "focus_rects": [ + { + "x": 0, + "y": 90, + "w": 1179, + "h": 660 + }, + { + "x": 419, + "y": 0, + "w": 750, + "h": 750 + }, + { + "x": 465, + "y": 0, + "w": 658, + "h": 750 + }, + { + "x": 607, + "y": 0, + "w": 375, + "h": 750 + }, + { + "x": 0, + "y": 0, + "w": 1179, + "h": 750 + } + ] + } + } + ] + }, + "favorite_count": 225, + "favorited": false, + "full_text": "Of course, Elon. I totally understand.\nThanks for taking your time. \n\n#Hypocrisy #ElonMusk \n#StandWithUkraine https://t.co/JuWXPwGu7M", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 5, + "reply_count": 15, + "retweet_count": 54, + "retweeted": false, + "user_id_str": "163018653", + "id_str": "1756284941912928479" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756284235231461611", + "sortIndex": "1756309211907620840", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756284235231461611", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo3MDY2NDM3MQ==", + "rest_id": "70664371", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Sep 01 12:13:17 +0000 2009", + "default_profile": true, + "default_profile_image": false, + "description": "Two decades of reporting in more than 20 countries. Foreign correspondent @TheDailyBeast;@TheAtlantic,@USAToday @RollingStone. Courage in Journalism Award @IWMF", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 4129, + "followers_count": 18930, + "friends_count": 2232, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 950, + "location": "", + "media_count": 1231, + "name": "Anna Nemtsova", + "normal_followers_count": 18930, + "pinned_tweet_ids_str": [ + "1729932755713077531" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/70664371/1658767939", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1321538376961531904/AlUu6-aU_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "annanemtsova", + "statuses_count": 7795, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756284235231461611" + ], + "editable_until_msecs": "1707569366000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "481", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 11:49:26 +0000 2024", + "conversation_id_str": "1756284235231461611", + "display_text_range": [ + 0, + 219 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 0, + 8 + ], + "text": "Kharkiv" + } + ], + "media": [ + { + "display_url": "pic.twitter.com/oLgMCPHQqU", + "expanded_url": "https://twitter.com/annanemtsova/status/1756284235231461611/photo/1", + "id_str": "1756284226826076160", + "indices": [ + 220, + 243 + ], + "media_key": "3_1756284226826076160", + "media_url_https": "https://pbs.twimg.com/media/GF-TMviXAAAd7C2.jpg", + "type": "photo", + "url": "https://t.co/oLgMCPHQqU", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 855, + "y": 730, + "h": 52, + "w": 52 + } + ] + }, + "medium": { + "faces": [ + { + "x": 801, + "y": 684, + "h": 48, + "w": 48 + } + ] + }, + "small": { + "faces": [ + { + "x": 454, + "y": 387, + "h": 27, + "w": 27 + } + ] + }, + "orig": { + "faces": [ + { + "x": 855, + "y": 730, + "h": 52, + "w": 52 + } + ] + } + }, + "sizes": { + "large": { + "h": 852, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 799, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 852, + "width": 1280, + "focus_rects": [ + { + "x": 0, + "y": 135, + "w": 1280, + "h": 717 + }, + { + "x": 428, + "y": 0, + "w": 852, + "h": 852 + }, + { + "x": 533, + "y": 0, + "w": 747, + "h": 852 + }, + { + "x": 779, + "y": 0, + "w": 426, + "h": 852 + }, + { + "x": 0, + "y": 0, + "w": 1280, + "h": 852 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/oLgMCPHQqU", + "expanded_url": "https://twitter.com/annanemtsova/status/1756284235231461611/photo/1", + "id_str": "1756284226826076160", + "indices": [ + 220, + 243 + ], + "media_key": "3_1756284226826076160", + "media_url_https": "https://pbs.twimg.com/media/GF-TMviXAAAd7C2.jpg", + "type": "photo", + "url": "https://t.co/oLgMCPHQqU", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 855, + "y": 730, + "h": 52, + "w": 52 + } + ] + }, + "medium": { + "faces": [ + { + "x": 801, + "y": 684, + "h": 48, + "w": 48 + } + ] + }, + "small": { + "faces": [ + { + "x": 454, + "y": 387, + "h": 27, + "w": 27 + } + ] + }, + "orig": { + "faces": [ + { + "x": 855, + "y": 730, + "h": 52, + "w": 52 + } + ] + } + }, + "sizes": { + "large": { + "h": 852, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 799, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 852, + "width": 1280, + "focus_rects": [ + { + "x": 0, + "y": 135, + "w": 1280, + "h": 717 + }, + { + "x": 428, + "y": 0, + "w": 852, + "h": 852 + }, + { + "x": 533, + "y": 0, + "w": 747, + "h": 852 + }, + { + "x": 779, + "y": 0, + "w": 426, + "h": 852 + }, + { + "x": 0, + "y": 0, + "w": 1280, + "h": 852 + } + ] + } + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "#Kharkiv local authorities report: three kids were burnt in Russia’s Shahed drone attack last night: the oldest Lesha was 7, his brother Mikhailo 4 and their youngest brother Pavlo was only 9-months-old. Heartbreaking. https://t.co/oLgMCPHQqU", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "70664371", + "id_str": "1756284235231461611" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756282300868735280", + "sortIndex": "1756309211907620839", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756282300868735280", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDEwNjQ3Ng==", + "rest_id": "14106476", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Mar 09 08:15:00 +0000 2008", + "default_profile": false, + "default_profile_image": false, + "description": "The award-winning Kyiv Post is the top international source of English-language news about Ukraine since 1995.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kyivpost.com", + "expanded_url": "http://kyivpost.com/", + "url": "https://t.co/lHlutZvoAu", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 4958, + "followers_count": 393738, + "friends_count": 1635, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 6678, + "location": "#Kyiv, #Ukraine", + "media_count": 31362, + "name": "KyivPost", + "normal_followers_count": 393738, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14106476/1707314610", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1592474120477982720/cLYnDbg1_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivPost", + "statuses_count": 74456, + "translator_type": "none", + "url": "https://t.co/lHlutZvoAu", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756282300868735280" + ], + "editable_until_msecs": "1707568905000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "8400", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756282239250231493", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDEwNjQ3Ng==", + "rest_id": "14106476", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Mar 09 08:15:00 +0000 2008", + "default_profile": false, + "default_profile_image": false, + "description": "The award-winning Kyiv Post is the top international source of English-language news about Ukraine since 1995.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kyivpost.com", + "expanded_url": "http://kyivpost.com/", + "url": "https://t.co/lHlutZvoAu", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 4958, + "followers_count": 393738, + "friends_count": 1635, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 6678, + "location": "#Kyiv, #Ukraine", + "media_count": 31362, + "name": "KyivPost", + "normal_followers_count": 393738, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14106476/1707314610", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1592474120477982720/cLYnDbg1_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivPost", + "statuses_count": 74456, + "translator_type": "none", + "url": "https://t.co/lHlutZvoAu", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756282239250231493" + ], + "editable_until_msecs": "1707568890000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "14241", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "created_at": "Sat Feb 10 11:41:30 +0000 2024", + "conversation_id_str": "1756282239250231493", + "display_text_range": [ + 0, + 201 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 113, + 121 + ], + "text": "Kharkiv" + } + ], + "media": [ + { + "display_url": "pic.twitter.com/T7XsjPOIeU", + "expanded_url": "https://twitter.com/KyivPost/status/1756282239250231493/photo/1", + "id_str": "1756282231159439362", + "indices": [ + 202, + 225 + ], + "media_key": "3_1756282231159439362", + "media_url_https": "https://pbs.twimg.com/media/GF-RYlGWwAIu4uW.jpg", + "type": "photo", + "url": "https://t.co/T7XsjPOIeU", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 312, + "y": 338, + "h": 60, + "w": 60 + } + ] + }, + "medium": { + "faces": [ + { + "x": 292, + "y": 316, + "h": 56, + "w": 56 + } + ] + }, + "small": { + "faces": [ + { + "x": 165, + "y": 179, + "h": 31, + "w": 31 + } + ] + }, + "orig": { + "faces": [ + { + "x": 312, + "y": 338, + "h": 60, + "w": 60 + } + ] + } + }, + "sizes": { + "large": { + "h": 1280, + "w": 960, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 900, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 510, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1280, + "width": 960, + "focus_rects": [ + { + "x": 0, + "y": 595, + "w": 960, + "h": 538 + }, + { + "x": 0, + "y": 320, + "w": 960, + "h": 960 + }, + { + "x": 0, + "y": 186, + "w": 960, + "h": 1094 + }, + { + "x": 32, + "y": 0, + "w": 640, + "h": 1280 + }, + { + "x": 0, + "y": 0, + "w": 960, + "h": 1280 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/T7XsjPOIeU", + "expanded_url": "https://twitter.com/KyivPost/status/1756282239250231493/photo/1", + "id_str": "1756282231159439362", + "indices": [ + 202, + 225 + ], + "media_key": "3_1756282231159439362", + "media_url_https": "https://pbs.twimg.com/media/GF-RYlGWwAIu4uW.jpg", + "type": "photo", + "url": "https://t.co/T7XsjPOIeU", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 312, + "y": 338, + "h": 60, + "w": 60 + } + ] + }, + "medium": { + "faces": [ + { + "x": 292, + "y": 316, + "h": 56, + "w": 56 + } + ] + }, + "small": { + "faces": [ + { + "x": 165, + "y": 179, + "h": 31, + "w": 31 + } + ] + }, + "orig": { + "faces": [ + { + "x": 312, + "y": 338, + "h": 60, + "w": 60 + } + ] + } + }, + "sizes": { + "large": { + "h": 1280, + "w": 960, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 900, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 510, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1280, + "width": 960, + "focus_rects": [ + { + "x": 0, + "y": 595, + "w": 960, + "h": 538 + }, + { + "x": 0, + "y": 320, + "w": 960, + "h": 960 + }, + { + "x": 0, + "y": 186, + "w": 960, + "h": 1094 + }, + { + "x": 32, + "y": 0, + "w": 640, + "h": 1280 + }, + { + "x": 0, + "y": 0, + "w": 960, + "h": 1280 + } + ] + } + } + ] + }, + "favorite_count": 29, + "favorited": false, + "full_text": "❗️The identification of the body of the killed infant at the site of the fire, caused by the Russian shelling in #Kharkiv, is not possible, the investigative department of the regional police reported. https://t.co/T7XsjPOIeU", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 3, + "reply_count": 6, + "retweet_count": 15, + "retweeted": false, + "user_id_str": "14106476", + "id_str": "1756282239250231493" + } + } + }, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 11:41:45 +0000 2024", + "conversation_id_str": "1756282300868735280", + "display_text_range": [ + 0, + 183 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 37, + "favorited": false, + "full_text": "\"The burning temperature was so high that the baby's bones and body were practically turned to ashes. We assume that the mother was holding the child in her arms,\" the statement said.", + "is_quote_status": true, + "lang": "en", + "quote_count": 4, + "quoted_status_id_str": "1756282239250231493", + "quoted_status_permalink": { + "url": "https://t.co/l1X47arfTG", + "expanded": "https://twitter.com/kyivpost/status/1756282239250231493", + "display": "twitter.com/kyivpost/statu…" + }, + "reply_count": 3, + "retweet_count": 17, + "retweeted": false, + "user_id_str": "14106476", + "id_str": "1756282300868735280" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756282239250231493", + "sortIndex": "1756309211907620838", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756282239250231493", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDEwNjQ3Ng==", + "rest_id": "14106476", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Mar 09 08:15:00 +0000 2008", + "default_profile": false, + "default_profile_image": false, + "description": "The award-winning Kyiv Post is the top international source of English-language news about Ukraine since 1995.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kyivpost.com", + "expanded_url": "http://kyivpost.com/", + "url": "https://t.co/lHlutZvoAu", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 4958, + "followers_count": 393738, + "friends_count": 1635, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 6678, + "location": "#Kyiv, #Ukraine", + "media_count": 31362, + "name": "KyivPost", + "normal_followers_count": 393738, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14106476/1707314610", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1592474120477982720/cLYnDbg1_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivPost", + "statuses_count": 74456, + "translator_type": "none", + "url": "https://t.co/lHlutZvoAu", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756282239250231493" + ], + "editable_until_msecs": "1707568890000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "14241", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "created_at": "Sat Feb 10 11:41:30 +0000 2024", + "conversation_id_str": "1756282239250231493", + "display_text_range": [ + 0, + 201 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 113, + 121 + ], + "text": "Kharkiv" + } + ], + "media": [ + { + "display_url": "pic.twitter.com/T7XsjPOIeU", + "expanded_url": "https://twitter.com/KyivPost/status/1756282239250231493/photo/1", + "id_str": "1756282231159439362", + "indices": [ + 202, + 225 + ], + "media_key": "3_1756282231159439362", + "media_url_https": "https://pbs.twimg.com/media/GF-RYlGWwAIu4uW.jpg", + "type": "photo", + "url": "https://t.co/T7XsjPOIeU", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 312, + "y": 338, + "h": 60, + "w": 60 + } + ] + }, + "medium": { + "faces": [ + { + "x": 292, + "y": 316, + "h": 56, + "w": 56 + } + ] + }, + "small": { + "faces": [ + { + "x": 165, + "y": 179, + "h": 31, + "w": 31 + } + ] + }, + "orig": { + "faces": [ + { + "x": 312, + "y": 338, + "h": 60, + "w": 60 + } + ] + } + }, + "sizes": { + "large": { + "h": 1280, + "w": 960, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 900, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 510, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1280, + "width": 960, + "focus_rects": [ + { + "x": 0, + "y": 595, + "w": 960, + "h": 538 + }, + { + "x": 0, + "y": 320, + "w": 960, + "h": 960 + }, + { + "x": 0, + "y": 186, + "w": 960, + "h": 1094 + }, + { + "x": 32, + "y": 0, + "w": 640, + "h": 1280 + }, + { + "x": 0, + "y": 0, + "w": 960, + "h": 1280 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/T7XsjPOIeU", + "expanded_url": "https://twitter.com/KyivPost/status/1756282239250231493/photo/1", + "id_str": "1756282231159439362", + "indices": [ + 202, + 225 + ], + "media_key": "3_1756282231159439362", + "media_url_https": "https://pbs.twimg.com/media/GF-RYlGWwAIu4uW.jpg", + "type": "photo", + "url": "https://t.co/T7XsjPOIeU", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 312, + "y": 338, + "h": 60, + "w": 60 + } + ] + }, + "medium": { + "faces": [ + { + "x": 292, + "y": 316, + "h": 56, + "w": 56 + } + ] + }, + "small": { + "faces": [ + { + "x": 165, + "y": 179, + "h": 31, + "w": 31 + } + ] + }, + "orig": { + "faces": [ + { + "x": 312, + "y": 338, + "h": 60, + "w": 60 + } + ] + } + }, + "sizes": { + "large": { + "h": 1280, + "w": 960, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 900, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 510, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1280, + "width": 960, + "focus_rects": [ + { + "x": 0, + "y": 595, + "w": 960, + "h": 538 + }, + { + "x": 0, + "y": 320, + "w": 960, + "h": 960 + }, + { + "x": 0, + "y": 186, + "w": 960, + "h": 1094 + }, + { + "x": 32, + "y": 0, + "w": 640, + "h": 1280 + }, + { + "x": 0, + "y": 0, + "w": 960, + "h": 1280 + } + ] + } + } + ] + }, + "favorite_count": 29, + "favorited": false, + "full_text": "❗️The identification of the body of the killed infant at the site of the fire, caused by the Russian shelling in #Kharkiv, is not possible, the investigative department of the regional police reported. https://t.co/T7XsjPOIeU", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 3, + "reply_count": 6, + "retweet_count": 15, + "retweeted": false, + "user_id_str": "14106476", + "id_str": "1756282239250231493" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756282210225733903", + "sortIndex": "1756309211907620837", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756282210225733903", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NDA4MzE4Nw==", + "rest_id": "84083187", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Oct 21 13:42:34 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Ukraine Correspondent. British-Lebanese conflict journalist & filmmaker based in Kyiv. Co-host of @DrillPod. RTs ≠ endorsement.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ko-fi.com/ozkaterji", + "expanded_url": "http://ko-fi.com/ozkaterji", + "url": "https://t.co/FC9pQbgXa4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 45500, + "followers_count": 215887, + "friends_count": 11666, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3397, + "location": "Kyiv, Ukraine", + "media_count": 6412, + "name": "Oz Katerji", + "normal_followers_count": 215887, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84083187/1647382697", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713181637574275072/gUp8KMF4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OzKaterji", + "statuses_count": 174699, + "translator_type": "none", + "url": "https://t.co/FC9pQbgXa4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756282210225733903" + ], + "editable_until_msecs": "1707568883720", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 11:41:23 +0000 2024", + "conversation_id_str": "1756282210225733903", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "2180124535", + "name": "Chris Osieck", + "screen_name": "ChrisOsieck", + "indices": [ + 3, + 15 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @ChrisOsieck: [Warning: Graphic] Casualties including a demolished vehicle, geolocated in Jadra, north of Sidon, approximately 50 kilome…", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1756275307433058647", + "quoted_status_permalink": { + "url": "https://t.co/6HDaiZcxFJ", + "expanded": "https://twitter.com/HoseinMortada/status/1756275307433058647", + "display": "twitter.com/HoseinMortada/…" + }, + "reply_count": 0, + "retweet_count": 2, + "retweeted": false, + "user_id_str": "84083187", + "id_str": "1756282210225733903", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756278874491478268", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyMTgwMTI0NTM1", + "rest_id": "2180124535", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Thu Nov 07 13:42:07 +0000 2013", + "default_profile": false, + "default_profile_image": false, + "description": "Freelance OSI - I find places and time. Featured in investigations with international news organizations and research collectives. Views my own.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "medium.com/@chrisosieck", + "expanded_url": "https://medium.com/@chrisosieck", + "url": "https://t.co/zWz8Dxo4qW", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 15142, + "followers_count": 3639, + "friends_count": 2287, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 93, + "location": "chrisosieck.bsky.social", + "media_count": 1804, + "name": "Chris Osieck", + "normal_followers_count": 3639, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2180124535/1706898694", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1738699433624166400/vr-RL_eE_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ChrisOsieck", + "statuses_count": 13612, + "translator_type": "none", + "url": "https://t.co/zWz8Dxo4qW", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756278874491478268" + ], + "editable_until_msecs": "1707568088000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "9577", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756275307433058647", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyMTY2NDI3NDEy", + "rest_id": "2166427412", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Thu Oct 31 10:46:56 +0000 2013", + "default_profile": false, + "default_profile_image": false, + "description": "شخصية اخبارية - مدير مركز #سونار الاعلامي https://t.co/oNiX5U6Eh2 | https://t.co/op8hYYK8Wu", + "entities": { + "description": { + "urls": [ + { + "display_url": "facebook.com/ahmad.mortada.…", + "expanded_url": "https://www.facebook.com/ahmad.mortada.1865", + "url": "https://t.co/oNiX5U6Eh2", + "indices": [ + 42, + 65 + ] + }, + { + "display_url": "t.me/hoseinmortada3", + "expanded_url": "https://t.me/hoseinmortada3", + "url": "https://t.co/op8hYYK8Wu", + "indices": [ + 68, + 91 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "hoseinmortada.com", + "expanded_url": "http://hoseinmortada.com", + "url": "https://t.co/GGsAFGuw4W", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 208143, + "followers_count": 613220, + "friends_count": 1881, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 745, + "location": "لبنان", + "media_count": 22521, + "name": "حسين مرتضى Hussein Mortada", + "normal_followers_count": 613220, + "pinned_tweet_ids_str": [ + "1007024816359133184" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2166427412/1546590935", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1296027691943157760/7hFoMyxK_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "HoseinMortada", + "statuses_count": 212972, + "translator_type": "none", + "url": "https://t.co/GGsAFGuw4W", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1456157880290250754", + "professional_type": "Business", + "category": [ + { + "id": 933, + "name": "Media Personality", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756275307433058647" + ], + "editable_until_msecs": "1707567237000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "count": "39899", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 8, + "bookmarked": false, + "created_at": "Sat Feb 10 11:13:57 +0000 2024", + "conversation_id_str": "1756275307433058647", + "display_text_range": [ + 0, + 52 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/CK5aNHwOts", + "expanded_url": "https://twitter.com/HoseinMortada/status/1756275307433058647/video/1", + "id_str": "1756275251497897984", + "indices": [ + 53, + 76 + ], + "media_key": "13_1756275251497897984", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1756275251497897984/img/xrJTLMBNWQl9JWaD.jpg", + "type": "video", + "url": "https://t.co/CK5aNHwOts", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 848, + "w": 480, + "resize": "fit" + }, + "medium": { + "h": 848, + "w": 480, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 385, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 848, + "width": 480, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 30, + 53 + ], + "duration_millis": 12767, + "variants": [ + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756275251497897984/vid/avc1/320x564/_c1tugn0LFWfDVOh.mp4?tag=14" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756275251497897984/vid/avc1/480x848/jTDA_YGOGB2Lkl4A.mp4?tag=14" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1756275251497897984/pl/zjbKzC9FR8SNFHdL.m3u8?tag=14&container=cmaf" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/CK5aNHwOts", + "expanded_url": "https://twitter.com/HoseinMortada/status/1756275307433058647/video/1", + "id_str": "1756275251497897984", + "indices": [ + 53, + 76 + ], + "media_key": "13_1756275251497897984", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1756275251497897984/img/xrJTLMBNWQl9JWaD.jpg", + "type": "video", + "url": "https://t.co/CK5aNHwOts", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 848, + "w": 480, + "resize": "fit" + }, + "medium": { + "h": 848, + "w": 480, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 385, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 848, + "width": 480, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 30, + 53 + ], + "duration_millis": 12767, + "variants": [ + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756275251497897984/vid/avc1/320x564/_c1tugn0LFWfDVOh.mp4?tag=14" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756275251497897984/vid/avc1/480x848/jTDA_YGOGB2Lkl4A.mp4?tag=14" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1756275251497897984/pl/zjbKzC9FR8SNFHdL.m3u8?tag=14&container=cmaf" + } + ] + } + } + ] + }, + "favorite_count": 320, + "favorited": false, + "full_text": "غارة من مسيرة تستهدف سيارة في منطقة جدرا جنوب لبنان https://t.co/CK5aNHwOts", + "is_quote_status": false, + "lang": "ar", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 2, + "reply_count": 30, + "retweet_count": 40, + "retweeted": false, + "user_id_str": "2166427412", + "id_str": "1756275307433058647" + } + } + }, + "legacy": { + "bookmark_count": 4, + "bookmarked": false, + "created_at": "Sat Feb 10 11:28:08 +0000 2024", + "conversation_id_str": "1756278874491478268", + "display_text_range": [ + 0, + 180 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/DyfS2USwoP", + "expanded_url": "https://twitter.com/ChrisOsieck/status/1756278874491478268/photo/1", + "id_str": "1756278860847480832", + "indices": [ + 181, + 204 + ], + "media_key": "3_1756278860847480832", + "media_url_https": "https://pbs.twimg.com/media/GF-OUZtXgAAW81y.jpg", + "type": "photo", + "url": "https://t.co/DyfS2USwoP", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1037, + "w": 613, + "resize": "fit" + }, + "medium": { + "h": 1037, + "w": 613, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 402, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1037, + "width": 613, + "focus_rects": [ + { + "x": 0, + "y": 269, + "w": 613, + "h": 343 + }, + { + "x": 0, + "y": 134, + "w": 613, + "h": 613 + }, + { + "x": 0, + "y": 91, + "w": 613, + "h": 699 + }, + { + "x": 0, + "y": 0, + "w": 519, + "h": 1037 + }, + { + "x": 0, + "y": 0, + "w": 613, + "h": 1037 + } + ] + } + }, + { + "display_url": "pic.twitter.com/DyfS2USwoP", + "expanded_url": "https://twitter.com/ChrisOsieck/status/1756278874491478268/photo/1", + "id_str": "1756278860843204608", + "indices": [ + 181, + 204 + ], + "media_key": "3_1756278860843204608", + "media_url_https": "https://pbs.twimg.com/media/GF-OUZsWQAAE4iC.jpg", + "type": "photo", + "url": "https://t.co/DyfS2USwoP", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 720, + "y": 56, + "h": 37, + "w": 37 + }, + { + "x": 292, + "y": 293, + "h": 74, + "w": 74 + }, + { + "x": 622, + "y": 273, + "h": 107, + "w": 107 + } + ] + }, + "medium": { + "faces": [ + { + "x": 720, + "y": 56, + "h": 37, + "w": 37 + }, + { + "x": 292, + "y": 293, + "h": 74, + "w": 74 + }, + { + "x": 622, + "y": 273, + "h": 107, + "w": 107 + } + ] + }, + "small": { + "faces": [ + { + "x": 476, + "y": 37, + "h": 24, + "w": 24 + }, + { + "x": 193, + "y": 193, + "h": 48, + "w": 48 + }, + { + "x": 411, + "y": 180, + "h": 70, + "w": 70 + } + ] + }, + "orig": { + "faces": [ + { + "x": 720, + "y": 56, + "h": 37, + "w": 37 + }, + { + "x": 292, + "y": 293, + "h": 74, + "w": 74 + }, + { + "x": 622, + "y": 273, + "h": 107, + "w": 107 + } + ] + } + }, + "sizes": { + "large": { + "h": 841, + "w": 1028, + "resize": "fit" + }, + "medium": { + "h": 841, + "w": 1028, + "resize": "fit" + }, + "small": { + "h": 556, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 841, + "width": 1028, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1028, + "h": 576 + }, + { + "x": 187, + "y": 0, + "w": 841, + "h": 841 + }, + { + "x": 290, + "y": 0, + "w": 738, + "h": 841 + }, + { + "x": 483, + "y": 0, + "w": 421, + "h": 841 + }, + { + "x": 0, + "y": 0, + "w": 1028, + "h": 841 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/DyfS2USwoP", + "expanded_url": "https://twitter.com/ChrisOsieck/status/1756278874491478268/photo/1", + "id_str": "1756278860847480832", + "indices": [ + 181, + 204 + ], + "media_key": "3_1756278860847480832", + "media_url_https": "https://pbs.twimg.com/media/GF-OUZtXgAAW81y.jpg", + "type": "photo", + "url": "https://t.co/DyfS2USwoP", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1037, + "w": 613, + "resize": "fit" + }, + "medium": { + "h": 1037, + "w": 613, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 402, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1037, + "width": 613, + "focus_rects": [ + { + "x": 0, + "y": 269, + "w": 613, + "h": 343 + }, + { + "x": 0, + "y": 134, + "w": 613, + "h": 613 + }, + { + "x": 0, + "y": 91, + "w": 613, + "h": 699 + }, + { + "x": 0, + "y": 0, + "w": 519, + "h": 1037 + }, + { + "x": 0, + "y": 0, + "w": 613, + "h": 1037 + } + ] + } + }, + { + "display_url": "pic.twitter.com/DyfS2USwoP", + "expanded_url": "https://twitter.com/ChrisOsieck/status/1756278874491478268/photo/1", + "id_str": "1756278860843204608", + "indices": [ + 181, + 204 + ], + "media_key": "3_1756278860843204608", + "media_url_https": "https://pbs.twimg.com/media/GF-OUZsWQAAE4iC.jpg", + "type": "photo", + "url": "https://t.co/DyfS2USwoP", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 720, + "y": 56, + "h": 37, + "w": 37 + }, + { + "x": 292, + "y": 293, + "h": 74, + "w": 74 + }, + { + "x": 622, + "y": 273, + "h": 107, + "w": 107 + } + ] + }, + "medium": { + "faces": [ + { + "x": 720, + "y": 56, + "h": 37, + "w": 37 + }, + { + "x": 292, + "y": 293, + "h": 74, + "w": 74 + }, + { + "x": 622, + "y": 273, + "h": 107, + "w": 107 + } + ] + }, + "small": { + "faces": [ + { + "x": 476, + "y": 37, + "h": 24, + "w": 24 + }, + { + "x": 193, + "y": 193, + "h": 48, + "w": 48 + }, + { + "x": 411, + "y": 180, + "h": 70, + "w": 70 + } + ] + }, + "orig": { + "faces": [ + { + "x": 720, + "y": 56, + "h": 37, + "w": 37 + }, + { + "x": 292, + "y": 293, + "h": 74, + "w": 74 + }, + { + "x": 622, + "y": 273, + "h": 107, + "w": 107 + } + ] + } + }, + "sizes": { + "large": { + "h": 841, + "w": 1028, + "resize": "fit" + }, + "medium": { + "h": 841, + "w": 1028, + "resize": "fit" + }, + "small": { + "h": 556, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 841, + "width": 1028, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1028, + "h": 576 + }, + { + "x": 187, + "y": 0, + "w": 841, + "h": 841 + }, + { + "x": 290, + "y": 0, + "w": 738, + "h": 841 + }, + { + "x": 483, + "y": 0, + "w": 421, + "h": 841 + }, + { + "x": 0, + "y": 0, + "w": 1028, + "h": 841 + } + ] + } + } + ] + }, + "favorite_count": 7, + "favorited": false, + "full_text": "[Warning: Graphic] Casualties including a demolished vehicle, geolocated in Jadra, north of Sidon, approximately 50 kilometers from the Israel-Lebanon border: 33.631110, 35.409164. https://t.co/DyfS2USwoP", + "is_quote_status": true, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "quoted_status_id_str": "1756275307433058647", + "quoted_status_permalink": { + "url": "https://t.co/6HDaiZcxFJ", + "expanded": "https://twitter.com/HoseinMortada/status/1756275307433058647", + "display": "twitter.com/HoseinMortada/…" + }, + "reply_count": 0, + "retweet_count": 2, + "retweeted": false, + "user_id_str": "2180124535", + "id_str": "1756278874491478268" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756281848412381634", + "sortIndex": "1756309211907620836", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756281848412381634", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo3MDY2NDM3MQ==", + "rest_id": "70664371", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Sep 01 12:13:17 +0000 2009", + "default_profile": true, + "default_profile_image": false, + "description": "Two decades of reporting in more than 20 countries. Foreign correspondent @TheDailyBeast;@TheAtlantic,@USAToday @RollingStone. Courage in Journalism Award @IWMF", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 4129, + "followers_count": 18930, + "friends_count": 2232, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 950, + "location": "", + "media_count": 1231, + "name": "Anna Nemtsova", + "normal_followers_count": 18930, + "pinned_tweet_ids_str": [ + "1729932755713077531" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/70664371/1658767939", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1321538376961531904/AlUu6-aU_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "annanemtsova", + "statuses_count": 7795, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756281848412381634" + ], + "editable_until_msecs": "1707568797000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "490", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 11:39:57 +0000 2024", + "conversation_id_str": "1756281848412381634", + "display_text_range": [ + 0, + 173 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "cnn.com/videos/world/2…", + "expanded_url": "https://www.cnn.com/videos/world/2024/02/10/ukraine-underground-school-pleitgen-pkg-ebof-vpx.cnn?cid=ios_app", + "url": "https://t.co/nLN79ZGJJQ", + "indices": [ + 150, + 173 + ] + } + ], + "user_mentions": [ + { + "id_str": "2097571", + "name": "CNN International", + "screen_name": "cnni", + "indices": [ + 104, + 109 + ] + }, + { + "id_str": "2097571", + "name": "CNN International", + "screen_name": "cnni", + "indices": [ + 144, + 149 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "The war forces Ukrainian children underground for safety. What a sad childhood. A must to see, good job @cnni, this is a very important story. @cnni https://t.co/nLN79ZGJJQ", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 1, + "retweeted": false, + "user_id_str": "70664371", + "id_str": "1756281848412381634" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756281235448426826", + "sortIndex": "1756309211907620835", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756281235448426826", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjMwMTg2NTM=", + "rest_id": "163018653", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Jul 05 09:44:27 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Ambassador-at-large @MFA_Ukraine, Amb to Austria (2014-2021). Author of “Ukraine vs Darkness. Undiplomatic Thoughts”. Personal account.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amazon.com/Ukraine-vs-Dar…", + "expanded_url": "https://www.amazon.com/Ukraine-vs-Darkness-Undiplomatic-Ukrainian-ebook/dp/B08WKF3B2K", + "url": "https://t.co/ERA9Ntt061", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 28758, + "followers_count": 264429, + "friends_count": 1248, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 4354, + "location": "Kyiv", + "media_count": 6624, + "name": "olexander scherba🇺🇦", + "normal_followers_count": 264429, + "pinned_tweet_ids_str": [ + "1396956590713020416" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/163018653/1646220178", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671642770549956608/yR9Is6BD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "olex_scherba", + "statuses_count": 40000, + "translator_type": "none", + "url": "https://t.co/ERA9Ntt061", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1696586841602834861", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756281235448426826" + ], + "editable_until_msecs": "1707568651315", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 11:37:31 +0000 2024", + "conversation_id_str": "1756281235448426826", + "display_text_range": [ + 0, + 89 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/NAa17XNlq7", + "expanded_url": "https://twitter.com/SevaUT/status/1756054327465025939/photo/1", + "id_str": "1756054262893760512", + "indices": [ + 66, + 89 + ], + "media_key": "3_1756054262893760512", + "media_url_https": "https://pbs.twimg.com/media/GF7CDFIX0AAXdl6.jpg", + "source_status_id_str": "1756054327465025939", + "source_user_id_str": "766369176", + "type": "photo", + "url": "https://t.co/NAa17XNlq7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 256, + "w": 1318, + "resize": "fit" + }, + "medium": { + "h": 233, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 132, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 256, + "width": 1318, + "focus_rects": [ + { + "x": 2, + "y": 0, + "w": 457, + "h": 256 + }, + { + "x": 102, + "y": 0, + "w": 256, + "h": 256 + }, + { + "x": 118, + "y": 0, + "w": 225, + "h": 256 + }, + { + "x": 166, + "y": 0, + "w": 128, + "h": 256 + }, + { + "x": 0, + "y": 0, + "w": 1318, + "h": 256 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "766369176", + "name": "Seva", + "screen_name": "SevaUT", + "indices": [ + 3, + 10 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/NAa17XNlq7", + "expanded_url": "https://twitter.com/SevaUT/status/1756054327465025939/photo/1", + "id_str": "1756054262893760512", + "indices": [ + 66, + 89 + ], + "media_key": "3_1756054262893760512", + "media_url_https": "https://pbs.twimg.com/media/GF7CDFIX0AAXdl6.jpg", + "source_status_id_str": "1756054327465025939", + "source_user_id_str": "766369176", + "type": "photo", + "url": "https://t.co/NAa17XNlq7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 256, + "w": 1318, + "resize": "fit" + }, + "medium": { + "h": 233, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 132, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 256, + "width": 1318, + "focus_rects": [ + { + "x": 2, + "y": 0, + "w": 457, + "h": 256 + }, + { + "x": 102, + "y": 0, + "w": 256, + "h": 256 + }, + { + "x": 118, + "y": 0, + "w": 225, + "h": 256 + }, + { + "x": 166, + "y": 0, + "w": 128, + "h": 256 + }, + { + "x": 0, + "y": 0, + "w": 1318, + "h": 256 + } + ] + } + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @SevaUT: mongolia has the opportunity to do the funniest thing https://t.co/NAa17XNlq7", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 1058, + "retweeted": false, + "user_id_str": "163018653", + "id_str": "1756281235448426826", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756054327465025939", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo3NjYzNjkxNzY=", + "rest_id": "766369176", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sat Aug 18 20:57:53 +0000 2012", + "default_profile": false, + "default_profile_image": false, + "description": "oh no, really?", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "individual.utoronto.ca/seva/", + "expanded_url": "http://www.individual.utoronto.ca/seva/", + "url": "https://t.co/8SCNxBwmEm", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 81583, + "followers_count": 36936, + "friends_count": 3660, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 632, + "location": "", + "media_count": 3119, + "name": "Seva", + "normal_followers_count": 36936, + "pinned_tweet_ids_str": [ + "1755785949160587469" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/766369176/1620183502", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1498530552365912065/ypUNha6r_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "SevaUT", + "statuses_count": 30780, + "translator_type": "none", + "url": "https://t.co/8SCNxBwmEm", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756054327465025939" + ], + "editable_until_msecs": "1707514552000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "413747", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 277, + "bookmarked": false, + "created_at": "Fri Feb 09 20:35:52 +0000 2024", + "conversation_id_str": "1756054327465025939", + "display_text_range": [ + 0, + 53 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/NAa17XNlq7", + "expanded_url": "https://twitter.com/SevaUT/status/1756054327465025939/photo/1", + "id_str": "1756054262893760512", + "indices": [ + 54, + 77 + ], + "media_key": "3_1756054262893760512", + "media_url_https": "https://pbs.twimg.com/media/GF7CDFIX0AAXdl6.jpg", + "type": "photo", + "url": "https://t.co/NAa17XNlq7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 256, + "w": 1318, + "resize": "fit" + }, + "medium": { + "h": 233, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 132, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 256, + "width": 1318, + "focus_rects": [ + { + "x": 2, + "y": 0, + "w": 457, + "h": 256 + }, + { + "x": 102, + "y": 0, + "w": 256, + "h": 256 + }, + { + "x": 118, + "y": 0, + "w": 225, + "h": 256 + }, + { + "x": 166, + "y": 0, + "w": 128, + "h": 256 + }, + { + "x": 0, + "y": 0, + "w": 1318, + "h": 256 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/NAa17XNlq7", + "expanded_url": "https://twitter.com/SevaUT/status/1756054327465025939/photo/1", + "id_str": "1756054262893760512", + "indices": [ + 54, + 77 + ], + "media_key": "3_1756054262893760512", + "media_url_https": "https://pbs.twimg.com/media/GF7CDFIX0AAXdl6.jpg", + "type": "photo", + "url": "https://t.co/NAa17XNlq7", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 256, + "w": 1318, + "resize": "fit" + }, + "medium": { + "h": 233, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 132, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 256, + "width": 1318, + "focus_rects": [ + { + "x": 2, + "y": 0, + "w": 457, + "h": 256 + }, + { + "x": 102, + "y": 0, + "w": 256, + "h": 256 + }, + { + "x": 118, + "y": 0, + "w": 225, + "h": 256 + }, + { + "x": 166, + "y": 0, + "w": 128, + "h": 256 + }, + { + "x": 0, + "y": 0, + "w": 1318, + "h": 256 + } + ] + } + } + ] + }, + "favorite_count": 14527, + "favorited": false, + "full_text": "mongolia has the opportunity to do the funniest thing https://t.co/NAa17XNlq7", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 39, + "reply_count": 73, + "retweet_count": 1058, + "retweeted": false, + "user_id_str": "766369176", + "id_str": "1756054327465025939" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756281209817116780", + "sortIndex": "1756309211907620834", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756281209817116780", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyODg3NTUyMzQ=", + "rest_id": "288755234", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Wed Apr 27 12:18:25 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Founder and creative director of @Bellingcat and director of Bellingcat Productions BV. Author of We Are Bellingcat. Tonal Whiplash Zone.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bellingcat.com", + "expanded_url": "http://www.bellingcat.com", + "url": "https://t.co/ZoOPpVAJcd", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 17301, + "followers_count": 308635, + "friends_count": 3424, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 6362, + "location": "In front of a laptop.", + "media_count": 11269, + "name": "Eliot Higgins", + "normal_followers_count": 308635, + "pinned_tweet_ids_str": [ + "1756247409812771302" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/288755234/1703281459", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1638547444098015233/8N2MPkax_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "EliotHiggins", + "statuses_count": 296845, + "translator_type": "none", + "url": "https://t.co/ZoOPpVAJcd", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/XJLbaNWwoC", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "app_star_rating", + "value": { + "string_value": "4.86347", + "type": "STRING" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 147, + "width": 280, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Philippe Lazzarini says summary dismissal of nine employees was ‘reverse due process’ after Israel’s claims they aided Hamas attack", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.theguardian.com", + "type": "STRING" + } + }, + { + "key": "app_is_free", + "value": { + "string_value": "true", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 315, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=600x600" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "87818409", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 76, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "creator", + "value": { + "type": "USER", + "user_value": { + "id_str": "196550849", + "path": [] + } + } + }, + { + "key": "app_num_ratings", + "value": { + "string_value": "107,990", + "type": "STRING" + } + }, + { + "key": "app_price_amount", + "value": { + "string_value": "0.0", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "theguardian.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "app_name", + "value": { + "string_value": "The Guardian - Live World News", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 34, + "green": 34, + "red": 41 + }, + "percentage": 40.0 + }, + { + "rgb": { + "blue": 201, + "green": 201, + "red": 201 + }, + "percentage": 27.83 + }, + { + "rgb": { + "blue": 95, + "green": 45, + "red": 13 + }, + "percentage": 10.17 + }, + { + "rgb": { + "blue": 51, + "green": 38, + "red": 27 + }, + "percentage": 2.17 + }, + { + "rgb": { + "blue": 30, + "green": 4, + "red": 77 + }, + "percentage": 1.77 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "UNRWA staff accused by Israel sacked without evidence, chief admits", + "type": "STRING" + } + }, + { + "key": "app_price_currency", + "value": { + "string_value": "USD", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 34, + "green": 34, + "red": 41 + }, + "percentage": 40.0 + }, + { + "rgb": { + "blue": 201, + "green": 201, + "red": 201 + }, + "percentage": 27.83 + }, + { + "rgb": { + "blue": 95, + "green": 45, + "red": 13 + }, + "percentage": 10.17 + }, + { + "rgb": { + "blue": 51, + "green": 38, + "red": 27 + }, + "percentage": 2.17 + }, + { + "rgb": { + "blue": 30, + "green": 4, + "red": 77 + }, + "percentage": 1.77 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 34, + "green": 34, + "red": 41 + }, + "percentage": 40.0 + }, + { + "rgb": { + "blue": 201, + "green": 201, + "red": 201 + }, + "percentage": 27.83 + }, + { + "rgb": { + "blue": 95, + "green": 45, + "red": 13 + }, + "percentage": 10.17 + }, + { + "rgb": { + "blue": 51, + "green": 38, + "red": 27 + }, + "percentage": 2.17 + }, + { + "rgb": { + "blue": 30, + "green": 4, + "red": 77 + }, + "percentage": 1.77 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/XJLbaNWwoC", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/XJLbaNWwoC", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoxOTY1NTA4NDk=", + "rest_id": "196550849", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Wed Sep 29 11:26:49 +0000 2010", + "default_profile": true, + "default_profile_image": false, + "description": "Senior reporter at the Guardian", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 323, + "followers_count": 1664, + "friends_count": 2179, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 41, + "location": "London", + "media_count": 7, + "name": "Emine Sinmaz", + "normal_followers_count": 1664, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/196550849/1690493851", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1653469276467019793/W3DyR2QH_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "Emine_Sinmaz", + "statuses_count": 99, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + { + "result": { + "__typename": "User", + "id": "VXNlcjo4NzgxODQwOQ==", + "rest_id": "87818409", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Nov 05 23:49:19 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "The need for independent journalism has never been greater. Become a Guardian supporter: https://t.co/kFXqbVRovR", + "entities": { + "description": { + "urls": [ + { + "display_url": "support.theguardian.com", + "expanded_url": "http://support.theguardian.com", + "url": "https://t.co/kFXqbVRovR", + "indices": [ + 89, + 112 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "theguardian.com", + "expanded_url": "https://www.theguardian.com", + "url": "https://t.co/KHA6KFoD05", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 143, + "followers_count": 10908349, + "friends_count": 1039, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 71541, + "location": "London", + "media_count": 24371, + "name": "The Guardian", + "normal_followers_count": 10908349, + "pinned_tweet_ids_str": [ + "1745098247968874729" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/87818409/1695201078", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1175141826870861825/K2qKoGla_normal.png", + "profile_interstitial_type": "", + "screen_name": "guardian", + "statuses_count": 842490, + "translator_type": "regular", + "url": "https://t.co/KHA6KFoD05", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756281209817116780" + ], + "editable_until_msecs": "1707568645204", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 11:37:25 +0000 2024", + "conversation_id_str": "1756281209817116780", + "display_text_range": [ + 0, + 105 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "theguardian.com/world/2024/feb…", + "expanded_url": "https://www.theguardian.com/world/2024/feb/09/head-of-unwra-says-he-followed-reverse-due-process-in-sacking-accused-gaza-staff?utm_term=Autofeed&CMP=twt_gu&utm_medium&utm_source=Twitter#Echobox=1707512799", + "url": "https://t.co/XJLbaNWwoC", + "indices": [ + 82, + 105 + ] + } + ], + "user_mentions": [ + { + "id_str": "87818409", + "name": "The Guardian", + "screen_name": "guardian", + "indices": [ + 3, + 12 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @guardian: UNRWA staff accused by Israel sacked without evidence, chief admits https://t.co/XJLbaNWwoC", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 1958, + "retweeted": false, + "user_id_str": "288755234", + "id_str": "1756281209817116780", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756093899498508780", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NzgxODQwOQ==", + "rest_id": "87818409", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Nov 05 23:49:19 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "The need for independent journalism has never been greater. Become a Guardian supporter: https://t.co/kFXqbVRovR", + "entities": { + "description": { + "urls": [ + { + "display_url": "support.theguardian.com", + "expanded_url": "http://support.theguardian.com", + "url": "https://t.co/kFXqbVRovR", + "indices": [ + 89, + 112 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "theguardian.com", + "expanded_url": "https://www.theguardian.com", + "url": "https://t.co/KHA6KFoD05", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 143, + "followers_count": 10908349, + "friends_count": 1039, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 71541, + "location": "London", + "media_count": 24371, + "name": "The Guardian", + "normal_followers_count": 10908349, + "pinned_tweet_ids_str": [ + "1745098247968874729" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/87818409/1695201078", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1175141826870861825/K2qKoGla_normal.png", + "profile_interstitial_type": "", + "screen_name": "guardian", + "statuses_count": 842490, + "translator_type": "regular", + "url": "https://t.co/KHA6KFoD05", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/XJLbaNWwoC", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "app_star_rating", + "value": { + "string_value": "4.86347", + "type": "STRING" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 147, + "width": 280, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Philippe Lazzarini says summary dismissal of nine employees was ‘reverse due process’ after Israel’s claims they aided Hamas attack", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.theguardian.com", + "type": "STRING" + } + }, + { + "key": "app_is_free", + "value": { + "string_value": "true", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 315, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=600x600" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "87818409", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 76, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "creator", + "value": { + "type": "USER", + "user_value": { + "id_str": "196550849", + "path": [] + } + } + }, + { + "key": "app_num_ratings", + "value": { + "string_value": "107,990", + "type": "STRING" + } + }, + { + "key": "app_price_amount", + "value": { + "string_value": "0.0", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "theguardian.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "app_name", + "value": { + "string_value": "The Guardian - Live World News", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 34, + "green": 34, + "red": 41 + }, + "percentage": 40.0 + }, + { + "rgb": { + "blue": 201, + "green": 201, + "red": 201 + }, + "percentage": 27.83 + }, + { + "rgb": { + "blue": 95, + "green": 45, + "red": 13 + }, + "percentage": 10.17 + }, + { + "rgb": { + "blue": 51, + "green": 38, + "red": 27 + }, + "percentage": 2.17 + }, + { + "rgb": { + "blue": 30, + "green": 4, + "red": 77 + }, + "percentage": 1.77 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "UNRWA staff accused by Israel sacked without evidence, chief admits", + "type": "STRING" + } + }, + { + "key": "app_price_currency", + "value": { + "string_value": "USD", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 34, + "green": 34, + "red": 41 + }, + "percentage": 40.0 + }, + { + "rgb": { + "blue": 201, + "green": 201, + "red": 201 + }, + "percentage": 27.83 + }, + { + "rgb": { + "blue": 95, + "green": 45, + "red": 13 + }, + "percentage": 10.17 + }, + { + "rgb": { + "blue": 51, + "green": 38, + "red": 27 + }, + "percentage": 2.17 + }, + { + "rgb": { + "blue": 30, + "green": 4, + "red": 77 + }, + "percentage": 1.77 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 34, + "green": 34, + "red": 41 + }, + "percentage": 40.0 + }, + { + "rgb": { + "blue": 201, + "green": 201, + "red": 201 + }, + "percentage": 27.83 + }, + { + "rgb": { + "blue": 95, + "green": 45, + "red": 13 + }, + "percentage": 10.17 + }, + { + "rgb": { + "blue": 51, + "green": 38, + "red": 27 + }, + "percentage": 2.17 + }, + { + "rgb": { + "blue": 30, + "green": 4, + "red": 77 + }, + "percentage": 1.77 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/XJLbaNWwoC", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756014194934050817/i78qZ9j2?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/XJLbaNWwoC", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoxOTY1NTA4NDk=", + "rest_id": "196550849", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Wed Sep 29 11:26:49 +0000 2010", + "default_profile": true, + "default_profile_image": false, + "description": "Senior reporter at the Guardian", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 323, + "followers_count": 1664, + "friends_count": 2179, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 41, + "location": "London", + "media_count": 7, + "name": "Emine Sinmaz", + "normal_followers_count": 1664, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/196550849/1690493851", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1653469276467019793/W3DyR2QH_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "Emine_Sinmaz", + "statuses_count": 99, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + { + "result": { + "__typename": "User", + "id": "VXNlcjo4NzgxODQwOQ==", + "rest_id": "87818409", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Nov 05 23:49:19 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "The need for independent journalism has never been greater. Become a Guardian supporter: https://t.co/kFXqbVRovR", + "entities": { + "description": { + "urls": [ + { + "display_url": "support.theguardian.com", + "expanded_url": "http://support.theguardian.com", + "url": "https://t.co/kFXqbVRovR", + "indices": [ + 89, + 112 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "theguardian.com", + "expanded_url": "https://www.theguardian.com", + "url": "https://t.co/KHA6KFoD05", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 143, + "followers_count": 10908349, + "friends_count": 1039, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 71541, + "location": "London", + "media_count": 24371, + "name": "The Guardian", + "normal_followers_count": 10908349, + "pinned_tweet_ids_str": [ + "1745098247968874729" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/87818409/1695201078", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1175141826870861825/K2qKoGla_normal.png", + "profile_interstitial_type": "", + "screen_name": "guardian", + "statuses_count": 842490, + "translator_type": "regular", + "url": "https://t.co/KHA6KFoD05", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756093899498508780" + ], + "editable_until_msecs": "1707523986000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "708661", + "state": "EnabledWithCount" + }, + "source": "Echobox 1", + "legacy": { + "bookmark_count": 361, + "bookmarked": false, + "created_at": "Fri Feb 09 23:13:06 +0000 2024", + "conversation_id_str": "1756093899498508780", + "display_text_range": [ + 0, + 91 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "theguardian.com/world/2024/feb…", + "expanded_url": "https://www.theguardian.com/world/2024/feb/09/head-of-unwra-says-he-followed-reverse-due-process-in-sacking-accused-gaza-staff?utm_term=Autofeed&CMP=twt_gu&utm_medium&utm_source=Twitter#Echobox=1707512799", + "url": "https://t.co/XJLbaNWwoC", + "indices": [ + 68, + 91 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 4239, + "favorited": false, + "full_text": "UNRWA staff accused by Israel sacked without evidence, chief admits https://t.co/XJLbaNWwoC", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 151, + "reply_count": 122, + "retweet_count": 1958, + "retweeted": false, + "user_id_str": "87818409", + "id_str": "1756093899498508780" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756281121774383273", + "sortIndex": "1756309211907620833", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756281121774383273", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyODg3NTUyMzQ=", + "rest_id": "288755234", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Wed Apr 27 12:18:25 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Founder and creative director of @Bellingcat and director of Bellingcat Productions BV. Author of We Are Bellingcat. Tonal Whiplash Zone.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bellingcat.com", + "expanded_url": "http://www.bellingcat.com", + "url": "https://t.co/ZoOPpVAJcd", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 17301, + "followers_count": 308635, + "friends_count": 3424, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 6362, + "location": "In front of a laptop.", + "media_count": 11269, + "name": "Eliot Higgins", + "normal_followers_count": 308635, + "pinned_tweet_ids_str": [ + "1756247409812771302" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/288755234/1703281459", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1638547444098015233/8N2MPkax_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "EliotHiggins", + "statuses_count": 296845, + "translator_type": "none", + "url": "https://t.co/ZoOPpVAJcd", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756281121774383273" + ], + "editable_until_msecs": "1707568624213", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 11:37:04 +0000 2024", + "conversation_id_str": "1756281121774383273", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "105327432", + "name": "Julia Davis", + "screen_name": "JuliaDavisNews", + "indices": [ + 3, + 18 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @JuliaDavisNews: LOL, the Kremlin made Tucker Carlson release his interview of Putin uncut and then the Kremlin proceeded to censor Carl…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 2113, + "retweeted": false, + "user_id_str": "288755234", + "id_str": "1756281121774383273", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756051693358191055", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMDUzMjc0MzI=", + "rest_id": "105327432", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Sat Jan 16 01:34:50 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thedailybeast.com/author/julia-d…", + "expanded_url": "https://www.thedailybeast.com/author/julia-davis", + "url": "https://t.co/jkgE3TNxS4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 167957, + "followers_count": 456882, + "friends_count": 1615, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 7011, + "location": "United States", + "media_count": 21531, + "name": "Julia Davis", + "normal_followers_count": 456882, + "pinned_tweet_ids_str": [ + "1528031848240140288" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", + "profile_interstitial_type": "", + "screen_name": "JuliaDavisNews", + "statuses_count": 118313, + "translator_type": "none", + "url": "https://t.co/jkgE3TNxS4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756051693358191055" + ], + "editable_until_msecs": "1707513924000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "326108", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 372, + "bookmarked": false, + "created_at": "Fri Feb 09 20:25:24 +0000 2024", + "conversation_id_str": "1756051693358191055", + "display_text_range": [ + 0, + 178 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/1lzxdebcP6", + "expanded_url": "https://twitter.com/JuliaDavisNews/status/1756051693358191055/photo/1", + "id_str": "1756051497182195712", + "indices": [ + 179, + 202 + ], + "media_key": "3_1756051497182195712", + "media_url_https": "https://pbs.twimg.com/media/GF6_iGDWcAAfRcM.png", + "type": "photo", + "url": "https://t.co/1lzxdebcP6", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 539, + "w": 799, + "resize": "fit" + }, + "medium": { + "h": 539, + "w": 799, + "resize": "fit" + }, + "small": { + "h": 459, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 539, + "width": 799, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 799, + "h": 447 + }, + { + "x": 0, + "y": 0, + "w": 539, + "h": 539 + }, + { + "x": 0, + "y": 0, + "w": 473, + "h": 539 + }, + { + "x": 0, + "y": 0, + "w": 270, + "h": 539 + }, + { + "x": 0, + "y": 0, + "w": 799, + "h": 539 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/1lzxdebcP6", + "expanded_url": "https://twitter.com/JuliaDavisNews/status/1756051693358191055/photo/1", + "id_str": "1756051497182195712", + "indices": [ + 179, + 202 + ], + "media_key": "3_1756051497182195712", + "media_url_https": "https://pbs.twimg.com/media/GF6_iGDWcAAfRcM.png", + "type": "photo", + "url": "https://t.co/1lzxdebcP6", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 539, + "w": 799, + "resize": "fit" + }, + "medium": { + "h": 539, + "w": 799, + "resize": "fit" + }, + "small": { + "h": 459, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 539, + "width": 799, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 799, + "h": 447 + }, + { + "x": 0, + "y": 0, + "w": 539, + "h": 539 + }, + { + "x": 0, + "y": 0, + "w": 473, + "h": 539 + }, + { + "x": 0, + "y": 0, + "w": 270, + "h": 539 + }, + { + "x": 0, + "y": 0, + "w": 799, + "h": 539 + } + ] + } + } + ] + }, + "favorite_count": 6677, + "favorited": false, + "full_text": "LOL, the Kremlin made Tucker Carlson release his interview of Putin uncut and then the Kremlin proceeded to censor Carlson's questions and comments that Putin did not appreciate. https://t.co/1lzxdebcP6", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 162, + "reply_count": 231, + "retweet_count": 2113, + "retweeted": false, + "user_id_str": "105327432", + "id_str": "1756051693358191055" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756281117634597053", + "sortIndex": "1756309211907620832", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756281117634597053", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NDA4MzE4Nw==", + "rest_id": "84083187", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Oct 21 13:42:34 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Ukraine Correspondent. British-Lebanese conflict journalist & filmmaker based in Kyiv. Co-host of @DrillPod. RTs ≠ endorsement.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ko-fi.com/ozkaterji", + "expanded_url": "http://ko-fi.com/ozkaterji", + "url": "https://t.co/FC9pQbgXa4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 45500, + "followers_count": 215887, + "friends_count": 11666, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3397, + "location": "Kyiv, Ukraine", + "media_count": 6412, + "name": "Oz Katerji", + "normal_followers_count": 215887, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84083187/1647382697", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713181637574275072/gUp8KMF4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OzKaterji", + "statuses_count": 174699, + "translator_type": "none", + "url": "https://t.co/FC9pQbgXa4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756281117634597053" + ], + "editable_until_msecs": "1707568623226", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 11:37:03 +0000 2024", + "conversation_id_str": "1756281117634597053", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "39082174", + "name": "jane arraf", + "screen_name": "janearraf", + "indices": [ + 3, + 13 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @janearraf: Body of Ketaeb Hezbollah commander Abu Bakr al-Saadi carried through streets after U.S. killing in a drone strike in Baghdad…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 8, + "retweeted": false, + "user_id_str": "84083187", + "id_str": "1756281117634597053", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756256733498916916", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozOTA4MjE3NA==", + "rest_id": "39082174", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun May 10 17:38:36 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Journalist. happily back reporting for NPR, former NYT, Christian Science Monitor, Jazeera English, CNN, Reuters in lots of places. Currently based in Mideast", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 4751, + "followers_count": 51350, + "friends_count": 3844, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1210, + "location": "", + "media_count": 426, + "name": "jane arraf", + "normal_followers_count": 51350, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/39082174/1476043103", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/934157405893611520/8CD9q0yn_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "janearraf", + "statuses_count": 11232, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756256733498916916" + ], + "editable_until_msecs": "1707562809000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "6983", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 10:00:09 +0000 2024", + "conversation_id_str": "1756256733498916916", + "display_text_range": [ + 0, + 217 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/BAPZt2yqEk", + "expanded_url": "https://twitter.com/janearraf/status/1756256733498916916/video/1", + "id_str": "1756256700913364992", + "indices": [ + 218, + 241 + ], + "media_key": "7_1756256700913364992", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1756256700913364992/pu/img/Kg8JMul7wufiOS9x.jpg", + "type": "video", + "url": "https://t.co/BAPZt2yqEk", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1280, + "w": 720, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 675, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 383, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1280, + "width": 720, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 12190, + "variants": [ + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756256700913364992/pu/vid/avc1/720x1280/hDdUC_OCbau2rqoG.mp4?tag=12" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756256700913364992/pu/vid/avc1/320x568/1KBlhoMYgACAbsuE.mp4?tag=12" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1756256700913364992/pu/pl/4z7DGPDEOP4JIcPC.m3u8?tag=12&container=cmaf" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756256700913364992/pu/vid/avc1/480x852/BJF1Guyyb7ZFWNkW.mp4?tag=12" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "5392522", + "name": "NPR", + "screen_name": "NPR", + "indices": [ + 193, + 197 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/BAPZt2yqEk", + "expanded_url": "https://twitter.com/janearraf/status/1756256733498916916/video/1", + "id_str": "1756256700913364992", + "indices": [ + 218, + 241 + ], + "media_key": "7_1756256700913364992", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1756256700913364992/pu/img/Kg8JMul7wufiOS9x.jpg", + "type": "video", + "url": "https://t.co/BAPZt2yqEk", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1280, + "w": 720, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 675, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 383, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1280, + "width": 720, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 12190, + "variants": [ + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756256700913364992/pu/vid/avc1/720x1280/hDdUC_OCbau2rqoG.mp4?tag=12" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756256700913364992/pu/vid/avc1/320x568/1KBlhoMYgACAbsuE.mp4?tag=12" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1756256700913364992/pu/pl/4z7DGPDEOP4JIcPC.m3u8?tag=12&container=cmaf" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756256700913364992/pu/vid/avc1/480x852/BJF1Guyyb7ZFWNkW.mp4?tag=12" + } + ] + } + } + ] + }, + "favorite_count": 22, + "favorited": false, + "full_text": "Body of Ketaeb Hezbollah commander Abu Bakr al-Saadi carried through streets after U.S. killing in a drone strike in Baghdad. The militias vow revenge but most leaders have gone to ground. Our @npr story this weekend. https://t.co/BAPZt2yqEk", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 1, + "retweet_count": 8, + "retweeted": false, + "user_id_str": "39082174", + "id_str": "1756256733498916916" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756280738385649710", + "sortIndex": "1756309211907620831", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756280738385649710", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjMwMTg2NTM=", + "rest_id": "163018653", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Jul 05 09:44:27 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Ambassador-at-large @MFA_Ukraine, Amb to Austria (2014-2021). Author of “Ukraine vs Darkness. Undiplomatic Thoughts”. Personal account.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amazon.com/Ukraine-vs-Dar…", + "expanded_url": "https://www.amazon.com/Ukraine-vs-Darkness-Undiplomatic-Ukrainian-ebook/dp/B08WKF3B2K", + "url": "https://t.co/ERA9Ntt061", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 28758, + "followers_count": 264429, + "friends_count": 1248, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 4354, + "location": "Kyiv", + "media_count": 6624, + "name": "olexander scherba🇺🇦", + "normal_followers_count": 264429, + "pinned_tweet_ids_str": [ + "1396956590713020416" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/163018653/1646220178", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671642770549956608/yR9Is6BD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "olex_scherba", + "statuses_count": 40000, + "translator_type": "none", + "url": "https://t.co/ERA9Ntt061", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1696586841602834861", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756280738385649710" + ], + "editable_until_msecs": "1707568532806", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 11:35:32 +0000 2024", + "conversation_id_str": "1756280738385649710", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1550895583476449280", + "name": "UNITED24 Media", + "screen_name": "United24media", + "indices": [ + 3, + 17 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @United24media: This is how Russia treats Ukrainian POWs.\n\nVolodymyr Tsema-Bursov before and after spending 20 months in Russian captivi…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 346, + "retweeted": false, + "user_id_str": "163018653", + "id_str": "1756280738385649710", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756243104745631776", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTUwODk1NTgzNDc2NDQ5Mjgw", + "rest_id": "1550895583476449280", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Jul 23 17:28:45 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "Ukraine is fighting for its freedom. We are a Ukraine-focused media showing the real Ukraine to the world. Donate for Safe Skies: https://t.co/smdRwGB9uF", + "entities": { + "description": { + "urls": [ + { + "display_url": "dub.sh/anB9Rl5", + "expanded_url": "https://dub.sh/anB9Rl5", + "url": "https://t.co/smdRwGB9uF", + "indices": [ + 130, + 153 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "youtube.com/@UNITED24media", + "expanded_url": "https://www.youtube.com/@UNITED24media", + "url": "https://t.co/j0OlOdDFIW", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 3973, + "followers_count": 48319, + "friends_count": 242, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 600, + "location": "Ukraine", + "media_count": 3358, + "name": "UNITED24 Media", + "normal_followers_count": 48319, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1550895583476449280/1705505529", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1550895772195033092/mhj-eC-N_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "United24media", + "statuses_count": 6868, + "translator_type": "none", + "url": "https://t.co/j0OlOdDFIW", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1563193825853870081", + "professional_type": "Business", + "category": [ + { + "id": 579, + "name": "Media & News", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756243104745631776" + ], + "editable_until_msecs": "1707559560000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "22896", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 12, + "bookmarked": false, + "created_at": "Sat Feb 10 09:06:00 +0000 2024", + "conversation_id_str": "1756243104745631776", + "display_text_range": [ + 0, + 123 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/i5HWmFlmLB", + "expanded_url": "https://twitter.com/United24media/status/1756243104745631776/photo/1", + "id_str": "1756207126412660736", + "indices": [ + 124, + 147 + ], + "media_key": "3_1756207126412660736", + "media_url_https": "https://pbs.twimg.com/media/GF9NE6HWEAAm-Ay.jpg", + "type": "photo", + "url": "https://t.co/i5HWmFlmLB", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 106, + "y": 357, + "h": 507, + "w": 507 + } + ] + }, + "medium": { + "faces": [ + { + "x": 94, + "y": 317, + "h": 450, + "w": 450 + } + ] + }, + "small": { + "faces": [ + { + "x": 53, + "y": 179, + "h": 255, + "w": 255 + } + ] + }, + "orig": { + "faces": [ + { + "x": 106, + "y": 357, + "h": 507, + "w": 507 + } + ] + } + }, + "sizes": { + "large": { + "h": 1350, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 960, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 544, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1350, + "width": 1080, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1080, + "h": 605 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1080 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1231 + }, + { + "x": 0, + "y": 0, + "w": 675, + "h": 1350 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1350 + } + ] + } + }, + { + "display_url": "pic.twitter.com/i5HWmFlmLB", + "expanded_url": "https://twitter.com/United24media/status/1756243104745631776/photo/1", + "id_str": "1756207126400188416", + "indices": [ + 124, + 147 + ], + "media_key": "3_1756207126400188416", + "media_url_https": "https://pbs.twimg.com/media/GF9NE6EXwAAe4C0.jpg", + "type": "photo", + "url": "https://t.co/i5HWmFlmLB", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 990, + "y": 437, + "h": 73, + "w": 73 + } + ] + }, + "medium": { + "faces": [ + { + "x": 880, + "y": 388, + "h": 64, + "w": 64 + } + ] + }, + "small": { + "faces": [ + { + "x": 498, + "y": 220, + "h": 36, + "w": 36 + } + ] + }, + "orig": { + "faces": [ + { + "x": 990, + "y": 437, + "h": 73, + "w": 73 + } + ] + } + }, + "sizes": { + "large": { + "h": 1349, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 961, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 544, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1349, + "width": 1080, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1080, + "h": 605 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1080 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1231 + }, + { + "x": 0, + "y": 0, + "w": 675, + "h": 1349 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1349 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/i5HWmFlmLB", + "expanded_url": "https://twitter.com/United24media/status/1756243104745631776/photo/1", + "id_str": "1756207126412660736", + "indices": [ + 124, + 147 + ], + "media_key": "3_1756207126412660736", + "media_url_https": "https://pbs.twimg.com/media/GF9NE6HWEAAm-Ay.jpg", + "type": "photo", + "url": "https://t.co/i5HWmFlmLB", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 106, + "y": 357, + "h": 507, + "w": 507 + } + ] + }, + "medium": { + "faces": [ + { + "x": 94, + "y": 317, + "h": 450, + "w": 450 + } + ] + }, + "small": { + "faces": [ + { + "x": 53, + "y": 179, + "h": 255, + "w": 255 + } + ] + }, + "orig": { + "faces": [ + { + "x": 106, + "y": 357, + "h": 507, + "w": 507 + } + ] + } + }, + "sizes": { + "large": { + "h": 1350, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 960, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 544, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1350, + "width": 1080, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1080, + "h": 605 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1080 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1231 + }, + { + "x": 0, + "y": 0, + "w": 675, + "h": 1350 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1350 + } + ] + } + }, + { + "display_url": "pic.twitter.com/i5HWmFlmLB", + "expanded_url": "https://twitter.com/United24media/status/1756243104745631776/photo/1", + "id_str": "1756207126400188416", + "indices": [ + 124, + 147 + ], + "media_key": "3_1756207126400188416", + "media_url_https": "https://pbs.twimg.com/media/GF9NE6EXwAAe4C0.jpg", + "type": "photo", + "url": "https://t.co/i5HWmFlmLB", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 990, + "y": 437, + "h": 73, + "w": 73 + } + ] + }, + "medium": { + "faces": [ + { + "x": 880, + "y": 388, + "h": 64, + "w": 64 + } + ] + }, + "small": { + "faces": [ + { + "x": 498, + "y": 220, + "h": 36, + "w": 36 + } + ] + }, + "orig": { + "faces": [ + { + "x": 990, + "y": 437, + "h": 73, + "w": 73 + } + ] + } + }, + "sizes": { + "large": { + "h": 1349, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 961, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 544, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1349, + "width": 1080, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1080, + "h": 605 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1080 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1231 + }, + { + "x": 0, + "y": 0, + "w": 675, + "h": 1349 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1349 + } + ] + } + } + ] + }, + "favorite_count": 854, + "favorited": false, + "full_text": "This is how Russia treats Ukrainian POWs.\n\nVolodymyr Tsema-Bursov before and after spending 20 months in Russian captivity. https://t.co/i5HWmFlmLB", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 20, + "reply_count": 20, + "retweet_count": 346, + "retweeted": false, + "user_id_str": "1550895583476449280", + "id_str": "1756243104745631776" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756280115678322734", + "sortIndex": "1756309211907620830", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756280115678322734", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NDA4MzE4Nw==", + "rest_id": "84083187", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Oct 21 13:42:34 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Ukraine Correspondent. British-Lebanese conflict journalist & filmmaker based in Kyiv. Co-host of @DrillPod. RTs ≠ endorsement.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ko-fi.com/ozkaterji", + "expanded_url": "http://ko-fi.com/ozkaterji", + "url": "https://t.co/FC9pQbgXa4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 45500, + "followers_count": 215887, + "friends_count": 11666, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3397, + "location": "Kyiv, Ukraine", + "media_count": 6412, + "name": "Oz Katerji", + "normal_followers_count": 215887, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84083187/1647382697", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713181637574275072/gUp8KMF4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OzKaterji", + "statuses_count": 174699, + "translator_type": "none", + "url": "https://t.co/FC9pQbgXa4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756280115678322734" + ], + "editable_until_msecs": "1707568384341", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 11:33:04 +0000 2024", + "conversation_id_str": "1756280115678322734", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1358143403318407171", + "name": "Branden", + "screen_name": "urbanzosf", + "indices": [ + 3, + 13 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @urbanzosf: I'm 36, I have a Bachelors from UCLA. I worked at Twitter for 4 years and was team lead at one point. I was laid off at 33 a…", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1755787009086324744", + "quoted_status_permalink": { + "url": "https://t.co/NezaNRev0s", + "expanded": "https://twitter.com/rarestofall_/status/1755787009086324744", + "display": "twitter.com/rarestofall_/s…" + }, + "reply_count": 0, + "retweet_count": 1810, + "retweeted": false, + "user_id_str": "84083187", + "id_str": "1756280115678322734", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756143413882417174", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMzU4MTQzNDAzMzE4NDA3MTcx", + "rest_id": "1358143403318407171", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sat Feb 06 20:00:08 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Former Pro Wrestler, Now Wrestling Photographer. I do work for @WWE, @AEW and Indy promotions. #LGBTQ 🏳️‍🌈 Camera: A7R V 📸 @Twitch Awkward_Gaymer", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "instagram.com/brandenWphoto", + "expanded_url": "http://instagram.com/brandenWphoto", + "url": "https://t.co/3xrIkk2gIK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 32845, + "followers_count": 1915, + "friends_count": 335, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 10, + "location": "San Francisco, CA", + "media_count": 1224, + "name": "Branden", + "normal_followers_count": 1915, + "pinned_tweet_ids_str": [ + "1735536720488382833" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1358143403318407171/1640664044", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1479673949575204864/mwIKdz6o_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "urbanzosf", + "statuses_count": 4398, + "translator_type": "none", + "url": "https://t.co/3xrIkk2gIK", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1461029052232323073", + "professional_type": "Creator", + "category": [ + { + "id": 15, + "name": "Entertainment & Recreation", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756143413882417174" + ], + "editable_until_msecs": "1707535792000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "501382", + "state": "EnabledWithCount" + }, + "source": "Twitter for Android", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE3NTYxNDM0MTM3OTQ0MTg2ODg=", + "text": "I'm 36, I have a Bachelors from UCLA. I worked at Twitter for 4 years and was team lead at one point. I was laid off at 33 and went through my savings. I lost my apartment and car and was working at McDonald's/Uber because all tech companies was laying off or not hiring. I lived with my parents for 3 years until I was finally hired at Instagram. Living with my parents I was able to save up more than enough for a car and a new apartment. I don't know what you're trying to say or you're farming for engagement to get a $3 check from X but hopefully it never happens to you.", + "entity_set": { + "hashtags": [], + "symbols": [], + "urls": [], + "user_mentions": [] + } + } + } + }, + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1755787009086324744", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyNTA0MDg0MDc=", + "rest_id": "250408407", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Fri Feb 11 01:28:10 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "yeah , i said i feel invincible .", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 195984, + "followers_count": 31599, + "friends_count": 5876, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 83, + "location": "soflo .", + "media_count": 1670, + "name": "exodia .", + "normal_followers_count": 31599, + "pinned_tweet_ids_str": [ + "869556134096646144" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/250408407/1634425341", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1678230834963271687/_7PYKk21_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "rarestofall_", + "statuses_count": 502554, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "super_follow_eligible": true + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1755787009086324744" + ], + "editable_until_msecs": "1707450818000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3405371", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 289, + "bookmarked": false, + "created_at": "Fri Feb 09 02:53:38 +0000 2024", + "conversation_id_str": "1755787009086324744", + "display_text_range": [ + 0, + 80 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 182, + "favorited": false, + "full_text": "telling me you’re moving back in with your parents as a 30 year old man is idk …", + "is_quote_status": false, + "lang": "en", + "quote_count": 1356, + "reply_count": 242, + "retweet_count": 32, + "retweeted": false, + "user_id_str": "250408407", + "id_str": "1755787009086324744" + } + } + }, + "legacy": { + "bookmark_count": 533, + "bookmarked": false, + "created_at": "Sat Feb 10 02:29:52 +0000 2024", + "conversation_id_str": "1756143413882417174", + "display_text_range": [ + 0, + 280 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 5902, + "favorited": false, + "full_text": "I'm 36, I have a Bachelors from UCLA. I worked at Twitter for 4 years and was team lead at one point. I was laid off at 33 and went through my savings. I lost my apartment and car and was working at McDonald's/Uber because all tech companies was laying off or not hiring. I lived…", + "is_quote_status": true, + "lang": "en", + "quote_count": 66, + "quoted_status_id_str": "1755787009086324744", + "quoted_status_permalink": { + "url": "https://t.co/NezaNRev0s", + "expanded": "https://twitter.com/rarestofall_/status/1755787009086324744", + "display": "twitter.com/rarestofall_/s…" + }, + "reply_count": 100, + "retweet_count": 1810, + "retweeted": false, + "user_id_str": "1358143403318407171", + "id_str": "1756143413882417174" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "list-conversation-1756309211907620899", + "sortIndex": "1756309211907620829", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "list-conversation-1756309211907620899-tweet-1756277575758827565", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756277575758827565", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", + "rest_id": "1462548977367359490", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Nov 21 22:30:41 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", + "entities": { + "description": { + "urls": [ + { + "display_url": "kyivindependent.com/membership/", + "expanded_url": "http://kyivindependent.com/membership/", + "url": "https://t.co/jsQiFkoveH", + "indices": [ + 17, + 40 + ] + }, + { + "display_url": "kyivindependent.com/membership/?in…", + "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", + "url": "https://t.co/eNwj76xa7a", + "indices": [ + 60, + 83 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "kyivindependent.com", + "expanded_url": "http://kyivindependent.com", + "url": "https://t.co/WZvsaFpT20", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 307, + "followers_count": 2090013, + "friends_count": 27, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 20010, + "location": "Kyiv", + "media_count": 3970, + "name": "The Kyiv Independent", + "normal_followers_count": 2090013, + "pinned_tweet_ids_str": [ + "1611768917151862784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivIndependent", + "statuses_count": 36943, + "translator_type": "none", + "url": "https://t.co/WZvsaFpT20", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1595086441079513088", + "professional_type": "Business", + "category": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/x7bHJjtBCe", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1754907113829040128/PzyTpH_I?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 150, + "width": 223, + "url": "https://pbs.twimg.com/card_img/1754907113829040128/PzyTpH_I?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "As Russia is waging its war against Ukraine, some high-ranking Ukrainian officials with confirmed or suspected Russian citizenship are doing fine. Ukraine's Constitution bans foreign citizenship for...", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "kyivindependent.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 320, + "width": 476, + "url": "https://pbs.twimg.com/card_img/1754907113829040128/PzyTpH_I?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1754907113829040128/PzyTpH_I?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 688, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1754907113829040128/PzyTpH_I?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "1462548977367359490", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1754907113829040128/PzyTpH_I?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1754907113829040128/PzyTpH_I?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 67, + "width": 100, + "url": "https://pbs.twimg.com/card_img/1754907113829040128/PzyTpH_I?format=jpg&name=100x100" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 688, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1754907113829040128/PzyTpH_I?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 688, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1754907113829040128/PzyTpH_I?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "kyivindependent.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1754907113829040128/PzyTpH_I?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 92, + "green": 108, + "red": 124 + }, + "percentage": 42.08 + }, + { + "rgb": { + "blue": 50, + "green": 56, + "red": 63 + }, + "percentage": 24.91 + }, + { + "rgb": { + "blue": 213, + "green": 218, + "red": 217 + }, + "percentage": 21.62 + }, + { + "rgb": { + "blue": 49, + "green": 35, + "red": 29 + }, + "percentage": 4.43 + }, + { + "rgb": { + "blue": 21, + "green": 46, + "red": 72 + }, + "percentage": 1.69 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "How Ukrainian officials get away with having Russian citizenship – even amid war", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 92, + "green": 108, + "red": 124 + }, + "percentage": 42.08 + }, + { + "rgb": { + "blue": 50, + "green": 56, + "red": 63 + }, + "percentage": 24.91 + }, + { + "rgb": { + "blue": 213, + "green": 218, + "red": 217 + }, + "percentage": 21.62 + }, + { + "rgb": { + "blue": 49, + "green": 35, + "red": 29 + }, + "percentage": 4.43 + }, + { + "rgb": { + "blue": 21, + "green": 46, + "red": 72 + }, + "percentage": 1.69 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 688, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1754907113829040128/PzyTpH_I?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1754907113829040128/PzyTpH_I?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 92, + "green": 108, + "red": 124 + }, + "percentage": 42.08 + }, + { + "rgb": { + "blue": 50, + "green": 56, + "red": 63 + }, + "percentage": 24.91 + }, + { + "rgb": { + "blue": 213, + "green": 218, + "red": 217 + }, + "percentage": 21.62 + }, + { + "rgb": { + "blue": 49, + "green": 35, + "red": 29 + }, + "percentage": 4.43 + }, + { + "rgb": { + "blue": 21, + "green": 46, + "red": 72 + }, + "percentage": 1.69 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 688, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1754907113829040128/PzyTpH_I?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/x7bHJjtBCe", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 688, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1754907113829040128/PzyTpH_I?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/x7bHJjtBCe", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", + "rest_id": "1462548977367359490", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Nov 21 22:30:41 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", + "entities": { + "description": { + "urls": [ + { + "display_url": "kyivindependent.com/membership/", + "expanded_url": "http://kyivindependent.com/membership/", + "url": "https://t.co/jsQiFkoveH", + "indices": [ + 17, + 40 + ] + }, + { + "display_url": "kyivindependent.com/membership/?in…", + "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", + "url": "https://t.co/eNwj76xa7a", + "indices": [ + 60, + 83 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "kyivindependent.com", + "expanded_url": "http://kyivindependent.com", + "url": "https://t.co/WZvsaFpT20", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 307, + "followers_count": 2090013, + "friends_count": 27, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 20010, + "location": "Kyiv", + "media_count": 3970, + "name": "The Kyiv Independent", + "normal_followers_count": 2090013, + "pinned_tweet_ids_str": [ + "1611768917151862784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivIndependent", + "statuses_count": 36943, + "translator_type": "none", + "url": "https://t.co/WZvsaFpT20", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1595086441079513088", + "professional_type": "Business", + "category": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756277575758827565" + ], + "editable_until_msecs": "1707567778000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "45830", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 4, + "bookmarked": false, + "created_at": "Sat Feb 10 11:22:58 +0000 2024", + "conversation_id_str": "1756277575758827565", + "display_text_range": [ + 0, + 243 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "kyivindependent.com/how-ukrainian-…", + "expanded_url": "https://kyivindependent.com/how-ukrainian-officials-get-away-with-having-russian-citizenship-even-amid-war/", + "url": "https://t.co/x7bHJjtBCe", + "indices": [ + 220, + 243 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 143, + "favorited": false, + "full_text": "Ukraine's Constitution bans foreign citizenship for officials. However, in some cases, officials with Russian citizenship are not fired at all, and in other cases Ukraine's judiciary stubbornly resists their dismissals.\nhttps://t.co/x7bHJjtBCe", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 5, + "retweet_count": 29, + "retweeted": false, + "user_id_str": "1462548977367359490", + "id_str": "1756277575758827565" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "list-conversation-1756309211907620899-tweet-1756277577394634930", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756277577394634930", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", + "rest_id": "1462548977367359490", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Nov 21 22:30:41 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", + "entities": { + "description": { + "urls": [ + { + "display_url": "kyivindependent.com/membership/", + "expanded_url": "http://kyivindependent.com/membership/", + "url": "https://t.co/jsQiFkoveH", + "indices": [ + 17, + 40 + ] + }, + { + "display_url": "kyivindependent.com/membership/?in…", + "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", + "url": "https://t.co/eNwj76xa7a", + "indices": [ + 60, + 83 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "kyivindependent.com", + "expanded_url": "http://kyivindependent.com", + "url": "https://t.co/WZvsaFpT20", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 307, + "followers_count": 2090013, + "friends_count": 27, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 20010, + "location": "Kyiv", + "media_count": 3970, + "name": "The Kyiv Independent", + "normal_followers_count": 2090013, + "pinned_tweet_ids_str": [ + "1611768917151862784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivIndependent", + "statuses_count": 36943, + "translator_type": "none", + "url": "https://t.co/WZvsaFpT20", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1595086441079513088", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756277577394634930" + ], + "editable_until_msecs": "1707567779000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "38486", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 11:22:59 +0000 2024", + "conversation_id_str": "1756277575758827565", + "display_text_range": [ + 0, + 184 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 92, + "favorited": false, + "full_text": "\"It's a big threat for national security,\" Mykhailo Zhernakov, head of legal think-tank Dejure, told the Kyiv Independent. \"In this chaos it's very easy for foreign agents to operate.\"", + "in_reply_to_screen_name": "KyivIndependent", + "in_reply_to_status_id_str": "1756277575758827565", + "in_reply_to_user_id_str": "1462548977367359490", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 1, + "retweet_count": 11, + "retweeted": false, + "user_id_str": "1462548977367359490", + "id_str": "1756277577394634930" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1756277575758827565", + "1756277577394634930" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756276052136018264", + "sortIndex": "1756309211907620828", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756276052136018264", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", + "rest_id": "1462548977367359490", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Nov 21 22:30:41 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", + "entities": { + "description": { + "urls": [ + { + "display_url": "kyivindependent.com/membership/", + "expanded_url": "http://kyivindependent.com/membership/", + "url": "https://t.co/jsQiFkoveH", + "indices": [ + 17, + 40 + ] + }, + { + "display_url": "kyivindependent.com/membership/?in…", + "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", + "url": "https://t.co/eNwj76xa7a", + "indices": [ + 60, + 83 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "kyivindependent.com", + "expanded_url": "http://kyivindependent.com", + "url": "https://t.co/WZvsaFpT20", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 307, + "followers_count": 2090013, + "friends_count": 27, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 20010, + "location": "Kyiv", + "media_count": 3970, + "name": "The Kyiv Independent", + "normal_followers_count": 2090013, + "pinned_tweet_ids_str": [ + "1611768917151862784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivIndependent", + "statuses_count": 36943, + "translator_type": "none", + "url": "https://t.co/WZvsaFpT20", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1595086441079513088", + "professional_type": "Business", + "category": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/K3GWYBrmAO", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756274773800157184/6hr1dYfu?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 150, + "width": 212, + "url": "https://pbs.twimg.com/card_img/1756274773800157184/6hr1dYfu?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Carsten Breuer, the inspector general of the German Armed Forces, said that Russia has both the military potential and intention to extend its aggression beyond Ukraine.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "kyivindependent.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 297, + "width": 420, + "url": "https://pbs.twimg.com/card_img/1756274773800157184/6hr1dYfu?format=jpg&name=420x420_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756274773800157184/6hr1dYfu?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 723, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756274773800157184/6hr1dYfu?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "1462548977367359490", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756274773800157184/6hr1dYfu?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756274773800157184/6hr1dYfu?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 71, + "width": 100, + "url": "https://pbs.twimg.com/card_img/1756274773800157184/6hr1dYfu?format=jpg&name=100x100" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 723, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756274773800157184/6hr1dYfu?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 723, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756274773800157184/6hr1dYfu?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "kyivindependent.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756274773800157184/6hr1dYfu?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 33, + "green": 37, + "red": 41 + }, + "percentage": 47.99 + }, + { + "rgb": { + "blue": 156, + "green": 148, + "red": 149 + }, + "percentage": 19.94 + }, + { + "rgb": { + "blue": 20, + "green": 63, + "red": 102 + }, + "percentage": 11.47 + }, + { + "rgb": { + "blue": 54, + "green": 136, + "red": 201 + }, + "percentage": 7.25 + }, + { + "rgb": { + "blue": 233, + "green": 242, + "red": 245 + }, + "percentage": 1.2 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Top German general: 'We must be ready for war (with Russia) in 5 years'", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 33, + "green": 37, + "red": 41 + }, + "percentage": 47.99 + }, + { + "rgb": { + "blue": 156, + "green": 148, + "red": 149 + }, + "percentage": 19.94 + }, + { + "rgb": { + "blue": 20, + "green": 63, + "red": 102 + }, + "percentage": 11.47 + }, + { + "rgb": { + "blue": 54, + "green": 136, + "red": 201 + }, + "percentage": 7.25 + }, + { + "rgb": { + "blue": 233, + "green": 242, + "red": 245 + }, + "percentage": 1.2 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 723, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756274773800157184/6hr1dYfu?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756274773800157184/6hr1dYfu?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 33, + "green": 37, + "red": 41 + }, + "percentage": 47.99 + }, + { + "rgb": { + "blue": 156, + "green": 148, + "red": 149 + }, + "percentage": 19.94 + }, + { + "rgb": { + "blue": 20, + "green": 63, + "red": 102 + }, + "percentage": 11.47 + }, + { + "rgb": { + "blue": 54, + "green": 136, + "red": 201 + }, + "percentage": 7.25 + }, + { + "rgb": { + "blue": 233, + "green": 242, + "red": 245 + }, + "percentage": 1.2 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 723, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756274773800157184/6hr1dYfu?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/K3GWYBrmAO", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 723, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756274773800157184/6hr1dYfu?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/K3GWYBrmAO", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", + "rest_id": "1462548977367359490", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Nov 21 22:30:41 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", + "entities": { + "description": { + "urls": [ + { + "display_url": "kyivindependent.com/membership/", + "expanded_url": "http://kyivindependent.com/membership/", + "url": "https://t.co/jsQiFkoveH", + "indices": [ + 17, + 40 + ] + }, + { + "display_url": "kyivindependent.com/membership/?in…", + "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", + "url": "https://t.co/eNwj76xa7a", + "indices": [ + 60, + 83 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "kyivindependent.com", + "expanded_url": "http://kyivindependent.com", + "url": "https://t.co/WZvsaFpT20", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 307, + "followers_count": 2090013, + "friends_count": 27, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 20010, + "location": "Kyiv", + "media_count": 3970, + "name": "The Kyiv Independent", + "normal_followers_count": 2090013, + "pinned_tweet_ids_str": [ + "1611768917151862784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivIndependent", + "statuses_count": 36943, + "translator_type": "none", + "url": "https://t.co/WZvsaFpT20", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1595086441079513088", + "professional_type": "Business", + "category": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756276052136018264" + ], + "editable_until_msecs": "1707567415000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "49706", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 9, + "bookmarked": false, + "created_at": "Sat Feb 10 11:16:55 +0000 2024", + "conversation_id_str": "1756276052136018264", + "display_text_range": [ + 0, + 252 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "kyivindependent.com/top-german-gen…", + "expanded_url": "https://kyivindependent.com/top-german-general-we-must-be-ready-for-war-with-russia-in-5-years/", + "url": "https://t.co/K3GWYBrmAO", + "indices": [ + 229, + 252 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 459, + "favorited": false, + "full_text": "⚡️Top German general: 'We must be ready for war (with Russia) in 5 years.’\n\nGermany must increase its military preparedness for a potential war with Russia in the next five years, said General Carsten Breuer to Welt Am Sonntag.\n\nhttps://t.co/K3GWYBrmAO", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 9, + "reply_count": 26, + "retweet_count": 99, + "retweeted": false, + "user_id_str": "1462548977367359490", + "id_str": "1756276052136018264" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756274219732599133", + "sortIndex": "1756309211907620827", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756274219732599133", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjMwMTg2NTM=", + "rest_id": "163018653", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Jul 05 09:44:27 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Ambassador-at-large @MFA_Ukraine, Amb to Austria (2014-2021). Author of “Ukraine vs Darkness. Undiplomatic Thoughts”. Personal account.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amazon.com/Ukraine-vs-Dar…", + "expanded_url": "https://www.amazon.com/Ukraine-vs-Darkness-Undiplomatic-Ukrainian-ebook/dp/B08WKF3B2K", + "url": "https://t.co/ERA9Ntt061", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 28758, + "followers_count": 264429, + "friends_count": 1248, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 4354, + "location": "Kyiv", + "media_count": 6624, + "name": "olexander scherba🇺🇦", + "normal_followers_count": 264429, + "pinned_tweet_ids_str": [ + "1396956590713020416" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/163018653/1646220178", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671642770549956608/yR9Is6BD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "olex_scherba", + "statuses_count": 40000, + "translator_type": "none", + "url": "https://t.co/ERA9Ntt061", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1696586841602834861", + "professional_type": "Business", + "category": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/FQ4tFszIae", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "app_star_rating", + "value": { + "string_value": "4.86347", + "type": "STRING" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 147, + "width": 280, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "The Russian president was waiting for the right stooge. With Carlson, he got just that", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.theguardian.com", + "type": "STRING" + } + }, + { + "key": "app_is_free", + "value": { + "string_value": "true", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 315, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=600x600" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "87818409", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 76, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "app_num_ratings", + "value": { + "string_value": "107,990", + "type": "STRING" + } + }, + { + "key": "app_price_amount", + "value": { + "string_value": "0.0", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "theguardian.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "app_name", + "value": { + "string_value": "The Guardian - Live World News", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 10, + "green": 15, + "red": 14 + }, + "percentage": 76.84 + }, + { + "rgb": { + "blue": 1, + "green": 86, + "red": 202 + }, + "percentage": 13.29 + }, + { + "rgb": { + "blue": 180, + "green": 207, + "red": 241 + }, + "percentage": 2.51 + }, + { + "rgb": { + "blue": 40, + "green": 56, + "red": 105 + }, + "percentage": 1.96 + }, + { + "rgb": { + "blue": 0, + "green": 193, + "red": 242 + }, + "percentage": 1.04 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Tucker Carlson’s Putin interview wasn’t journalism. It was sycophancy | Margaret Sullivan", + "type": "STRING" + } + }, + { + "key": "app_price_currency", + "value": { + "string_value": "USD", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 10, + "green": 15, + "red": 14 + }, + "percentage": 76.84 + }, + { + "rgb": { + "blue": 1, + "green": 86, + "red": 202 + }, + "percentage": 13.29 + }, + { + "rgb": { + "blue": 180, + "green": 207, + "red": 241 + }, + "percentage": 2.51 + }, + { + "rgb": { + "blue": 40, + "green": 56, + "red": 105 + }, + "percentage": 1.96 + }, + { + "rgb": { + "blue": 0, + "green": 193, + "red": 242 + }, + "percentage": 1.04 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 10, + "green": 15, + "red": 14 + }, + "percentage": 76.84 + }, + { + "rgb": { + "blue": 1, + "green": 86, + "red": 202 + }, + "percentage": 13.29 + }, + { + "rgb": { + "blue": 180, + "green": 207, + "red": 241 + }, + "percentage": 2.51 + }, + { + "rgb": { + "blue": 40, + "green": 56, + "red": 105 + }, + "percentage": 1.96 + }, + { + "rgb": { + "blue": 0, + "green": 193, + "red": 242 + }, + "percentage": 1.04 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/FQ4tFszIae", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/FQ4tFszIae", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjo4NzgxODQwOQ==", + "rest_id": "87818409", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Nov 05 23:49:19 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "The need for independent journalism has never been greater. Become a Guardian supporter: https://t.co/kFXqbVRovR", + "entities": { + "description": { + "urls": [ + { + "display_url": "support.theguardian.com", + "expanded_url": "http://support.theguardian.com", + "url": "https://t.co/kFXqbVRovR", + "indices": [ + 89, + 112 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "theguardian.com", + "expanded_url": "https://www.theguardian.com", + "url": "https://t.co/KHA6KFoD05", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 143, + "followers_count": 10908349, + "friends_count": 1039, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 71541, + "location": "London", + "media_count": 24371, + "name": "The Guardian", + "normal_followers_count": 10908349, + "pinned_tweet_ids_str": [ + "1745098247968874729" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/87818409/1695201078", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1175141826870861825/K2qKoGla_normal.png", + "profile_interstitial_type": "", + "screen_name": "guardian", + "statuses_count": 842490, + "translator_type": "regular", + "url": "https://t.co/KHA6KFoD05", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756274219732599133" + ], + "editable_until_msecs": "1707566978638", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 11:09:38 +0000 2024", + "conversation_id_str": "1756274219732599133", + "display_text_range": [ + 0, + 127 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "theguardian.com/commentisfree/…", + "expanded_url": "https://www.theguardian.com/commentisfree/2024/feb/09/tucker-carlson-putin-interview-journalism-sycophancy?CMP=twt_gu&utm_source=Twitter&utm_medium#Echobox=1707499952-1", + "url": "https://t.co/FQ4tFszIae", + "indices": [ + 104, + 127 + ] + } + ], + "user_mentions": [ + { + "id_str": "87818409", + "name": "The Guardian", + "screen_name": "guardian", + "indices": [ + 3, + 12 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @guardian: Tucker Carlson’s Putin interview wasn’t journalism. It was sycophancy | Margaret Sullivan https://t.co/FQ4tFszIae", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 264, + "retweeted": false, + "user_id_str": "163018653", + "id_str": "1756274219732599133", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756103202439565436", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NzgxODQwOQ==", + "rest_id": "87818409", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Nov 05 23:49:19 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "The need for independent journalism has never been greater. Become a Guardian supporter: https://t.co/kFXqbVRovR", + "entities": { + "description": { + "urls": [ + { + "display_url": "support.theguardian.com", + "expanded_url": "http://support.theguardian.com", + "url": "https://t.co/kFXqbVRovR", + "indices": [ + 89, + 112 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "theguardian.com", + "expanded_url": "https://www.theguardian.com", + "url": "https://t.co/KHA6KFoD05", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 143, + "followers_count": 10908349, + "friends_count": 1039, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 71541, + "location": "London", + "media_count": 24371, + "name": "The Guardian", + "normal_followers_count": 10908349, + "pinned_tweet_ids_str": [ + "1745098247968874729" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/87818409/1695201078", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1175141826870861825/K2qKoGla_normal.png", + "profile_interstitial_type": "", + "screen_name": "guardian", + "statuses_count": 842490, + "translator_type": "regular", + "url": "https://t.co/KHA6KFoD05", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/FQ4tFszIae", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "app_star_rating", + "value": { + "string_value": "4.86347", + "type": "STRING" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 147, + "width": 280, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "The Russian president was waiting for the right stooge. With Carlson, he got just that", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.theguardian.com", + "type": "STRING" + } + }, + { + "key": "app_is_free", + "value": { + "string_value": "true", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 315, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=600x600" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "87818409", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 76, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "app_num_ratings", + "value": { + "string_value": "107,990", + "type": "STRING" + } + }, + { + "key": "app_price_amount", + "value": { + "string_value": "0.0", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "theguardian.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "app_name", + "value": { + "string_value": "The Guardian - Live World News", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 10, + "green": 15, + "red": 14 + }, + "percentage": 76.84 + }, + { + "rgb": { + "blue": 1, + "green": 86, + "red": 202 + }, + "percentage": 13.29 + }, + { + "rgb": { + "blue": 180, + "green": 207, + "red": 241 + }, + "percentage": 2.51 + }, + { + "rgb": { + "blue": 40, + "green": 56, + "red": 105 + }, + "percentage": 1.96 + }, + { + "rgb": { + "blue": 0, + "green": 193, + "red": 242 + }, + "percentage": 1.04 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Tucker Carlson’s Putin interview wasn’t journalism. It was sycophancy | Margaret Sullivan", + "type": "STRING" + } + }, + { + "key": "app_price_currency", + "value": { + "string_value": "USD", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 10, + "green": 15, + "red": 14 + }, + "percentage": 76.84 + }, + { + "rgb": { + "blue": 1, + "green": 86, + "red": 202 + }, + "percentage": 13.29 + }, + { + "rgb": { + "blue": 180, + "green": 207, + "red": 241 + }, + "percentage": 2.51 + }, + { + "rgb": { + "blue": 40, + "green": 56, + "red": 105 + }, + "percentage": 1.96 + }, + { + "rgb": { + "blue": 0, + "green": 193, + "red": 242 + }, + "percentage": 1.04 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 10, + "green": 15, + "red": 14 + }, + "percentage": 76.84 + }, + { + "rgb": { + "blue": 1, + "green": 86, + "red": 202 + }, + "percentage": 13.29 + }, + { + "rgb": { + "blue": 180, + "green": 207, + "red": 241 + }, + "percentage": 2.51 + }, + { + "rgb": { + "blue": 40, + "green": 56, + "red": 105 + }, + "percentage": 1.96 + }, + { + "rgb": { + "blue": 0, + "green": 193, + "red": 242 + }, + "percentage": 1.04 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/FQ4tFszIae", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009158535471105/TKWU3_S1?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/FQ4tFszIae", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjo4NzgxODQwOQ==", + "rest_id": "87818409", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Nov 05 23:49:19 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "The need for independent journalism has never been greater. Become a Guardian supporter: https://t.co/kFXqbVRovR", + "entities": { + "description": { + "urls": [ + { + "display_url": "support.theguardian.com", + "expanded_url": "http://support.theguardian.com", + "url": "https://t.co/kFXqbVRovR", + "indices": [ + 89, + 112 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "theguardian.com", + "expanded_url": "https://www.theguardian.com", + "url": "https://t.co/KHA6KFoD05", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 143, + "followers_count": 10908349, + "friends_count": 1039, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 71541, + "location": "London", + "media_count": 24371, + "name": "The Guardian", + "normal_followers_count": 10908349, + "pinned_tweet_ids_str": [ + "1745098247968874729" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/87818409/1695201078", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1175141826870861825/K2qKoGla_normal.png", + "profile_interstitial_type": "", + "screen_name": "guardian", + "statuses_count": 842490, + "translator_type": "regular", + "url": "https://t.co/KHA6KFoD05", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756103202439565436" + ], + "editable_until_msecs": "1707526204000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "220886", + "state": "EnabledWithCount" + }, + "source": "Echobox 1", + "legacy": { + "bookmark_count": 48, + "bookmarked": false, + "created_at": "Fri Feb 09 23:50:04 +0000 2024", + "conversation_id_str": "1756103202439565436", + "display_text_range": [ + 0, + 113 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "theguardian.com/commentisfree/…", + "expanded_url": "https://www.theguardian.com/commentisfree/2024/feb/09/tucker-carlson-putin-interview-journalism-sycophancy?CMP=twt_gu&utm_source=Twitter&utm_medium#Echobox=1707499952-1", + "url": "https://t.co/FQ4tFszIae", + "indices": [ + 90, + 113 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 1413, + "favorited": false, + "full_text": "Tucker Carlson’s Putin interview wasn’t journalism. It was sycophancy | Margaret Sullivan https://t.co/FQ4tFszIae", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 41, + "reply_count": 588, + "retweet_count": 264, + "retweeted": false, + "user_id_str": "87818409", + "id_str": "1756103202439565436" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756273955969618150", + "sortIndex": "1756309211907620826", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756273955969618150", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjMwMTg2NTM=", + "rest_id": "163018653", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Jul 05 09:44:27 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Ambassador-at-large @MFA_Ukraine, Amb to Austria (2014-2021). Author of “Ukraine vs Darkness. Undiplomatic Thoughts”. Personal account.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amazon.com/Ukraine-vs-Dar…", + "expanded_url": "https://www.amazon.com/Ukraine-vs-Darkness-Undiplomatic-Ukrainian-ebook/dp/B08WKF3B2K", + "url": "https://t.co/ERA9Ntt061", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 28758, + "followers_count": 264429, + "friends_count": 1248, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 4354, + "location": "Kyiv", + "media_count": 6624, + "name": "olexander scherba🇺🇦", + "normal_followers_count": 264429, + "pinned_tweet_ids_str": [ + "1396956590713020416" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/163018653/1646220178", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671642770549956608/yR9Is6BD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "olex_scherba", + "statuses_count": 40000, + "translator_type": "none", + "url": "https://t.co/ERA9Ntt061", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1696586841602834861", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756273955969618150" + ], + "editable_until_msecs": "1707566915752", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 11:08:35 +0000 2024", + "conversation_id_str": "1756273955969618150", + "display_text_range": [ + 0, + 72 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "19500405", + "name": "вареничок.eristavi 🇺🇦🏳️‍🌈", + "screen_name": "maksymeristavi", + "indices": [ + 3, + 18 + ] + }, + { + "id_str": "502474118", + "name": "Liev Schreiber", + "screen_name": "LievSchreiber", + "indices": [ + 58, + 72 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @maksymeristavi: in a world of tucker carlsons be like @LievSchreiber", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1756055059199050082", + "quoted_status_permalink": { + "url": "https://t.co/KxQwop6ros", + "expanded": "https://twitter.com/lievschreiber/status/1756055059199050082", + "display": "twitter.com/lievschreiber/…" + }, + "reply_count": 0, + "retweet_count": 117, + "retweeted": false, + "user_id_str": "163018653", + "id_str": "1756273955969618150", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756260483277942786", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxOTUwMDQwNQ==", + "rest_id": "19500405", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sun Jan 25 19:19:40 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "#RussianColonialism storyteller-in-chief. author of award-winning “russian colonialism 101” guidebook🪆🪓 also: @ukrainianspaces", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "maksymeristavi.com", + "expanded_url": "http://maksymeristavi.com", + "url": "https://t.co/0zPy3bzRFA", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 34938, + "followers_count": 102098, + "friends_count": 1250, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2440, + "location": "запорізький вареничок.", + "media_count": 5676, + "name": "вареничок.eristavi 🇺🇦🏳️‍🌈", + "normal_followers_count": 102098, + "pinned_tweet_ids_str": [ + "1697184116175708290" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/19500405/1693510810", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1695790159122362369/gnjiVEph_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "maksymeristavi", + "statuses_count": 27336, + "translator_type": "none", + "url": "https://t.co/0zPy3bzRFA", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1467874082800685071", + "professional_type": "Creator", + "category": [ + { + "id": 956, + "name": "Writer", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756260483277942786" + ], + "editable_until_msecs": "1707563703000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "12515", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756055059199050082", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1MDI0NzQxMTg=", + "rest_id": "502474118", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sat Feb 25 04:24:06 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Hirsute actor type best known for his slavic fat pads and shockingly attractive children.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bluecheck.in", + "expanded_url": "http://www.bluecheck.in", + "url": "https://t.co/dUZQcLY5Li", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 672, + "followers_count": 225493, + "friends_count": 48, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 813, + "location": "", + "media_count": 293, + "name": "Liev Schreiber", + "normal_followers_count": 225493, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/502474118/1362614882", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/826066464327221249/jkDtwZxq_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "LievSchreiber", + "statuses_count": 2877, + "translator_type": "none", + "url": "https://t.co/dUZQcLY5Li", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756055059199050082" + ], + "editable_until_msecs": "1707514726000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "72130", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 38, + "bookmarked": false, + "created_at": "Fri Feb 09 20:38:46 +0000 2024", + "conversation_id_str": "1756055059199050082", + "display_text_range": [ + 0, + 23 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/SQTW5YmBSS", + "expanded_url": "https://twitter.com/U24_gov_ua/status/1657339724581724160/video/1", + "id_str": "1657337960012947457", + "indices": [ + 0, + 23 + ], + "media_key": "7_1657337960012947457", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1657337960012947457/pu/img/ZDRFtVPe75V7Wgts.jpg", + "source_status_id_str": "1657339724581724160", + "source_user_id_str": "1513194611396816909", + "type": "video", + "url": "https://t.co/SQTW5YmBSS", + "additional_media_info": { + "monetizable": false, + "source_user": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTEzMTk0NjExMzk2ODE2OTA5", + "rest_id": "1513194611396816909", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Apr 10 16:38:29 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "The initiative of the President of Ukraine \n@ZelenskyyUa\n\nThe main platform for collecting charitable donations in support of Ukraine", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "u24.gov.ua", + "expanded_url": "https://u24.gov.ua", + "url": "https://t.co/cuyg4O71ld", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 32707, + "followers_count": 59883, + "friends_count": 24, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 593, + "location": "Ukraine", + "media_count": 2262, + "name": "UNITED24", + "normal_followers_count": 59883, + "pinned_tweet_ids_str": [ + "1737186393867112879" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1513194611396816909/1649609046", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1692203811799007232/Nnqrqb93_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "U24_gov_ua", + "statuses_count": 8025, + "translator_type": "none", + "url": "https://t.co/cuyg4O71ld", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + } + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1080, + "w": 1080, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1080, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 1, + 1 + ], + "duration_millis": 93680, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1657337960012947457/pu/pl/cqtNCLO1wjvCsunS.m3u8?tag=12&container=cmaf&v=2cd" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1657337960012947457/pu/vid/540x540/lgO5vZ33XDM7IsVj.mp4?tag=12" + }, + { + "bitrate": 1280000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1657337960012947457/pu/vid/720x720/GvwrqALEJ0fSgi6j.mp4?tag=12" + }, + { + "bitrate": 432000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1657337960012947457/pu/vid/320x320/HEkN7MIRnTDQOI0t.mp4?tag=12" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/SQTW5YmBSS", + "expanded_url": "https://twitter.com/U24_gov_ua/status/1657339724581724160/video/1", + "id_str": "1657337960012947457", + "indices": [ + 0, + 23 + ], + "media_key": "7_1657337960012947457", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1657337960012947457/pu/img/ZDRFtVPe75V7Wgts.jpg", + "source_status_id_str": "1657339724581724160", + "source_user_id_str": "1513194611396816909", + "type": "video", + "url": "https://t.co/SQTW5YmBSS", + "additional_media_info": { + "monetizable": false, + "source_user": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTEzMTk0NjExMzk2ODE2OTA5", + "rest_id": "1513194611396816909", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Apr 10 16:38:29 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "The initiative of the President of Ukraine \n@ZelenskyyUa\n\nThe main platform for collecting charitable donations in support of Ukraine", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "u24.gov.ua", + "expanded_url": "https://u24.gov.ua", + "url": "https://t.co/cuyg4O71ld", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 32707, + "followers_count": 59883, + "friends_count": 24, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 593, + "location": "Ukraine", + "media_count": 2262, + "name": "UNITED24", + "normal_followers_count": 59883, + "pinned_tweet_ids_str": [ + "1737186393867112879" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1513194611396816909/1649609046", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1692203811799007232/Nnqrqb93_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "U24_gov_ua", + "statuses_count": 8025, + "translator_type": "none", + "url": "https://t.co/cuyg4O71ld", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + } + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1080, + "w": 1080, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1080, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 1, + 1 + ], + "duration_millis": 93680, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1657337960012947457/pu/pl/cqtNCLO1wjvCsunS.m3u8?tag=12&container=cmaf&v=2cd" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1657337960012947457/pu/vid/540x540/lgO5vZ33XDM7IsVj.mp4?tag=12" + }, + { + "bitrate": 1280000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1657337960012947457/pu/vid/720x720/GvwrqALEJ0fSgi6j.mp4?tag=12" + }, + { + "bitrate": 432000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1657337960012947457/pu/vid/320x320/HEkN7MIRnTDQOI0t.mp4?tag=12" + } + ] + } + } + ] + }, + "favorite_count": 1476, + "favorited": false, + "full_text": "https://t.co/SQTW5YmBSS", + "is_quote_status": false, + "lang": "zxx", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 37, + "reply_count": 73, + "retweet_count": 397, + "retweeted": false, + "user_id_str": "502474118", + "id_str": "1756055059199050082" + } + } + }, + "legacy": { + "bookmark_count": 15, + "bookmarked": false, + "created_at": "Sat Feb 10 10:15:03 +0000 2024", + "conversation_id_str": "1756260483277942786", + "display_text_range": [ + 0, + 52 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "502474118", + "name": "Liev Schreiber", + "screen_name": "LievSchreiber", + "indices": [ + 38, + 52 + ] + } + ] + }, + "favorite_count": 422, + "favorited": false, + "full_text": "in a world of tucker carlsons be like @LievSchreiber", + "is_quote_status": true, + "lang": "en", + "quote_count": 1, + "quoted_status_id_str": "1756055059199050082", + "quoted_status_permalink": { + "url": "https://t.co/KxQwop6ros", + "expanded": "https://twitter.com/lievschreiber/status/1756055059199050082", + "display": "twitter.com/lievschreiber/…" + }, + "reply_count": 7, + "retweet_count": 117, + "retweeted": false, + "user_id_str": "19500405", + "id_str": "1756260483277942786" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756273745142878665", + "sortIndex": "1756309211907620825", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756273745142878665", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjMwMTg2NTM=", + "rest_id": "163018653", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Jul 05 09:44:27 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Ambassador-at-large @MFA_Ukraine, Amb to Austria (2014-2021). Author of “Ukraine vs Darkness. Undiplomatic Thoughts”. Personal account.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amazon.com/Ukraine-vs-Dar…", + "expanded_url": "https://www.amazon.com/Ukraine-vs-Darkness-Undiplomatic-Ukrainian-ebook/dp/B08WKF3B2K", + "url": "https://t.co/ERA9Ntt061", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 28758, + "followers_count": 264429, + "friends_count": 1248, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 4354, + "location": "Kyiv", + "media_count": 6624, + "name": "olexander scherba🇺🇦", + "normal_followers_count": 264429, + "pinned_tweet_ids_str": [ + "1396956590713020416" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/163018653/1646220178", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671642770549956608/yR9Is6BD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "olex_scherba", + "statuses_count": 40000, + "translator_type": "none", + "url": "https://t.co/ERA9Ntt061", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1696586841602834861", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756273745142878665" + ], + "editable_until_msecs": "1707566865487", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 11:07:45 +0000 2024", + "conversation_id_str": "1756273745142878665", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1537130875296563200", + "name": "Jay in Kyiv", + "screen_name": "JayinKyiv", + "indices": [ + 3, + 13 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @JayinKyiv: The entire family was burned alive and this was their dog.\n\nThe civilized world continues to allow Russians to do this here,…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 619, + "retweeted": false, + "user_id_str": "163018653", + "id_str": "1756273745142878665", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756265478480077215", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTM3MTMwODc1Mjk2NTYzMjAw", + "rest_id": "1537130875296563200", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed Jun 15 17:54:58 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "American in Ukraine\n\nhttps://t.co/ecJv657h6u", + "entities": { + "description": { + "urls": [ + { + "display_url": "buymeacoffee.com/jayinkyiv", + "expanded_url": "https://www.buymeacoffee.com/jayinkyiv", + "url": "https://t.co/ecJv657h6u", + "indices": [ + 21, + 44 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "prytulafoundation.org", + "expanded_url": "https://prytulafoundation.org/", + "url": "https://t.co/iJ6X5XGm56", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 31478, + "followers_count": 76355, + "friends_count": 1370, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 1708, + "location": "Kyiv", + "media_count": 8715, + "name": "Jay in Kyiv", + "normal_followers_count": 76355, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1677733643811160065/KvmrKArN_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "JayinKyiv", + "statuses_count": 25611, + "translator_type": "none", + "url": "https://t.co/iJ6X5XGm56", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756265478480077215" + ], + "editable_until_msecs": "1707564894000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "36050", + "state": "EnabledWithCount" + }, + "source": "Twitter for Android", + "legacy": { + "bookmark_count": 31, + "bookmarked": false, + "created_at": "Sat Feb 10 10:34:54 +0000 2024", + "conversation_id_str": "1756265478480077215", + "display_text_range": [ + 0, + 216 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/fwTkTWdKrB", + "expanded_url": "https://twitter.com/JayinKyiv/status/1756265478480077215/photo/1", + "id_str": "1756265475309187072", + "indices": [ + 217, + 240 + ], + "media_key": "3_1756265475309187072", + "media_url_https": "https://pbs.twimg.com/media/GF-CJQsWMAATvj5.jpg", + "type": "photo", + "url": "https://t.co/fwTkTWdKrB", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sensitive_media_warning": { + "other": true + }, + "sizes": { + "large": { + "h": 1280, + "w": 952, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 893, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 506, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1280, + "width": 952, + "focus_rects": [ + { + "x": 0, + "y": 662, + "w": 952, + "h": 533 + }, + { + "x": 0, + "y": 328, + "w": 952, + "h": 952 + }, + { + "x": 0, + "y": 195, + "w": 952, + "h": 1085 + }, + { + "x": 312, + "y": 0, + "w": 640, + "h": 1280 + }, + { + "x": 0, + "y": 0, + "w": 952, + "h": 1280 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/fwTkTWdKrB", + "expanded_url": "https://twitter.com/JayinKyiv/status/1756265478480077215/photo/1", + "id_str": "1756265475309187072", + "indices": [ + 217, + 240 + ], + "media_key": "3_1756265475309187072", + "media_url_https": "https://pbs.twimg.com/media/GF-CJQsWMAATvj5.jpg", + "type": "photo", + "url": "https://t.co/fwTkTWdKrB", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sensitive_media_warning": { + "other": true + }, + "sizes": { + "large": { + "h": 1280, + "w": 952, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 893, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 506, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1280, + "width": 952, + "focus_rects": [ + { + "x": 0, + "y": 662, + "w": 952, + "h": 533 + }, + { + "x": 0, + "y": 328, + "w": 952, + "h": 952 + }, + { + "x": 0, + "y": 195, + "w": 952, + "h": 1085 + }, + { + "x": 312, + "y": 0, + "w": 640, + "h": 1280 + }, + { + "x": 0, + "y": 0, + "w": 952, + "h": 1280 + } + ] + } + } + ] + }, + "favorite_count": 1259, + "favorited": false, + "full_text": "The entire family was burned alive and this was their dog.\n\nThe civilized world continues to allow Russians to do this here, refusing to give Ukraine the weapons that could stop this tomorrow.\n\nKharkiv, this morning. https://t.co/fwTkTWdKrB", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": true, + "possibly_sensitive_editable": false, + "quote_count": 42, + "reply_count": 53, + "retweet_count": 619, + "retweeted": false, + "user_id_str": "1537130875296563200", + "id_str": "1756265478480077215" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756272740561023050", + "sortIndex": "1756309211907620824", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756272740561023050", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NDA4MzE4Nw==", + "rest_id": "84083187", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Oct 21 13:42:34 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Ukraine Correspondent. British-Lebanese conflict journalist & filmmaker based in Kyiv. Co-host of @DrillPod. RTs ≠ endorsement.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ko-fi.com/ozkaterji", + "expanded_url": "http://ko-fi.com/ozkaterji", + "url": "https://t.co/FC9pQbgXa4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 45500, + "followers_count": 215887, + "friends_count": 11666, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3397, + "location": "Kyiv, Ukraine", + "media_count": 6412, + "name": "Oz Katerji", + "normal_followers_count": 215887, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84083187/1647382697", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713181637574275072/gUp8KMF4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OzKaterji", + "statuses_count": 174699, + "translator_type": "none", + "url": "https://t.co/FC9pQbgXa4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756272740561023050" + ], + "editable_until_msecs": "1707566625976", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 11:03:45 +0000 2024", + "conversation_id_str": "1756272740561023050", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "16980455", + "name": "collinfisherphd.bsky.social🍦🇺🇦", + "screen_name": "CollinFisher", + "indices": [ + 3, + 16 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @CollinFisher: Holy dog shit! Someone on Reddit found this. The T-55 in the left picture is from the Oryx list of destroyed Russian vehi…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 589, + "retweeted": false, + "user_id_str": "84083187", + "id_str": "1756272740561023050", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756066362064318771", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjk4MDQ1NQ==", + "rest_id": "16980455", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Sun Oct 26 13:56:46 +0000 2008", + "default_profile": false, + "default_profile_image": false, + "description": "https://t.co/Mnyq6egir1 Doctorate in International Relations from the University of Kent. I mute creeps and weirdos. #NAFO", + "entities": { + "description": { + "urls": [ + { + "display_url": "collinfisherphd.bsky.social", + "expanded_url": "http://collinfisherphd.bsky.social", + "url": "https://t.co/Mnyq6egir1", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 298948, + "followers_count": 2352, + "friends_count": 538, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 40, + "location": "Arizona, USA", + "media_count": 5292, + "name": "collinfisherphd.bsky.social🍦🇺🇦", + "normal_followers_count": 2352, + "pinned_tweet_ids_str": [ + "1744580414650667492" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16980455/1611643614", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/461081828/portrait_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "CollinFisher", + "statuses_count": 115957, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756066362064318771" + ], + "editable_until_msecs": "1707517421000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "392714", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 571, + "bookmarked": false, + "created_at": "Fri Feb 09 21:23:41 +0000 2024", + "conversation_id_str": "1756066362064318771", + "display_text_range": [ + 0, + 160 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/juDdv1v4es", + "expanded_url": "https://twitter.com/CollinFisher/status/1756066362064318771/photo/1", + "id_str": "1756066271152771072", + "indices": [ + 161, + 184 + ], + "media_key": "3_1756066271152771072", + "media_url_https": "https://pbs.twimg.com/media/GF7M-DYbEAA7OPy.jpg", + "type": "photo", + "url": "https://t.co/juDdv1v4es", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 418, + "w": 1024, + "resize": "fit" + }, + "medium": { + "h": 418, + "w": 1024, + "resize": "fit" + }, + "small": { + "h": 278, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 418, + "width": 1024, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 746, + "h": 418 + }, + { + "x": 0, + "y": 0, + "w": 418, + "h": 418 + }, + { + "x": 0, + "y": 0, + "w": 367, + "h": 418 + }, + { + "x": 23, + "y": 0, + "w": 209, + "h": 418 + }, + { + "x": 0, + "y": 0, + "w": 1024, + "h": 418 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/juDdv1v4es", + "expanded_url": "https://twitter.com/CollinFisher/status/1756066362064318771/photo/1", + "id_str": "1756066271152771072", + "indices": [ + 161, + 184 + ], + "media_key": "3_1756066271152771072", + "media_url_https": "https://pbs.twimg.com/media/GF7M-DYbEAA7OPy.jpg", + "type": "photo", + "url": "https://t.co/juDdv1v4es", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 418, + "w": 1024, + "resize": "fit" + }, + "medium": { + "h": 418, + "w": 1024, + "resize": "fit" + }, + "small": { + "h": 278, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 418, + "width": 1024, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 746, + "h": 418 + }, + { + "x": 0, + "y": 0, + "w": 418, + "h": 418 + }, + { + "x": 0, + "y": 0, + "w": 367, + "h": 418 + }, + { + "x": 23, + "y": 0, + "w": 209, + "h": 418 + }, + { + "x": 0, + "y": 0, + "w": 1024, + "h": 418 + } + ] + } + } + ] + }, + "favorite_count": 5302, + "favorited": false, + "full_text": "Holy dog shit! Someone on Reddit found this. The T-55 in the left picture is from the Oryx list of destroyed Russian vehicles in Ukraine, right is 1956 Hungary. https://t.co/juDdv1v4es", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 97, + "reply_count": 67, + "retweet_count": 589, + "retweeted": false, + "user_id_str": "16980455", + "id_str": "1756066362064318771" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756270519169478941", + "sortIndex": "1756309211907620823", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756270519169478941", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo3MDY2NDM3MQ==", + "rest_id": "70664371", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Sep 01 12:13:17 +0000 2009", + "default_profile": true, + "default_profile_image": false, + "description": "Two decades of reporting in more than 20 countries. Foreign correspondent @TheDailyBeast;@TheAtlantic,@USAToday @RollingStone. Courage in Journalism Award @IWMF", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 4129, + "followers_count": 18930, + "friends_count": 2232, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 950, + "location": "", + "media_count": 1231, + "name": "Anna Nemtsova", + "normal_followers_count": 18930, + "pinned_tweet_ids_str": [ + "1729932755713077531" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/70664371/1658767939", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1321538376961531904/AlUu6-aU_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "annanemtsova", + "statuses_count": 7795, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/nBzdqzyfz5", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "alt": "A photograph released by Ukrainian Presidential press service last July showing Gen. Valery Zaluzhny during a ceremony marking the 30th anniversary of Ukrainian independence.", + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1755636388806983681/vhjgRQWo?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "alt": "A photograph released by Ukrainian Presidential press service last July showing Gen. Valery Zaluzhny during a ceremony marking the 30th anniversary of Ukrainian independence.", + "height": 150, + "width": 267, + "url": "https://pbs.twimg.com/card_img/1755636388806983681/vhjgRQWo?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Gen. Valery Zaluzhny led the effort that thwarted Russia’s initial assault on Kyiv. But his troops have struggled to make progress recently, and tensions have mounted with the civilian leadership.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.nytimes.com", + "type": "STRING" + } + }, + { + "key": "app_is_free", + "value": { + "string_value": "true", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "alt": "A photograph released by Ukrainian Presidential press service last July showing Gen. Valery Zaluzhny during a ceremony marking the 30th anniversary of Ukrainian independence.", + "height": 320, + "width": 569, + "url": "https://pbs.twimg.com/card_img/1755636388806983681/vhjgRQWo?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "alt": "A photograph released by Ukrainian Presidential press service last July showing Gen. Valery Zaluzhny during a ceremony marking the 30th anniversary of Ukrainian independence.", + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755636388806983681/vhjgRQWo?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "alt": "A photograph released by Ukrainian Presidential press service last July showing Gen. Valery Zaluzhny during a ceremony marking the 30th anniversary of Ukrainian independence.", + "height": 1688, + "width": 3000, + "url": "https://pbs.twimg.com/card_img/1755636388806983681/vhjgRQWo?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "807095", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "alt": "A photograph released by Ukrainian Presidential press service last July showing Gen. Valery Zaluzhny during a ceremony marking the 30th anniversary of Ukrainian independence.", + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755636388806983681/vhjgRQWo?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "alt": "A photograph released by Ukrainian Presidential press service last July showing Gen. Valery Zaluzhny during a ceremony marking the 30th anniversary of Ukrainian independence.", + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1755636388806983681/vhjgRQWo?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "alt": "A photograph released by Ukrainian Presidential press service last July showing Gen. Valery Zaluzhny during a ceremony marking the 30th anniversary of Ukrainian independence.", + "height": 81, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1755636388806983681/vhjgRQWo?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "app_price_amount", + "value": { + "string_value": "0.0", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "alt": "A photograph released by Ukrainian Presidential press service last July showing Gen. Valery Zaluzhny during a ceremony marking the 30th anniversary of Ukrainian independence.", + "height": 1152, + "width": 2048, + "url": "https://pbs.twimg.com/card_img/1755636388806983681/vhjgRQWo?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "alt": "A photograph released by Ukrainian Presidential press service last July showing Gen. Valery Zaluzhny during a ceremony marking the 30th anniversary of Ukrainian independence.", + "height": 1688, + "width": 3000, + "url": "https://pbs.twimg.com/card_img/1755636388806983681/vhjgRQWo?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_alt_text", + "value": { + "string_value": "A photograph released by Ukrainian Presidential press service last July showing Gen. Valery Zaluzhny during a ceremony marking the 30th anniversary of Ukrainian independence.", + "type": "STRING" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "nytimes.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "alt": "A photograph released by Ukrainian Presidential press service last July showing Gen. Valery Zaluzhny during a ceremony marking the 30th anniversary of Ukrainian independence.", + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755636388806983681/vhjgRQWo?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "app_name", + "value": { + "string_value": "The New York Times", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_alt_text", + "value": { + "string_value": "A photograph released by Ukrainian Presidential press service last July showing Gen. Valery Zaluzhny during a ceremony marking the 30th anniversary of Ukrainian independence.", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 59, + "green": 66, + "red": 89 + }, + "percentage": 33.9 + }, + { + "rgb": { + "blue": 180, + "green": 179, + "red": 169 + }, + "percentage": 24.53 + }, + { + "rgb": { + "blue": 40, + "green": 25, + "red": 84 + }, + "percentage": 9.65 + }, + { + "rgb": { + "blue": 59, + "green": 70, + "red": 66 + }, + "percentage": 8.67 + }, + { + "rgb": { + "blue": 214, + "green": 185, + "red": 156 + }, + "percentage": 3.01 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Zelensky Removes His Top General, in Major Shake-Up of Ukraine Military", + "type": "STRING" + } + }, + { + "key": "app_price_currency", + "value": { + "string_value": "USD", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 59, + "green": 66, + "red": 89 + }, + "percentage": 33.9 + }, + { + "rgb": { + "blue": 180, + "green": 179, + "red": 169 + }, + "percentage": 24.53 + }, + { + "rgb": { + "blue": 40, + "green": 25, + "red": 84 + }, + "percentage": 9.65 + }, + { + "rgb": { + "blue": 59, + "green": 70, + "red": 66 + }, + "percentage": 8.67 + }, + { + "rgb": { + "blue": 214, + "green": 185, + "red": 156 + }, + "percentage": 3.01 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "alt": "A photograph released by Ukrainian Presidential press service last July showing Gen. Valery Zaluzhny during a ceremony marking the 30th anniversary of Ukrainian independence.", + "height": 1152, + "width": 2048, + "url": "https://pbs.twimg.com/card_img/1755636388806983681/vhjgRQWo?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "alt": "A photograph released by Ukrainian Presidential press service last July showing Gen. Valery Zaluzhny during a ceremony marking the 30th anniversary of Ukrainian independence.", + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755636388806983681/vhjgRQWo?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 59, + "green": 66, + "red": 89 + }, + "percentage": 33.9 + }, + { + "rgb": { + "blue": 180, + "green": 179, + "red": 169 + }, + "percentage": 24.53 + }, + { + "rgb": { + "blue": 40, + "green": 25, + "red": 84 + }, + "percentage": 9.65 + }, + { + "rgb": { + "blue": 59, + "green": 70, + "red": 66 + }, + "percentage": 8.67 + }, + { + "rgb": { + "blue": 214, + "green": 185, + "red": 156 + }, + "percentage": 3.01 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "alt": "A photograph released by Ukrainian Presidential press service last July showing Gen. Valery Zaluzhny during a ceremony marking the 30th anniversary of Ukrainian independence.", + "height": 1152, + "width": 2048, + "url": "https://pbs.twimg.com/card_img/1755636388806983681/vhjgRQWo?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/nBzdqzyfz5", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "alt": "A photograph released by Ukrainian Presidential press service last July showing Gen. Valery Zaluzhny during a ceremony marking the 30th anniversary of Ukrainian independence.", + "height": 1688, + "width": 3000, + "url": "https://pbs.twimg.com/card_img/1755636388806983681/vhjgRQWo?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/nBzdqzyfz5", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjo4MDcwOTU=", + "rest_id": "807095", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Fri Mar 02 20:41:42 +0000 2007", + "default_profile": false, + "default_profile_image": false, + "description": "News tips? Share them here: https://t.co/ghL9OoYKMM", + "entities": { + "description": { + "urls": [ + { + "display_url": "nyti.ms/2FVHq9v", + "expanded_url": "http://nyti.ms/2FVHq9v", + "url": "https://t.co/ghL9OoYKMM", + "indices": [ + 28, + 51 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "nytimes.com", + "expanded_url": "http://www.nytimes.com/", + "url": "http://t.co/ahvuWqicF9", + "indices": [ + 0, + 22 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 18661, + "followers_count": 55232006, + "friends_count": 877, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 216205, + "location": "New York City", + "media_count": 69096, + "name": "The New York Times", + "normal_followers_count": 55232006, + "pinned_tweet_ids_str": [ + "1593683578684047365" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/807095/1584666392", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1098244578472280064/gjkVMelR_normal.png", + "profile_interstitial_type": "", + "screen_name": "nytimes", + "statuses_count": 535818, + "translator_type": "none", + "url": "http://t.co/ahvuWqicF9", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756270519169478941" + ], + "editable_until_msecs": "1707566096000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "431", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "created_at": "Sat Feb 10 10:54:56 +0000 2024", + "conversation_id_str": "1756270519169478941", + "display_text_range": [ + 0, + 277 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "nytimes.com/2024/02/08/wor…", + "expanded_url": "https://www.nytimes.com/2024/02/08/world/europe/zelensky-general-valery-zaluzhny-ukraine-military.html?smid=tw-share", + "url": "https://t.co/nBzdqzyfz5", + "indices": [ + 254, + 277 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 1, + "favorited": false, + "full_text": "\"The upheaval comes at a difficult moment for Ukraine in the war, amid intensified Russian attacks, partisan wrangling in the United States over providing aid to the government in Kyiv and the tensions between Ukraine’s civilian and military leadership\" https://t.co/nBzdqzyfz5", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "70664371", + "id_str": "1756270519169478941" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756268108690411998", + "sortIndex": "1756309211907620822", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756268108690411998", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", + "rest_id": "1462548977367359490", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Nov 21 22:30:41 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", + "entities": { + "description": { + "urls": [ + { + "display_url": "kyivindependent.com/membership/", + "expanded_url": "http://kyivindependent.com/membership/", + "url": "https://t.co/jsQiFkoveH", + "indices": [ + 17, + 40 + ] + }, + { + "display_url": "kyivindependent.com/membership/?in…", + "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", + "url": "https://t.co/eNwj76xa7a", + "indices": [ + 60, + 83 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "kyivindependent.com", + "expanded_url": "http://kyivindependent.com", + "url": "https://t.co/WZvsaFpT20", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 307, + "followers_count": 2090013, + "friends_count": 27, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 20010, + "location": "Kyiv", + "media_count": 3970, + "name": "The Kyiv Independent", + "normal_followers_count": 2090013, + "pinned_tweet_ids_str": [ + "1611768917151862784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivIndependent", + "statuses_count": 36943, + "translator_type": "none", + "url": "https://t.co/WZvsaFpT20", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1595086441079513088", + "professional_type": "Business", + "category": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/xBy69JSm1f", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756259785899470849/94naQSRs?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 150, + "width": 225, + "url": "https://pbs.twimg.com/card_img/1756259785899470849/94naQSRs?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "\"If (Russian President Vladimir) Putin wins in Ukraine, there is no guarantee that Russian aggression will not spread to other countries,\" NATO Secretary General Jens Stoltenberg warned.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "kyivindependent.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 320, + "width": 480, + "url": "https://pbs.twimg.com/card_img/1756259785899470849/94naQSRs?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756259785899470849/94naQSRs?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 683, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756259785899470849/94naQSRs?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "1462548977367359490", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756259785899470849/94naQSRs?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756259785899470849/94naQSRs?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 67, + "width": 100, + "url": "https://pbs.twimg.com/card_img/1756259785899470849/94naQSRs?format=jpg&name=100x100" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 683, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756259785899470849/94naQSRs?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 683, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756259785899470849/94naQSRs?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "kyivindependent.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756259785899470849/94naQSRs?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 195, + "green": 96, + "red": 68 + }, + "percentage": 69.43 + }, + { + "rgb": { + "blue": 47, + "green": 27, + "red": 26 + }, + "percentage": 19.13 + }, + { + "rgb": { + "blue": 183, + "green": 152, + "red": 153 + }, + "percentage": 5.23 + }, + { + "rgb": { + "blue": 107, + "green": 99, + "red": 151 + }, + "percentage": 2.47 + }, + { + "rgb": { + "blue": 136, + "green": 87, + "red": 74 + }, + "percentage": 1.21 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Stoltenberg: West must be prepared for 'decades-long confrontation' with Russia", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 195, + "green": 96, + "red": 68 + }, + "percentage": 69.43 + }, + { + "rgb": { + "blue": 47, + "green": 27, + "red": 26 + }, + "percentage": 19.13 + }, + { + "rgb": { + "blue": 183, + "green": 152, + "red": 153 + }, + "percentage": 5.23 + }, + { + "rgb": { + "blue": 107, + "green": 99, + "red": 151 + }, + "percentage": 2.47 + }, + { + "rgb": { + "blue": 136, + "green": 87, + "red": 74 + }, + "percentage": 1.21 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 683, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756259785899470849/94naQSRs?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756259785899470849/94naQSRs?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 195, + "green": 96, + "red": 68 + }, + "percentage": 69.43 + }, + { + "rgb": { + "blue": 47, + "green": 27, + "red": 26 + }, + "percentage": 19.13 + }, + { + "rgb": { + "blue": 183, + "green": 152, + "red": 153 + }, + "percentage": 5.23 + }, + { + "rgb": { + "blue": 107, + "green": 99, + "red": 151 + }, + "percentage": 2.47 + }, + { + "rgb": { + "blue": 136, + "green": 87, + "red": 74 + }, + "percentage": 1.21 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 683, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756259785899470849/94naQSRs?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/xBy69JSm1f", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 683, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756259785899470849/94naQSRs?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/xBy69JSm1f", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", + "rest_id": "1462548977367359490", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Nov 21 22:30:41 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", + "entities": { + "description": { + "urls": [ + { + "display_url": "kyivindependent.com/membership/", + "expanded_url": "http://kyivindependent.com/membership/", + "url": "https://t.co/jsQiFkoveH", + "indices": [ + 17, + 40 + ] + }, + { + "display_url": "kyivindependent.com/membership/?in…", + "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", + "url": "https://t.co/eNwj76xa7a", + "indices": [ + 60, + 83 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "kyivindependent.com", + "expanded_url": "http://kyivindependent.com", + "url": "https://t.co/WZvsaFpT20", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 307, + "followers_count": 2090013, + "friends_count": 27, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 20010, + "location": "Kyiv", + "media_count": 3970, + "name": "The Kyiv Independent", + "normal_followers_count": 2090013, + "pinned_tweet_ids_str": [ + "1611768917151862784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivIndependent", + "statuses_count": 36943, + "translator_type": "none", + "url": "https://t.co/WZvsaFpT20", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1595086441079513088", + "professional_type": "Business", + "category": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756268108690411998" + ], + "editable_until_msecs": "1707565521000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "57798", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 10, + "bookmarked": false, + "created_at": "Sat Feb 10 10:45:21 +0000 2024", + "conversation_id_str": "1756268108690411998", + "display_text_range": [ + 0, + 279 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "kyivindependent.com/stoltenberg-we…", + "expanded_url": "https://kyivindependent.com/stoltenberg-west-must-be-prepared-for-decades-long-confrontation-with-russia/", + "url": "https://t.co/xBy69JSm1f", + "indices": [ + 256, + 279 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 687, + "favorited": false, + "full_text": "⚡️Stoltenberg: West must be prepared for 'decades-long confrontation' with Russia.\n\nThe West does not seek war with Russia, but should still \"prepare ourselves for a confrontation that could last decades,\" the NATO Secretary-General told Welt Am Sonntag.\n\nhttps://t.co/xBy69JSm1f", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 11, + "reply_count": 30, + "retweet_count": 133, + "retweeted": false, + "user_id_str": "1462548977367359490", + "id_str": "1756268108690411998" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756268018638709195", + "sortIndex": "1756309211907620821", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756268018638709195", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjMwMTg2NTM=", + "rest_id": "163018653", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Jul 05 09:44:27 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Ambassador-at-large @MFA_Ukraine, Amb to Austria (2014-2021). Author of “Ukraine vs Darkness. Undiplomatic Thoughts”. Personal account.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amazon.com/Ukraine-vs-Dar…", + "expanded_url": "https://www.amazon.com/Ukraine-vs-Darkness-Undiplomatic-Ukrainian-ebook/dp/B08WKF3B2K", + "url": "https://t.co/ERA9Ntt061", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 28758, + "followers_count": 264429, + "friends_count": 1248, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 4354, + "location": "Kyiv", + "media_count": 6624, + "name": "olexander scherba🇺🇦", + "normal_followers_count": 264429, + "pinned_tweet_ids_str": [ + "1396956590713020416" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/163018653/1646220178", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671642770549956608/yR9Is6BD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "olex_scherba", + "statuses_count": 40000, + "translator_type": "none", + "url": "https://t.co/ERA9Ntt061", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1696586841602834861", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756268018638709195" + ], + "editable_until_msecs": "1707565500000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "20060", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756224749212942570", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjMwMTg2NTM=", + "rest_id": "163018653", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Jul 05 09:44:27 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Ambassador-at-large @MFA_Ukraine, Amb to Austria (2014-2021). Author of “Ukraine vs Darkness. Undiplomatic Thoughts”. Personal account.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amazon.com/Ukraine-vs-Dar…", + "expanded_url": "https://www.amazon.com/Ukraine-vs-Darkness-Undiplomatic-Ukrainian-ebook/dp/B08WKF3B2K", + "url": "https://t.co/ERA9Ntt061", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 28758, + "followers_count": 264429, + "friends_count": 1248, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 4354, + "location": "Kyiv", + "media_count": 6624, + "name": "olexander scherba🇺🇦", + "normal_followers_count": 264429, + "pinned_tweet_ids_str": [ + "1396956590713020416" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/163018653/1646220178", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671642770549956608/yR9Is6BD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "olex_scherba", + "statuses_count": 40000, + "translator_type": "none", + "url": "https://t.co/ERA9Ntt061", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1696586841602834861", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756224749212942570" + ], + "editable_until_msecs": "1707555183000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "48650", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPad", + "legacy": { + "bookmark_count": 9, + "bookmarked": false, + "created_at": "Sat Feb 10 07:53:03 +0000 2024", + "conversation_id_str": "1756224749212942570", + "display_text_range": [ + 0, + 281 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 27, + 35 + ], + "text": "Kharkiv" + }, + { + "indices": [ + 264, + 281 + ], + "text": "StandWithUkraine" + } + ], + "media": [ + { + "display_url": "pic.twitter.com/QPJNFWlPZj", + "expanded_url": "https://twitter.com/olex_scherba/status/1756224749212942570/video/1", + "id_str": "1756224695198732288", + "indices": [ + 282, + 305 + ], + "media_key": "13_1756224695198732288", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1756224695198732288/img/7dCf9W9obJpMGFyD.jpg", + "type": "video", + "url": "https://t.co/QPJNFWlPZj", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 352, + "w": 640, + "resize": "fit" + }, + "medium": { + "h": 352, + "w": 640, + "resize": "fit" + }, + "small": { + "h": 352, + "w": 640, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 352, + "width": 640, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 20, + 11 + ], + "duration_millis": 57466, + "variants": [ + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756224695198732288/vid/avc1/490x270/UvlShYCYtgP7wwBX.mp4?tag=14" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1756224695198732288/pl/JzS7ZAWfW-TNgU78.m3u8?tag=14&container=cmaf" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756224695198732288/vid/avc1/640x352/VlVDGaPzqfoVPowb.mp4?tag=14" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/QPJNFWlPZj", + "expanded_url": "https://twitter.com/olex_scherba/status/1756224749212942570/video/1", + "id_str": "1756224695198732288", + "indices": [ + 282, + 305 + ], + "media_key": "13_1756224695198732288", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1756224695198732288/img/7dCf9W9obJpMGFyD.jpg", + "type": "video", + "url": "https://t.co/QPJNFWlPZj", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 352, + "w": 640, + "resize": "fit" + }, + "medium": { + "h": 352, + "w": 640, + "resize": "fit" + }, + "small": { + "h": 352, + "w": 640, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 352, + "width": 640, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 20, + 11 + ], + "duration_millis": 57466, + "variants": [ + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756224695198732288/vid/avc1/490x270/UvlShYCYtgP7wwBX.mp4?tag=14" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1756224695198732288/pl/JzS7ZAWfW-TNgU78.m3u8?tag=14&container=cmaf" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756224695198732288/vid/avc1/640x352/VlVDGaPzqfoVPowb.mp4?tag=14" + } + ] + } + } + ] + }, + "favorite_count": 487, + "favorited": false, + "full_text": "russian-iranian drones hit #Kharkiv overnight. Like every night. A family of 5 burnt alive. Including children of seven, four and a new-born.\n\nAnother sign for peace negotiations? All Ukraine needs to do is feed putin some more of its land, people & freedom.\n\n#StandWithUkraine https://t.co/QPJNFWlPZj", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 31, + "reply_count": 36, + "retweet_count": 268, + "retweeted": false, + "user_id_str": "163018653", + "id_str": "1756224749212942570" + } + } + }, + "legacy": { + "bookmark_count": 13, + "bookmarked": false, + "created_at": "Sat Feb 10 10:45:00 +0000 2024", + "conversation_id_str": "1756268018638709195", + "display_text_range": [ + 0, + 204 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 187, + 204 + ], + "text": "StandWithUkraine" + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 610, + "favorited": false, + "full_text": "Dad was killed instantly. Mom grabbed the kids and tried to get out. But the fire was faster.\n\nThis is how they found them: one charcoaled body grabbing three small ones.\n\nDamn russia… \n\n#StandWithUkraine", + "is_quote_status": true, + "lang": "en", + "quote_count": 21, + "quoted_status_id_str": "1756224749212942570", + "quoted_status_permalink": { + "url": "https://t.co/UMfPH0E8hM", + "expanded": "https://twitter.com/olex_scherba/status/1756224749212942570", + "display": "twitter.com/olex_scherba/s…" + }, + "reply_count": 31, + "retweet_count": 353, + "retweeted": false, + "user_id_str": "163018653", + "id_str": "1756268018638709195" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756266494722269532", + "sortIndex": "1756309211907620820", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756266494722269532", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMjI2MTEzMzcxNDgyODA4MzIx", + "rest_id": "1226113371482808321", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Feb 08 12:00:26 +0000 2020", + "default_profile": true, + "default_profile_image": false, + "description": "Sprecher des Auswärtigen Amts (@AuswaertigesAmt) / Spokesperson of the Federal Foreign Office (@GermanyDiplo) / All views are my own. RT ≠ endorsement. 🇩🇪🇪🇺", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "diplo.de", + "expanded_url": "http://www.diplo.de", + "url": "https://t.co/5TkOoKgTQG", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 19284, + "followers_count": 13163, + "friends_count": 2544, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 215, + "location": "Berlin, Deutschland", + "media_count": 667, + "name": "Sebastian Fischer", + "normal_followers_count": 13163, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1226113371482808321/1657659785", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1477691921988562952/Gl5efsml_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "SFischer_EU", + "statuses_count": 7450, + "translator_type": "none", + "url": "https://t.co/5TkOoKgTQG", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756266494722269532" + ], + "editable_until_msecs": "1707565136852", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 10:38:56 +0000 2024", + "conversation_id_str": "1756266494722269532", + "display_text_range": [ + 0, + 139 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1469264387512979461", + "name": "Außenministerin Annalena Baerbock", + "screen_name": "ABaerbock", + "indices": [ + 3, + 13 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @ABaerbock: Israel muss sich gegen den Hamas-Terror verteidigen, aber dabei das Leid der Zivilbevölkerung größtmöglich lindern. Deshalb…", + "is_quote_status": false, + "lang": "de", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 24, + "retweeted": false, + "user_id_str": "1226113371482808321", + "id_str": "1756266494722269532", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756262897884270674", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDY5MjY0Mzg3NTEyOTc5NDYx", + "rest_id": "1469264387512979461", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Fri Dec 10 11:15:44 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Offizieller Twitter Account von Außenministerin Annalena Baerbock │ Official Twitter Account of Foreign Minister Annalena Baerbock", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "auswaertiges-amt.de", + "expanded_url": "http://www.auswaertiges-amt.de", + "url": "https://t.co/bR6R0XD5I5", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 142, + "followers_count": 677968, + "friends_count": 106, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1863, + "location": "Berlin", + "media_count": 98, + "name": "Außenministerin Annalena Baerbock", + "normal_followers_count": 677968, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1469264387512979461/1647890690", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1555103756143960064/HTGWw8Pc_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ABaerbock", + "statuses_count": 632, + "translator_type": "none", + "url": "https://t.co/bR6R0XD5I5", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756262897884270674" + ], + "editable_until_msecs": "1707564279000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "count": "20694", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 7, + "bookmarked": false, + "created_at": "Sat Feb 10 10:24:39 +0000 2024", + "conversation_id_str": "1756262896458174514", + "display_text_range": [ + 0, + 273 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 317, + "favorited": false, + "full_text": "Israel muss sich gegen den Hamas-Terror verteidigen, aber dabei das Leid der Zivilbevölkerung größtmöglich lindern. Deshalb braucht es eine weitere Feuerpause, auch damit die Geiseln endlich freikommen. Den Weg dahin werde ich nächste Woche erneut in Israel besprechen. 2/2", + "in_reply_to_screen_name": "ABaerbock", + "in_reply_to_status_id_str": "1756262896458174514", + "in_reply_to_user_id_str": "1469264387512979461", + "is_quote_status": false, + "lang": "de", + "quote_count": 18, + "reply_count": 131, + "retweet_count": 24, + "retweeted": false, + "user_id_str": "1469264387512979461", + "id_str": "1756262897884270674" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756266480704839827", + "sortIndex": "1756309211907620819", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756266480704839827", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMjI2MTEzMzcxNDgyODA4MzIx", + "rest_id": "1226113371482808321", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Feb 08 12:00:26 +0000 2020", + "default_profile": true, + "default_profile_image": false, + "description": "Sprecher des Auswärtigen Amts (@AuswaertigesAmt) / Spokesperson of the Federal Foreign Office (@GermanyDiplo) / All views are my own. RT ≠ endorsement. 🇩🇪🇪🇺", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "diplo.de", + "expanded_url": "http://www.diplo.de", + "url": "https://t.co/5TkOoKgTQG", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 19284, + "followers_count": 13163, + "friends_count": 2544, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 215, + "location": "Berlin, Deutschland", + "media_count": 667, + "name": "Sebastian Fischer", + "normal_followers_count": 13163, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1226113371482808321/1657659785", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1477691921988562952/Gl5efsml_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "SFischer_EU", + "statuses_count": 7450, + "translator_type": "none", + "url": "https://t.co/5TkOoKgTQG", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756266480704839827" + ], + "editable_until_msecs": "1707565133510", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 10:38:53 +0000 2024", + "conversation_id_str": "1756266480704839827", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 26, + 32 + ], + "text": "Rafah" + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1469264387512979461", + "name": "Außenministerin Annalena Baerbock", + "screen_name": "ABaerbock", + "indices": [ + 3, + 13 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @ABaerbock: Die Not in #Rafah ist schon jetzt unfassbar. 1,3 Mio. Menschen suchen dort auf engsten Raum Schutz vor den Kämpfen. Eine Off…", + "is_quote_status": false, + "lang": "de", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 101, + "retweeted": false, + "user_id_str": "1226113371482808321", + "id_str": "1756266480704839827", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756262896458174514", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDY5MjY0Mzg3NTEyOTc5NDYx", + "rest_id": "1469264387512979461", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Fri Dec 10 11:15:44 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Offizieller Twitter Account von Außenministerin Annalena Baerbock │ Official Twitter Account of Foreign Minister Annalena Baerbock", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "auswaertiges-amt.de", + "expanded_url": "http://www.auswaertiges-amt.de", + "url": "https://t.co/bR6R0XD5I5", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 142, + "followers_count": 677968, + "friends_count": 106, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1863, + "location": "Berlin", + "media_count": 98, + "name": "Außenministerin Annalena Baerbock", + "normal_followers_count": 677968, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1469264387512979461/1647890690", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1555103756143960064/HTGWw8Pc_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ABaerbock", + "statuses_count": 632, + "translator_type": "none", + "url": "https://t.co/bR6R0XD5I5", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756262896458174514" + ], + "editable_until_msecs": "1707564278000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "count": "115418", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 29, + "bookmarked": false, + "created_at": "Sat Feb 10 10:24:38 +0000 2024", + "conversation_id_str": "1756262896458174514", + "display_text_range": [ + 0, + 270 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 11, + 17 + ], + "text": "Rafah" + }, + { + "indices": [ + 225, + 230 + ], + "text": "Gaza" + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 718, + "favorited": false, + "full_text": "Die Not in #Rafah ist schon jetzt unfassbar. 1,3 Mio. Menschen suchen dort auf engsten Raum Schutz vor den Kämpfen. Eine Offensive der israelischen Armee auf Rafah wäre eine humanitäre Katastrophe mit Ansage. Die Menschen in #Gaza können sich nicht in Luft auflösen. 1/2", + "is_quote_status": false, + "lang": "de", + "quote_count": 51, + "reply_count": 482, + "retweet_count": 101, + "retweeted": false, + "user_id_str": "1469264387512979461", + "id_str": "1756262896458174514" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756263118475284755", + "sortIndex": "1756309211907620818", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756263118475284755", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyOTAxMDcxMA==", + "rest_id": "29010710", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sun Apr 05 16:13:47 +0000 2009", + "default_profile": true, + "default_profile_image": false, + "description": "Nationality: journalist. Freelancer, made in the BBC. Reporting what you need to know, not what you want to hear. Also, Lonely Planet guides.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 21173, + "followers_count": 71287, + "friends_count": 4541, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2089, + "location": "", + "media_count": 5873, + "name": "Leonid ХВ Ragozin", + "normal_followers_count": 71287, + "pinned_tweet_ids_str": [ + "1747949666581287074" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/29010710/1610454802", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1098307078991593474/vBl5zWMc_normal.png", + "profile_interstitial_type": "", + "screen_name": "leonidragozin", + "statuses_count": 64179, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1630527445676818432", + "professional_type": "Business", + "category": [ + { + "id": 579, + "name": "Media & News", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "card": { + "rest_id": "https://t.co/0Pl1papNbF", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756214442201579520/mPc6zL0a?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 200, + "width": 400, + "url": "https://pbs.twimg.com/card_img/1756214442201579520/mPc6zL0a?format=jpg&name=400x400" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "У п’ятницю, 9 лютого, президент України Володимир Зеленський змінив склад Ради національної безпеки та оборони.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "nv.ua", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 300, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756214442201579520/mPc6zL0a?format=jpg&name=600x600" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756214442201579520/mPc6zL0a?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 450, + "width": 900, + "url": "https://pbs.twimg.com/card_img/1756214442201579520/mPc6zL0a?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "2517140557", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756214442201579520/mPc6zL0a?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756214442201579520/mPc6zL0a?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 72, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1756214442201579520/mPc6zL0a?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 450, + "width": 900, + "url": "https://pbs.twimg.com/card_img/1756214442201579520/mPc6zL0a?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 450, + "width": 900, + "url": "https://pbs.twimg.com/card_img/1756214442201579520/mPc6zL0a?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "nv.ua", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756214442201579520/mPc6zL0a?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 48, + "green": 76, + "red": 133 + }, + "percentage": 37.76 + }, + { + "rgb": { + "blue": 21, + "green": 20, + "red": 27 + }, + "percentage": 24.8 + }, + { + "rgb": { + "blue": 149, + "green": 160, + "red": 192 + }, + "percentage": 15.88 + }, + { + "rgb": { + "blue": 226, + "green": 195, + "red": 191 + }, + "percentage": 6.54 + }, + { + "rgb": { + "blue": 113, + "green": 140, + "red": 194 + }, + "percentage": 5.73 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Зеленський змінив склад РНБО, вивів Залужного — указ", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 48, + "green": 76, + "red": 133 + }, + "percentage": 37.76 + }, + { + "rgb": { + "blue": 21, + "green": 20, + "red": 27 + }, + "percentage": 24.8 + }, + { + "rgb": { + "blue": 149, + "green": 160, + "red": 192 + }, + "percentage": 15.88 + }, + { + "rgb": { + "blue": 226, + "green": 195, + "red": 191 + }, + "percentage": 6.54 + }, + { + "rgb": { + "blue": 113, + "green": 140, + "red": 194 + }, + "percentage": 5.73 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 450, + "width": 900, + "url": "https://pbs.twimg.com/card_img/1756214442201579520/mPc6zL0a?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756214442201579520/mPc6zL0a?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 48, + "green": 76, + "red": 133 + }, + "percentage": 37.76 + }, + { + "rgb": { + "blue": 21, + "green": 20, + "red": 27 + }, + "percentage": 24.8 + }, + { + "rgb": { + "blue": 149, + "green": 160, + "red": 192 + }, + "percentage": 15.88 + }, + { + "rgb": { + "blue": 226, + "green": 195, + "red": 191 + }, + "percentage": 6.54 + }, + { + "rgb": { + "blue": 113, + "green": 140, + "red": 194 + }, + "percentage": 5.73 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 450, + "width": 900, + "url": "https://pbs.twimg.com/card_img/1756214442201579520/mPc6zL0a?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/0Pl1papNbF", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 450, + "width": 900, + "url": "https://pbs.twimg.com/card_img/1756214442201579520/mPc6zL0a?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/0Pl1papNbF", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoyNTE3MTQwNTU3", + "rest_id": "2517140557", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Fri May 23 06:50:48 +0000 2014", + "default_profile": false, + "default_profile_image": false, + "description": "Telegram: https://t.co/yApQ5nMclj", + "entities": { + "description": { + "urls": [ + { + "display_url": "t.me/nvua_official", + "expanded_url": "http://t.me/nvua_official", + "url": "https://t.co/yApQ5nMclj", + "indices": [ + 10, + 33 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "nv.ua", + "expanded_url": "http://nv.ua", + "url": "https://t.co/SMdVji8jdK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 199, + "followers_count": 106454, + "friends_count": 589, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 772, + "location": "Україна", + "media_count": 64216, + "name": "NV", + "normal_followers_count": 106454, + "pinned_tweet_ids_str": [ + "1504509037743951875" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2517140557/1672390866", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630880855093653504/fQrY5iz7_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "tweetsNV", + "statuses_count": 315011, + "translator_type": "none", + "url": "https://t.co/SMdVji8jdK", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1501417732738363399", + "professional_type": "Business", + "category": [ + { + "id": 580, + "name": "Media & News Company", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756263118475284755" + ], + "editable_until_msecs": "1707564331000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1864", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 10:25:31 +0000 2024", + "conversation_id_str": "1756263118475284755", + "display_text_range": [ + 0, + 215 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "nv.ua/ukr/ukraine/po…", + "expanded_url": "https://nv.ua/ukr/ukraine/politics/zelenskiy-zminiv-sklad-rnbo-ukaz-50391576.html", + "url": "https://t.co/0Pl1papNbF", + "indices": [ + 192, + 215 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 9, + "favorited": false, + "full_text": "Zelensky has removed Zaluzhny from the Security Council, so he is not becoming its chief apparently. Not clear in what capacity he could stay in Zelensky’s team, as promised by the president.\nhttps://t.co/0Pl1papNbF", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 1, + "retweet_count": 3, + "retweeted": false, + "user_id_str": "29010710", + "id_str": "1756263118475284755" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756260505084153925", + "sortIndex": "1756309211907620817", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756260505084153925", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozMTE4OTkxNTU=", + "rest_id": "311899155", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/StateDept", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1653450164210630659/oPRqz0j6_bigger.jpg" + }, + "description": "Department of State", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Jun 06 07:44:22 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "The Embassy of the United States of America in Kyiv. For a first-hand view of the Embassy’s work, follow @USAmbKyiv. Terms of use: https://t.co/ZQBzokuAMZ", + "entities": { + "description": { + "urls": [ + { + "display_url": "state.gov/tou", + "expanded_url": "http://state.gov/tou", + "url": "https://t.co/ZQBzokuAMZ", + "indices": [ + 131, + 154 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "ua.usembassy.gov/u-s-citizen-se…", + "expanded_url": "https://ua.usembassy.gov/u-s-citizen-services/security-and-travel-information/", + "url": "https://t.co/qpYDSDDtLr", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 4561, + "followers_count": 230524, + "friends_count": 411, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3575, + "location": "Kyiv, Ukraine", + "media_count": 6239, + "name": "U.S. Embassy Kyiv", + "normal_followers_count": 230524, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/311899155/1650023136", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1165895902717980672/LzMvlCno_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "USEmbassyKyiv", + "statuses_count": 18403, + "translator_type": "none", + "url": "https://t.co/qpYDSDDtLr", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1515987902131589123", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756260505084153925" + ], + "editable_until_msecs": "1707563708811", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 10:15:08 +0000 2024", + "conversation_id_str": "1756260505084153925", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1528996804951478273", + "name": "Ambassador Bridget A. Brink", + "screen_name": "USAmbKyiv", + "indices": [ + 3, + 13 + ] + }, + { + "id_str": "2700690835", + "name": "UNHCR Ukraine", + "screen_name": "UNHCRUkraine", + "indices": [ + 115, + 128 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @USAmbKyiv: Вчора ввечері я зустрілась з провідними зовнішньополітичними експертами, щоб подякувати їм за візит @UNHCRUkraine в Україну,…", + "is_quote_status": false, + "lang": "uk", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 15, + "retweeted": false, + "user_id_str": "311899155", + "id_str": "1756260505084153925", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756260426751320088", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTI4OTk2ODA0OTUxNDc4Mjcz", + "rest_id": "1528996804951478273", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/StateDept", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1653450164210630659/oPRqz0j6_bigger.jpg" + }, + "description": "Department of State", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue May 24 07:11:21 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "United States Ambassador to Ukraine", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ua.usembassy.gov/our-relationsh…", + "expanded_url": "https://ua.usembassy.gov/our-relationship/our-ambassador/", + "url": "https://t.co/pOYsF2er0t", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 1575, + "followers_count": 89813, + "friends_count": 194, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 691, + "location": "Ukraine", + "media_count": 983, + "name": "Ambassador Bridget A. Brink", + "normal_followers_count": 89813, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1528996804951478273/1654092211", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1531008733916057601/5wVHzk_y_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "USAmbKyiv", + "statuses_count": 1895, + "translator_type": "none", + "url": "https://t.co/pOYsF2er0t", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756260426751320088" + ], + "editable_until_msecs": "1707563690000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "count": "3340", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE3NTYyNjA0MjY2MDg3MTM3Mjg=", + "text": "Вчора ввечері я зустрілась з провідними зовнішньополітичними експертами, щоб подякувати їм за візит @UNHCRUkraine в Україну, в тому числі до прифронтових міст. Найкращий спосіб зрозуміти, чому Україна повинна перемогти у війні, — це побачити щоденну відвагу українського народу, який бореться за свою свободу.\n\nМій меседж: Підтримувати Україну означає підтримувати наші цінності та наші основні інтереси національної безпеки, зокрема, не дозволити Росії змінити кордони Європи силою.\n\nПідтримка України означає відповідальність за злодіяння Росії в Україні:\n\nпонад 100 000 воєнних злочинів\nпонад 500 вбитих дітей\nтисячі викрадених дітей \n\nПідтримка України означає підтримку десятиліть двопартійної політики для Європи, \"цілісної, вільної та мирної\".\n\nПідтримка України означає підтримку глобальної продовольчої безпеки та свободи судноплавства в Чорному морі. \n\nПідтримка України означає підтримку інновацій і технологій в управлінні та військових технологій.\n\nПідтримка України означає потужніші, безпечніші, стабільні та процвітаючі Сполучені Штати та Європу.\n\nПідтримка України — це єдиний варіант для всіх демократичних і волелюбних країн.", + "entity_set": { + "hashtags": [], + "symbols": [], + "urls": [], + "user_mentions": [ + { + "id_str": "2700690835", + "name": "UNHCR Ukraine", + "screen_name": "UNHCRUkraine", + "indices": [ + 100, + 113 + ] + } + ] + }, + "richtext": { + "richtext_tags": [] + }, + "media": { + "inline_media": [] + } + } + } + }, + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "created_at": "Sat Feb 10 10:14:50 +0000 2024", + "conversation_id_str": "1756258706692420029", + "display_text_range": [ + 0, + 279 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/v0xVcOkJrL", + "expanded_url": "https://twitter.com/USAmbKyiv/status/1756260426751320088/photo/1", + "id_str": "1756258755430285312", + "indices": [ + 280, + 303 + ], + "media_key": "3_1756258755430285312", + "media_url_https": "https://pbs.twimg.com/media/GF98CHMXgAAKNvr.jpg", + "type": "photo", + "url": "https://t.co/v0xVcOkJrL", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 620, + "y": 304, + "h": 71, + "w": 71 + }, + { + "x": 845, + "y": 325, + "h": 71, + "w": 71 + }, + { + "x": 754, + "y": 293, + "h": 79, + "w": 79 + }, + { + "x": 1096, + "y": 314, + "h": 95, + "w": 95 + }, + { + "x": 526, + "y": 325, + "h": 98, + "w": 98 + }, + { + "x": 893, + "y": 328, + "h": 101, + "w": 101 + }, + { + "x": 190, + "y": 348, + "h": 84, + "w": 84 + }, + { + "x": 406, + "y": 357, + "h": 81, + "w": 81 + }, + { + "x": 715, + "y": 379, + "h": 87, + "w": 87 + }, + { + "x": 1167, + "y": 395, + "h": 106, + "w": 106 + }, + { + "x": 315, + "y": 426, + "h": 92, + "w": 92 + }, + { + "x": 35, + "y": 371, + "h": 106, + "w": 106 + }, + { + "x": 1417, + "y": 323, + "h": 123, + "w": 123 + }, + { + "x": 534, + "y": 403, + "h": 100, + "w": 100 + } + ] + }, + "medium": { + "faces": [ + { + "x": 465, + "y": 228, + "h": 53, + "w": 53 + }, + { + "x": 633, + "y": 243, + "h": 53, + "w": 53 + }, + { + "x": 565, + "y": 219, + "h": 59, + "w": 59 + }, + { + "x": 822, + "y": 235, + "h": 71, + "w": 71 + }, + { + "x": 394, + "y": 243, + "h": 73, + "w": 73 + }, + { + "x": 669, + "y": 246, + "h": 75, + "w": 75 + }, + { + "x": 142, + "y": 261, + "h": 63, + "w": 63 + }, + { + "x": 304, + "y": 267, + "h": 60, + "w": 60 + }, + { + "x": 536, + "y": 284, + "h": 65, + "w": 65 + }, + { + "x": 875, + "y": 296, + "h": 79, + "w": 79 + }, + { + "x": 236, + "y": 319, + "h": 69, + "w": 69 + }, + { + "x": 26, + "y": 278, + "h": 79, + "w": 79 + }, + { + "x": 1062, + "y": 242, + "h": 92, + "w": 92 + }, + { + "x": 400, + "y": 302, + "h": 75, + "w": 75 + } + ] + }, + "small": { + "faces": [ + { + "x": 263, + "y": 129, + "h": 30, + "w": 30 + }, + { + "x": 359, + "y": 138, + "h": 30, + "w": 30 + }, + { + "x": 320, + "y": 124, + "h": 33, + "w": 33 + }, + { + "x": 465, + "y": 133, + "h": 40, + "w": 40 + }, + { + "x": 223, + "y": 138, + "h": 41, + "w": 41 + }, + { + "x": 379, + "y": 139, + "h": 42, + "w": 42 + }, + { + "x": 80, + "y": 147, + "h": 35, + "w": 35 + }, + { + "x": 172, + "y": 151, + "h": 34, + "w": 34 + }, + { + "x": 303, + "y": 161, + "h": 36, + "w": 36 + }, + { + "x": 495, + "y": 167, + "h": 45, + "w": 45 + }, + { + "x": 133, + "y": 181, + "h": 39, + "w": 39 + }, + { + "x": 14, + "y": 157, + "h": 45, + "w": 45 + }, + { + "x": 602, + "y": 137, + "h": 52, + "w": 52 + }, + { + "x": 226, + "y": 171, + "h": 42, + "w": 42 + } + ] + }, + "orig": { + "faces": [ + { + "x": 620, + "y": 304, + "h": 71, + "w": 71 + }, + { + "x": 845, + "y": 325, + "h": 71, + "w": 71 + }, + { + "x": 754, + "y": 293, + "h": 79, + "w": 79 + }, + { + "x": 1096, + "y": 314, + "h": 95, + "w": 95 + }, + { + "x": 526, + "y": 325, + "h": 98, + "w": 98 + }, + { + "x": 893, + "y": 328, + "h": 101, + "w": 101 + }, + { + "x": 190, + "y": 348, + "h": 84, + "w": 84 + }, + { + "x": 406, + "y": 357, + "h": 81, + "w": 81 + }, + { + "x": 715, + "y": 379, + "h": 87, + "w": 87 + }, + { + "x": 1167, + "y": 395, + "h": 106, + "w": 106 + }, + { + "x": 315, + "y": 426, + "h": 92, + "w": 92 + }, + { + "x": 35, + "y": 371, + "h": 106, + "w": 106 + }, + { + "x": 1417, + "y": 323, + "h": 123, + "w": 123 + }, + { + "x": 534, + "y": 403, + "h": 100, + "w": 100 + } + ] + } + }, + "sizes": { + "large": { + "h": 1148, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 861, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 488, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1148, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1600, + "h": 896 + }, + { + "x": 104, + "y": 0, + "w": 1148, + "h": 1148 + }, + { + "x": 175, + "y": 0, + "w": 1007, + "h": 1148 + }, + { + "x": 391, + "y": 0, + "w": 574, + "h": 1148 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1148 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "2700690835", + "name": "UNHCR Ukraine", + "screen_name": "UNHCRUkraine", + "indices": [ + 100, + 113 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/v0xVcOkJrL", + "expanded_url": "https://twitter.com/USAmbKyiv/status/1756260426751320088/photo/1", + "id_str": "1756258755430285312", + "indices": [ + 280, + 303 + ], + "media_key": "3_1756258755430285312", + "media_url_https": "https://pbs.twimg.com/media/GF98CHMXgAAKNvr.jpg", + "type": "photo", + "url": "https://t.co/v0xVcOkJrL", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 620, + "y": 304, + "h": 71, + "w": 71 + }, + { + "x": 845, + "y": 325, + "h": 71, + "w": 71 + }, + { + "x": 754, + "y": 293, + "h": 79, + "w": 79 + }, + { + "x": 1096, + "y": 314, + "h": 95, + "w": 95 + }, + { + "x": 526, + "y": 325, + "h": 98, + "w": 98 + }, + { + "x": 893, + "y": 328, + "h": 101, + "w": 101 + }, + { + "x": 190, + "y": 348, + "h": 84, + "w": 84 + }, + { + "x": 406, + "y": 357, + "h": 81, + "w": 81 + }, + { + "x": 715, + "y": 379, + "h": 87, + "w": 87 + }, + { + "x": 1167, + "y": 395, + "h": 106, + "w": 106 + }, + { + "x": 315, + "y": 426, + "h": 92, + "w": 92 + }, + { + "x": 35, + "y": 371, + "h": 106, + "w": 106 + }, + { + "x": 1417, + "y": 323, + "h": 123, + "w": 123 + }, + { + "x": 534, + "y": 403, + "h": 100, + "w": 100 + } + ] + }, + "medium": { + "faces": [ + { + "x": 465, + "y": 228, + "h": 53, + "w": 53 + }, + { + "x": 633, + "y": 243, + "h": 53, + "w": 53 + }, + { + "x": 565, + "y": 219, + "h": 59, + "w": 59 + }, + { + "x": 822, + "y": 235, + "h": 71, + "w": 71 + }, + { + "x": 394, + "y": 243, + "h": 73, + "w": 73 + }, + { + "x": 669, + "y": 246, + "h": 75, + "w": 75 + }, + { + "x": 142, + "y": 261, + "h": 63, + "w": 63 + }, + { + "x": 304, + "y": 267, + "h": 60, + "w": 60 + }, + { + "x": 536, + "y": 284, + "h": 65, + "w": 65 + }, + { + "x": 875, + "y": 296, + "h": 79, + "w": 79 + }, + { + "x": 236, + "y": 319, + "h": 69, + "w": 69 + }, + { + "x": 26, + "y": 278, + "h": 79, + "w": 79 + }, + { + "x": 1062, + "y": 242, + "h": 92, + "w": 92 + }, + { + "x": 400, + "y": 302, + "h": 75, + "w": 75 + } + ] + }, + "small": { + "faces": [ + { + "x": 263, + "y": 129, + "h": 30, + "w": 30 + }, + { + "x": 359, + "y": 138, + "h": 30, + "w": 30 + }, + { + "x": 320, + "y": 124, + "h": 33, + "w": 33 + }, + { + "x": 465, + "y": 133, + "h": 40, + "w": 40 + }, + { + "x": 223, + "y": 138, + "h": 41, + "w": 41 + }, + { + "x": 379, + "y": 139, + "h": 42, + "w": 42 + }, + { + "x": 80, + "y": 147, + "h": 35, + "w": 35 + }, + { + "x": 172, + "y": 151, + "h": 34, + "w": 34 + }, + { + "x": 303, + "y": 161, + "h": 36, + "w": 36 + }, + { + "x": 495, + "y": 167, + "h": 45, + "w": 45 + }, + { + "x": 133, + "y": 181, + "h": 39, + "w": 39 + }, + { + "x": 14, + "y": 157, + "h": 45, + "w": 45 + }, + { + "x": 602, + "y": 137, + "h": 52, + "w": 52 + }, + { + "x": 226, + "y": 171, + "h": 42, + "w": 42 + } + ] + }, + "orig": { + "faces": [ + { + "x": 620, + "y": 304, + "h": 71, + "w": 71 + }, + { + "x": 845, + "y": 325, + "h": 71, + "w": 71 + }, + { + "x": 754, + "y": 293, + "h": 79, + "w": 79 + }, + { + "x": 1096, + "y": 314, + "h": 95, + "w": 95 + }, + { + "x": 526, + "y": 325, + "h": 98, + "w": 98 + }, + { + "x": 893, + "y": 328, + "h": 101, + "w": 101 + }, + { + "x": 190, + "y": 348, + "h": 84, + "w": 84 + }, + { + "x": 406, + "y": 357, + "h": 81, + "w": 81 + }, + { + "x": 715, + "y": 379, + "h": 87, + "w": 87 + }, + { + "x": 1167, + "y": 395, + "h": 106, + "w": 106 + }, + { + "x": 315, + "y": 426, + "h": 92, + "w": 92 + }, + { + "x": 35, + "y": 371, + "h": 106, + "w": 106 + }, + { + "x": 1417, + "y": 323, + "h": 123, + "w": 123 + }, + { + "x": 534, + "y": 403, + "h": 100, + "w": 100 + } + ] + } + }, + "sizes": { + "large": { + "h": 1148, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 861, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 488, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1148, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1600, + "h": 896 + }, + { + "x": 104, + "y": 0, + "w": 1148, + "h": 1148 + }, + { + "x": 175, + "y": 0, + "w": 1007, + "h": 1148 + }, + { + "x": 391, + "y": 0, + "w": 574, + "h": 1148 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1148 + } + ] + } + } + ] + }, + "favorite_count": 45, + "favorited": false, + "full_text": "Вчора ввечері я зустрілась з провідними зовнішньополітичними експертами, щоб подякувати їм за візит @UNHCRUkraine в Україну, в тому числі до прифронтових міст. Найкращий спосіб зрозуміти, чому Україна повинна перемогти у війні, — це побачити щоденну відвагу українського народу,… https://t.co/v0xVcOkJrL", + "in_reply_to_screen_name": "USAmbKyiv", + "in_reply_to_status_id_str": "1756258706692420029", + "in_reply_to_user_id_str": "1528996804951478273", + "is_quote_status": false, + "lang": "uk", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 15, + "retweeted": false, + "user_id_str": "1528996804951478273", + "id_str": "1756260426751320088" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756260480979550579", + "sortIndex": "1756309211907620816", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756260480979550579", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozMTE4OTkxNTU=", + "rest_id": "311899155", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/StateDept", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1653450164210630659/oPRqz0j6_bigger.jpg" + }, + "description": "Department of State", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Jun 06 07:44:22 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "The Embassy of the United States of America in Kyiv. For a first-hand view of the Embassy’s work, follow @USAmbKyiv. Terms of use: https://t.co/ZQBzokuAMZ", + "entities": { + "description": { + "urls": [ + { + "display_url": "state.gov/tou", + "expanded_url": "http://state.gov/tou", + "url": "https://t.co/ZQBzokuAMZ", + "indices": [ + 131, + 154 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "ua.usembassy.gov/u-s-citizen-se…", + "expanded_url": "https://ua.usembassy.gov/u-s-citizen-services/security-and-travel-information/", + "url": "https://t.co/qpYDSDDtLr", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 4561, + "followers_count": 230524, + "friends_count": 411, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3575, + "location": "Kyiv, Ukraine", + "media_count": 6239, + "name": "U.S. Embassy Kyiv", + "normal_followers_count": 230524, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/311899155/1650023136", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1165895902717980672/LzMvlCno_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "USEmbassyKyiv", + "statuses_count": 18403, + "translator_type": "none", + "url": "https://t.co/qpYDSDDtLr", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1515987902131589123", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756260480979550579" + ], + "editable_until_msecs": "1707563703064", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 10:15:03 +0000 2024", + "conversation_id_str": "1756260480979550579", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1528996804951478273", + "name": "Ambassador Bridget A. Brink", + "screen_name": "USAmbKyiv", + "indices": [ + 3, + 13 + ] + }, + { + "id_str": "2700690835", + "name": "UNHCR Ukraine", + "screen_name": "UNHCRUkraine", + "indices": [ + 88, + 101 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @USAmbKyiv: Last night I met with top foreign policy experts to thank them for their @UNHCRUkraine visit to Ukraine, including to frontl…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 61, + "retweeted": false, + "user_id_str": "311899155", + "id_str": "1756260480979550579", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756258706692420029", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTI4OTk2ODA0OTUxNDc4Mjcz", + "rest_id": "1528996804951478273", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/StateDept", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1653450164210630659/oPRqz0j6_bigger.jpg" + }, + "description": "Department of State", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Tue May 24 07:11:21 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "United States Ambassador to Ukraine", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ua.usembassy.gov/our-relationsh…", + "expanded_url": "https://ua.usembassy.gov/our-relationship/our-ambassador/", + "url": "https://t.co/pOYsF2er0t", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 1575, + "followers_count": 89813, + "friends_count": 194, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 691, + "location": "Ukraine", + "media_count": 983, + "name": "Ambassador Bridget A. Brink", + "normal_followers_count": 89813, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1528996804951478273/1654092211", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1531008733916057601/5wVHzk_y_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "USAmbKyiv", + "statuses_count": 1895, + "translator_type": "none", + "url": "https://t.co/pOYsF2er0t", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756258706692420029" + ], + "editable_until_msecs": "1707563280000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "6198", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE3NTYyNTg3MDY1MDc4MjkyNDg=", + "text": "Last night I met with top foreign policy experts to thank them for their @UNHCRUkraine visit to Ukraine, including to frontline cities. The best way to understand why Ukraine must win the war is to witness the everyday courage of the Ukrainian people fighting for their freedom.\n\nMy message: Supporting Ukraine means supporting our values and our core national security interests, which includes not letting Russia change the borders of Europe by force.\n\nSupporting Ukraine means accountability for Russia’s evil acts in Ukraine:\n\nover 100,000 war crimes\nover 500 children killed\nthousands of children abducted \n\nSupporting Ukraine means supporting decades of bipartisan policy for a Europe, “whole, free, and at peace.”\n\nSupporting Ukraine means supporting global food security and freedom of navigation in the Black Sea. \n\nSupporting Ukraine means supporting innovation and tech in governance and in fighting today’s wars.\n\nSupporting Ukraine means a stronger, more secure, stable, and prosperous United States and Europe.\n\nSupporting Ukraine is the only option for all democracy and freedom-loving countries.", + "entity_set": { + "hashtags": [], + "symbols": [], + "urls": [], + "user_mentions": [ + { + "id_str": "2700690835", + "name": "UNHCR Ukraine", + "screen_name": "UNHCRUkraine", + "indices": [ + 73, + 86 + ] + } + ] + }, + "richtext": { + "richtext_tags": [] + }, + "media": { + "inline_media": [] + } + } + } + }, + "legacy": { + "bookmark_count": 4, + "bookmarked": false, + "created_at": "Sat Feb 10 10:08:00 +0000 2024", + "conversation_id_str": "1756258706692420029", + "display_text_range": [ + 0, + 279 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/1IokGf8HBQ", + "expanded_url": "https://twitter.com/USAmbKyiv/status/1756258706692420029/photo/1", + "id_str": "1756258567114334208", + "indices": [ + 280, + 303 + ], + "media_key": "3_1756258567114334208", + "media_url_https": "https://pbs.twimg.com/media/GF973JqWIAAEOCC.jpg", + "type": "photo", + "url": "https://t.co/1IokGf8HBQ", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 620, + "y": 304, + "h": 71, + "w": 71 + }, + { + "x": 845, + "y": 325, + "h": 71, + "w": 71 + }, + { + "x": 754, + "y": 293, + "h": 79, + "w": 79 + }, + { + "x": 1096, + "y": 314, + "h": 95, + "w": 95 + }, + { + "x": 526, + "y": 325, + "h": 98, + "w": 98 + }, + { + "x": 893, + "y": 328, + "h": 101, + "w": 101 + }, + { + "x": 190, + "y": 348, + "h": 84, + "w": 84 + }, + { + "x": 406, + "y": 357, + "h": 81, + "w": 81 + }, + { + "x": 715, + "y": 379, + "h": 87, + "w": 87 + }, + { + "x": 1167, + "y": 395, + "h": 106, + "w": 106 + }, + { + "x": 315, + "y": 426, + "h": 92, + "w": 92 + }, + { + "x": 35, + "y": 371, + "h": 106, + "w": 106 + }, + { + "x": 1417, + "y": 323, + "h": 123, + "w": 123 + }, + { + "x": 534, + "y": 403, + "h": 100, + "w": 100 + } + ] + }, + "medium": { + "faces": [ + { + "x": 465, + "y": 228, + "h": 53, + "w": 53 + }, + { + "x": 633, + "y": 243, + "h": 53, + "w": 53 + }, + { + "x": 565, + "y": 219, + "h": 59, + "w": 59 + }, + { + "x": 822, + "y": 235, + "h": 71, + "w": 71 + }, + { + "x": 394, + "y": 243, + "h": 73, + "w": 73 + }, + { + "x": 669, + "y": 246, + "h": 75, + "w": 75 + }, + { + "x": 142, + "y": 261, + "h": 63, + "w": 63 + }, + { + "x": 304, + "y": 267, + "h": 60, + "w": 60 + }, + { + "x": 536, + "y": 284, + "h": 65, + "w": 65 + }, + { + "x": 875, + "y": 296, + "h": 79, + "w": 79 + }, + { + "x": 236, + "y": 319, + "h": 69, + "w": 69 + }, + { + "x": 26, + "y": 278, + "h": 79, + "w": 79 + }, + { + "x": 1062, + "y": 242, + "h": 92, + "w": 92 + }, + { + "x": 400, + "y": 302, + "h": 75, + "w": 75 + } + ] + }, + "small": { + "faces": [ + { + "x": 263, + "y": 129, + "h": 30, + "w": 30 + }, + { + "x": 359, + "y": 138, + "h": 30, + "w": 30 + }, + { + "x": 320, + "y": 124, + "h": 33, + "w": 33 + }, + { + "x": 465, + "y": 133, + "h": 40, + "w": 40 + }, + { + "x": 223, + "y": 138, + "h": 41, + "w": 41 + }, + { + "x": 379, + "y": 139, + "h": 42, + "w": 42 + }, + { + "x": 80, + "y": 147, + "h": 35, + "w": 35 + }, + { + "x": 172, + "y": 151, + "h": 34, + "w": 34 + }, + { + "x": 303, + "y": 161, + "h": 36, + "w": 36 + }, + { + "x": 495, + "y": 167, + "h": 45, + "w": 45 + }, + { + "x": 133, + "y": 181, + "h": 39, + "w": 39 + }, + { + "x": 14, + "y": 157, + "h": 45, + "w": 45 + }, + { + "x": 602, + "y": 137, + "h": 52, + "w": 52 + }, + { + "x": 226, + "y": 171, + "h": 42, + "w": 42 + } + ] + }, + "orig": { + "faces": [ + { + "x": 620, + "y": 304, + "h": 71, + "w": 71 + }, + { + "x": 845, + "y": 325, + "h": 71, + "w": 71 + }, + { + "x": 754, + "y": 293, + "h": 79, + "w": 79 + }, + { + "x": 1096, + "y": 314, + "h": 95, + "w": 95 + }, + { + "x": 526, + "y": 325, + "h": 98, + "w": 98 + }, + { + "x": 893, + "y": 328, + "h": 101, + "w": 101 + }, + { + "x": 190, + "y": 348, + "h": 84, + "w": 84 + }, + { + "x": 406, + "y": 357, + "h": 81, + "w": 81 + }, + { + "x": 715, + "y": 379, + "h": 87, + "w": 87 + }, + { + "x": 1167, + "y": 395, + "h": 106, + "w": 106 + }, + { + "x": 315, + "y": 426, + "h": 92, + "w": 92 + }, + { + "x": 35, + "y": 371, + "h": 106, + "w": 106 + }, + { + "x": 1417, + "y": 323, + "h": 123, + "w": 123 + }, + { + "x": 534, + "y": 403, + "h": 100, + "w": 100 + } + ] + } + }, + "sizes": { + "large": { + "h": 1148, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 861, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 488, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1148, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1600, + "h": 896 + }, + { + "x": 104, + "y": 0, + "w": 1148, + "h": 1148 + }, + { + "x": 175, + "y": 0, + "w": 1007, + "h": 1148 + }, + { + "x": 391, + "y": 0, + "w": 574, + "h": 1148 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1148 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "2700690835", + "name": "UNHCR Ukraine", + "screen_name": "UNHCRUkraine", + "indices": [ + 73, + 86 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/1IokGf8HBQ", + "expanded_url": "https://twitter.com/USAmbKyiv/status/1756258706692420029/photo/1", + "id_str": "1756258567114334208", + "indices": [ + 280, + 303 + ], + "media_key": "3_1756258567114334208", + "media_url_https": "https://pbs.twimg.com/media/GF973JqWIAAEOCC.jpg", + "type": "photo", + "url": "https://t.co/1IokGf8HBQ", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 620, + "y": 304, + "h": 71, + "w": 71 + }, + { + "x": 845, + "y": 325, + "h": 71, + "w": 71 + }, + { + "x": 754, + "y": 293, + "h": 79, + "w": 79 + }, + { + "x": 1096, + "y": 314, + "h": 95, + "w": 95 + }, + { + "x": 526, + "y": 325, + "h": 98, + "w": 98 + }, + { + "x": 893, + "y": 328, + "h": 101, + "w": 101 + }, + { + "x": 190, + "y": 348, + "h": 84, + "w": 84 + }, + { + "x": 406, + "y": 357, + "h": 81, + "w": 81 + }, + { + "x": 715, + "y": 379, + "h": 87, + "w": 87 + }, + { + "x": 1167, + "y": 395, + "h": 106, + "w": 106 + }, + { + "x": 315, + "y": 426, + "h": 92, + "w": 92 + }, + { + "x": 35, + "y": 371, + "h": 106, + "w": 106 + }, + { + "x": 1417, + "y": 323, + "h": 123, + "w": 123 + }, + { + "x": 534, + "y": 403, + "h": 100, + "w": 100 + } + ] + }, + "medium": { + "faces": [ + { + "x": 465, + "y": 228, + "h": 53, + "w": 53 + }, + { + "x": 633, + "y": 243, + "h": 53, + "w": 53 + }, + { + "x": 565, + "y": 219, + "h": 59, + "w": 59 + }, + { + "x": 822, + "y": 235, + "h": 71, + "w": 71 + }, + { + "x": 394, + "y": 243, + "h": 73, + "w": 73 + }, + { + "x": 669, + "y": 246, + "h": 75, + "w": 75 + }, + { + "x": 142, + "y": 261, + "h": 63, + "w": 63 + }, + { + "x": 304, + "y": 267, + "h": 60, + "w": 60 + }, + { + "x": 536, + "y": 284, + "h": 65, + "w": 65 + }, + { + "x": 875, + "y": 296, + "h": 79, + "w": 79 + }, + { + "x": 236, + "y": 319, + "h": 69, + "w": 69 + }, + { + "x": 26, + "y": 278, + "h": 79, + "w": 79 + }, + { + "x": 1062, + "y": 242, + "h": 92, + "w": 92 + }, + { + "x": 400, + "y": 302, + "h": 75, + "w": 75 + } + ] + }, + "small": { + "faces": [ + { + "x": 263, + "y": 129, + "h": 30, + "w": 30 + }, + { + "x": 359, + "y": 138, + "h": 30, + "w": 30 + }, + { + "x": 320, + "y": 124, + "h": 33, + "w": 33 + }, + { + "x": 465, + "y": 133, + "h": 40, + "w": 40 + }, + { + "x": 223, + "y": 138, + "h": 41, + "w": 41 + }, + { + "x": 379, + "y": 139, + "h": 42, + "w": 42 + }, + { + "x": 80, + "y": 147, + "h": 35, + "w": 35 + }, + { + "x": 172, + "y": 151, + "h": 34, + "w": 34 + }, + { + "x": 303, + "y": 161, + "h": 36, + "w": 36 + }, + { + "x": 495, + "y": 167, + "h": 45, + "w": 45 + }, + { + "x": 133, + "y": 181, + "h": 39, + "w": 39 + }, + { + "x": 14, + "y": 157, + "h": 45, + "w": 45 + }, + { + "x": 602, + "y": 137, + "h": 52, + "w": 52 + }, + { + "x": 226, + "y": 171, + "h": 42, + "w": 42 + } + ] + }, + "orig": { + "faces": [ + { + "x": 620, + "y": 304, + "h": 71, + "w": 71 + }, + { + "x": 845, + "y": 325, + "h": 71, + "w": 71 + }, + { + "x": 754, + "y": 293, + "h": 79, + "w": 79 + }, + { + "x": 1096, + "y": 314, + "h": 95, + "w": 95 + }, + { + "x": 526, + "y": 325, + "h": 98, + "w": 98 + }, + { + "x": 893, + "y": 328, + "h": 101, + "w": 101 + }, + { + "x": 190, + "y": 348, + "h": 84, + "w": 84 + }, + { + "x": 406, + "y": 357, + "h": 81, + "w": 81 + }, + { + "x": 715, + "y": 379, + "h": 87, + "w": 87 + }, + { + "x": 1167, + "y": 395, + "h": 106, + "w": 106 + }, + { + "x": 315, + "y": 426, + "h": 92, + "w": 92 + }, + { + "x": 35, + "y": 371, + "h": 106, + "w": 106 + }, + { + "x": 1417, + "y": 323, + "h": 123, + "w": 123 + }, + { + "x": 534, + "y": 403, + "h": 100, + "w": 100 + } + ] + } + }, + "sizes": { + "large": { + "h": 1148, + "w": 1600, + "resize": "fit" + }, + "medium": { + "h": 861, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 488, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1148, + "width": 1600, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1600, + "h": 896 + }, + { + "x": 104, + "y": 0, + "w": 1148, + "h": 1148 + }, + { + "x": 175, + "y": 0, + "w": 1007, + "h": 1148 + }, + { + "x": 391, + "y": 0, + "w": 574, + "h": 1148 + }, + { + "x": 0, + "y": 0, + "w": 1600, + "h": 1148 + } + ] + } + } + ] + }, + "favorite_count": 282, + "favorited": false, + "full_text": "Last night I met with top foreign policy experts to thank them for their @UNHCRUkraine visit to Ukraine, including to frontline cities. The best way to understand why Ukraine must win the war is to witness the everyday courage of the Ukrainian people fighting for their freedom.… https://t.co/1IokGf8HBQ", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 2, + "reply_count": 13, + "retweet_count": 61, + "retweeted": false, + "user_id_str": "1528996804951478273", + "id_str": "1756258706692420029" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756259394881311071", + "sortIndex": "1756309211907620815", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756259394881311071", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NDA4MzE4Nw==", + "rest_id": "84083187", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Oct 21 13:42:34 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Ukraine Correspondent. British-Lebanese conflict journalist & filmmaker based in Kyiv. Co-host of @DrillPod. RTs ≠ endorsement.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ko-fi.com/ozkaterji", + "expanded_url": "http://ko-fi.com/ozkaterji", + "url": "https://t.co/FC9pQbgXa4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 45500, + "followers_count": 215887, + "friends_count": 11666, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3397, + "location": "Kyiv, Ukraine", + "media_count": 6412, + "name": "Oz Katerji", + "normal_followers_count": 215887, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84083187/1647382697", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713181637574275072/gUp8KMF4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OzKaterji", + "statuses_count": 174699, + "translator_type": "none", + "url": "https://t.co/FC9pQbgXa4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756259394881311071" + ], + "editable_until_msecs": "1707563444118", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 10:10:44 +0000 2024", + "conversation_id_str": "1756259394881311071", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 21, + 29 + ], + "text": "Kharkiv" + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "855004903", + "name": "жінка у панамці", + "screen_name": "molnijadevochka", + "indices": [ + 3, + 19 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @molnijadevochka: #Kharkiv tonight after Shahed attack. 7 people dead, including 3 children (the youngest — a 6-months-old). 15 houses b…", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1756115472309772756", + "quoted_status_permalink": { + "url": "https://t.co/DDiHoR1Y61", + "expanded": "https://twitter.com/nakipeloua/status/1756115472309772756", + "display": "twitter.com/nakipeloua/sta…" + }, + "reply_count": 0, + "retweet_count": 36, + "retweeted": false, + "user_id_str": "84083187", + "id_str": "1756259394881311071", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756212723514220957", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NTUwMDQ5MDM=", + "rest_id": "855004903", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Sun Sep 30 16:49:32 +0000 2012", + "default_profile": false, + "default_profile_image": false, + "description": "рісьорчерка, сітівотчерка, уважна перехожа", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 83277, + "followers_count": 531, + "friends_count": 463, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3, + "location": "Ukraine", + "media_count": 1068, + "name": "жінка у панамці", + "normal_followers_count": 531, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/855004903/1491293962", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1665452209687916545/-f9vZ4uJ_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "molnijadevochka", + "statuses_count": 11978, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756212723514220957" + ], + "editable_until_msecs": "1707552316000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "11406", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756115472309772756", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozOTA0NDkxMzEy", + "rest_id": "3904491312", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Thu Oct 15 16:36:02 +0000 2015", + "default_profile": false, + "default_profile_image": false, + "description": "Голос українського Харкова. Ми в Телеграмі: https://t.co/A3I0VOFp4E", + "entities": { + "description": { + "urls": [ + { + "display_url": "t.me/nakipelovo", + "expanded_url": "http://t.me/nakipelovo", + "url": "https://t.co/A3I0VOFp4E", + "indices": [ + 44, + 67 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "nakipelo.ua", + "expanded_url": "http://nakipelo.ua/", + "url": "https://t.co/vWNK64kPS8", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 704, + "followers_count": 6891, + "friends_count": 31, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 63, + "location": "Харків", + "media_count": 7283, + "name": "Накипіло. Харків", + "normal_followers_count": 6891, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3904491312/1672322772", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1607063843909378048/vboXqPYx_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "nakipeloua", + "statuses_count": 22699, + "translator_type": "none", + "url": "https://t.co/vWNK64kPS8", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1463985999621640192", + "professional_type": "Business", + "category": [ + { + "id": 955, + "name": "Journalist", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756115472309772756" + ], + "editable_until_msecs": "1707529130000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "count": "50552", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 5, + "bookmarked": false, + "created_at": "Sat Feb 10 00:38:50 +0000 2024", + "conversation_id_str": "1756115472309772756", + "display_text_range": [ + 0, + 103 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/ADMSyvggoa", + "expanded_url": "https://twitter.com/nakipeloua/status/1756115472309772756/video/1", + "id_str": "1756115256382775296", + "indices": [ + 104, + 127 + ], + "media_key": "7_1756115256382775296", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1756115256382775296/pu/img/w8zfRMIJRPTovE5c.jpg", + "type": "video", + "url": "https://t.co/ADMSyvggoa", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1920, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 675, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 383, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1920, + "width": 1080, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 86440, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1756115256382775296/pu/pl/wYArEZrnnhat2VZG.m3u8?tag=12&container=cmaf" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756115256382775296/pu/vid/avc1/320x568/QAerWHC4DzUENMwS.mp4?tag=12" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756115256382775296/pu/vid/avc1/480x852/g5osL0yyJgHY9CWx.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756115256382775296/pu/vid/avc1/720x1280/6qJLGJ2NDSiojTVh.mp4?tag=12" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/ADMSyvggoa", + "expanded_url": "https://twitter.com/nakipeloua/status/1756115472309772756/video/1", + "id_str": "1756115256382775296", + "indices": [ + 104, + 127 + ], + "media_key": "7_1756115256382775296", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1756115256382775296/pu/img/w8zfRMIJRPTovE5c.jpg", + "type": "video", + "url": "https://t.co/ADMSyvggoa", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1920, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 675, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 383, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1920, + "width": 1080, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 86440, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1756115256382775296/pu/pl/wYArEZrnnhat2VZG.m3u8?tag=12&container=cmaf" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756115256382775296/pu/vid/avc1/320x568/QAerWHC4DzUENMwS.mp4?tag=12" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756115256382775296/pu/vid/avc1/480x852/g5osL0yyJgHY9CWx.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756115256382775296/pu/vid/avc1/720x1280/6qJLGJ2NDSiojTVh.mp4?tag=12" + } + ] + } + } + ] + }, + "favorite_count": 148, + "favorited": false, + "full_text": "Від потріскування пожежі стає не по собі. Горять житлові будинки. Відео з місця вибуху — Віктор Пічугін https://t.co/ADMSyvggoa", + "is_quote_status": false, + "lang": "uk", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 9, + "reply_count": 7, + "retweet_count": 117, + "retweeted": false, + "user_id_str": "3904491312", + "id_str": "1756115472309772756" + } + } + }, + "legacy": { + "bookmark_count": 5, + "bookmarked": false, + "created_at": "Sat Feb 10 07:05:16 +0000 2024", + "conversation_id_str": "1756212723514220957", + "display_text_range": [ + 0, + 279 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 0, + 8 + ], + "text": "Kharkiv" + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 88, + "favorited": false, + "full_text": "#Kharkiv tonight after Shahed attack. 7 people dead, including 3 children (the youngest — a 6-months-old). 15 houses burnt to the ground. \n\nI wake up to these news and can’t comprehend once more the amount of grief and devastation that russians bring us. keep supporting Ukraine.", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1756115472309772756", + "quoted_status_permalink": { + "url": "https://t.co/DDiHoR1Y61", + "expanded": "https://twitter.com/nakipeloua/status/1756115472309772756", + "display": "twitter.com/nakipeloua/sta…" + }, + "reply_count": 2, + "retweet_count": 36, + "retweeted": false, + "user_id_str": "855004903", + "id_str": "1756212723514220957" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756258983717871938", + "sortIndex": "1756309211907620814", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756258983717871938", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NDA4MzE4Nw==", + "rest_id": "84083187", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Oct 21 13:42:34 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Ukraine Correspondent. British-Lebanese conflict journalist & filmmaker based in Kyiv. Co-host of @DrillPod. RTs ≠ endorsement.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ko-fi.com/ozkaterji", + "expanded_url": "http://ko-fi.com/ozkaterji", + "url": "https://t.co/FC9pQbgXa4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 45500, + "followers_count": 215887, + "friends_count": 11666, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3397, + "location": "Kyiv, Ukraine", + "media_count": 6412, + "name": "Oz Katerji", + "normal_followers_count": 215887, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84083187/1647382697", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713181637574275072/gUp8KMF4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OzKaterji", + "statuses_count": 174699, + "translator_type": "none", + "url": "https://t.co/FC9pQbgXa4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756258983717871938" + ], + "editable_until_msecs": "1707563346000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "15044", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756070192524743114", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMzYwMDQ5NTI=", + "rest_id": "136004952", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Apr 22 19:41:25 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Chairman Spectator Magazine UK, US, Australia. Presenter The Andrew Neil Show, Channel 4. Ex-Editor Sunday Times, BBC political presenter, Chairman Sky TV", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 123, + "followers_count": 1238214, + "friends_count": 445, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 5795, + "location": "Everywhere", + "media_count": 478, + "name": "Andrew Neil", + "normal_followers_count": 1238214, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1347879299496423425/Z8G-59IL_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "afneil", + "statuses_count": 84837, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/AV24oQTFMn", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 333, + "width": 636, + "url": "https://pbs.twimg.com/card_img/1755927651275915265/IUQeAYVe?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "app_star_rating", + "value": { + "string_value": "3.91641", + "type": "STRING" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 144, + "width": 240, + "url": "https://pbs.twimg.com/card_img/1755927651275915265/IUQeAYVe?format=jpg&name=240x240" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Carlson just sat there with an increasingly pained expression as he realised what was meant to be his great broadcasting coup was disappearing down the Swanee.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.dailymail.co.uk", + "type": "STRING" + } + }, + { + "key": "app_is_free", + "value": { + "string_value": "true", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 320, + "width": 533, + "url": "https://pbs.twimg.com/card_img/1755927651275915265/IUQeAYVe?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755927651275915265/IUQeAYVe?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 382, + "width": 636, + "url": "https://pbs.twimg.com/card_img/1755927651275915265/IUQeAYVe?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755927651275915265/IUQeAYVe?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 333, + "width": 636, + "url": "https://pbs.twimg.com/card_img/1755927651275915265/IUQeAYVe?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 60, + "width": 100, + "url": "https://pbs.twimg.com/card_img/1755927651275915265/IUQeAYVe?format=jpg&name=100x100" + }, + "type": "IMAGE" + } + }, + { + "key": "app_num_ratings", + "value": { + "string_value": "16,353", + "type": "STRING" + } + }, + { + "key": "app_price_amount", + "value": { + "string_value": "0.0", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 382, + "width": 636, + "url": "https://pbs.twimg.com/card_img/1755927651275915265/IUQeAYVe?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 382, + "width": 636, + "url": "https://pbs.twimg.com/card_img/1755927651275915265/IUQeAYVe?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "dailymail.co.uk", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755927651275915265/IUQeAYVe?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "app_name", + "value": { + "string_value": "Daily Mail: Breaking News", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 32, + "green": 41, + "red": 43 + }, + "percentage": 75.34 + }, + { + "rgb": { + "blue": 103, + "green": 119, + "red": 133 + }, + "percentage": 13.04 + }, + { + "rgb": { + "blue": 45, + "green": 75, + "red": 112 + }, + "percentage": 6.8 + }, + { + "rgb": { + "blue": 195, + "green": 205, + "red": 209 + }, + "percentage": 1.85 + }, + { + "rgb": { + "blue": 45, + "green": 52, + "red": 94 + }, + "percentage": 1.15 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Carlson's stunt confirmed Putin is dangerous, writes ANDREW NEIL", + "type": "STRING" + } + }, + { + "key": "app_price_currency", + "value": { + "string_value": "USD", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 32, + "green": 41, + "red": 43 + }, + "percentage": 75.34 + }, + { + "rgb": { + "blue": 103, + "green": 119, + "red": 133 + }, + "percentage": 13.04 + }, + { + "rgb": { + "blue": 45, + "green": 75, + "red": 112 + }, + "percentage": 6.8 + }, + { + "rgb": { + "blue": 195, + "green": 205, + "red": 209 + }, + "percentage": 1.85 + }, + { + "rgb": { + "blue": 45, + "green": 52, + "red": 94 + }, + "percentage": 1.15 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 382, + "width": 636, + "url": "https://pbs.twimg.com/card_img/1755927651275915265/IUQeAYVe?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755927651275915265/IUQeAYVe?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 32, + "green": 41, + "red": 43 + }, + "percentage": 75.34 + }, + { + "rgb": { + "blue": 103, + "green": 119, + "red": 133 + }, + "percentage": 13.04 + }, + { + "rgb": { + "blue": 45, + "green": 75, + "red": 112 + }, + "percentage": 6.8 + }, + { + "rgb": { + "blue": 195, + "green": 205, + "red": 209 + }, + "percentage": 1.85 + }, + { + "rgb": { + "blue": 45, + "green": 52, + "red": 94 + }, + "percentage": 1.15 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 382, + "width": 636, + "url": "https://pbs.twimg.com/card_img/1755927651275915265/IUQeAYVe?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/AV24oQTFMn", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 382, + "width": 636, + "url": "https://pbs.twimg.com/card_img/1755927651275915265/IUQeAYVe?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/AV24oQTFMn", + "user_refs_results": [] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756070192524743114" + ], + "editable_until_msecs": "1707518334000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "198348", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPad", + "legacy": { + "bookmark_count": 67, + "bookmarked": false, + "created_at": "Fri Feb 09 21:38:54 +0000 2024", + "conversation_id_str": "1756070192524743114", + "display_text_range": [ + 0, + 110 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "mol.im/a/13065007", + "expanded_url": "https://mol.im/a/13065007", + "url": "https://t.co/AV24oQTFMn", + "indices": [ + 71, + 94 + ] + } + ], + "user_mentions": [ + { + "id_str": "15438913", + "name": "Daily Mail Online", + "screen_name": "MailOnline", + "indices": [ + 99, + 110 + ] + } + ] + }, + "favorite_count": 1285, + "favorited": false, + "full_text": "ANDREW NEIL: Tucker Carlson is a fool and Putin blew him out the water https://t.co/AV24oQTFMn via @MailOnline", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 41, + "reply_count": 376, + "retweet_count": 192, + "retweeted": false, + "user_id_str": "136004952", + "id_str": "1756070192524743114" + } + } + }, + "legacy": { + "bookmark_count": 7, + "bookmarked": false, + "created_at": "Sat Feb 10 10:09:06 +0000 2024", + "conversation_id_str": "1756258983717871938", + "display_text_range": [ + 0, + 26 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 100, + "favorited": false, + "full_text": "This is a total demolition", + "is_quote_status": true, + "lang": "en", + "quote_count": 1, + "quoted_status_id_str": "1756070192524743114", + "quoted_status_permalink": { + "url": "https://t.co/ihsZD2ZfCw", + "expanded": "https://twitter.com/afneil/status/1756070192524743114", + "display": "twitter.com/afneil/status/…" + }, + "reply_count": 4, + "retweet_count": 4, + "retweeted": false, + "user_id_str": "84083187", + "id_str": "1756258983717871938" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756257641490202641", + "sortIndex": "1756309211907620813", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756257641490202641", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozMTcxNDM4NjE=", + "rest_id": "317143861", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Jun 14 14:12:24 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "BBC Eastern Europe Correspondent, expelled from Russia after many years, now in Warsaw. Formerly based in Istanbul, Madrid & Havana.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 4571, + "followers_count": 89712, + "friends_count": 1714, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2637, + "location": "", + "media_count": 1802, + "name": "Sarah Rainsford", + "normal_followers_count": 89712, + "pinned_tweet_ids_str": [ + "1627926094585143298" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/317143861/1630426097", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1629076793926754304/hI5cTbo4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "sarahrainsford", + "statuses_count": 11927, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756257641490202641" + ], + "editable_until_msecs": "1707563026000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3418", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 10:03:46 +0000 2024", + "conversation_id_str": "1756257641490202641", + "display_text_range": [ + 0, + 286 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 9, + "favorited": false, + "full_text": "In the latest drone attack on Kharkiv, fuel from a depot that was hit gushed down a residential street as a 'hellish lava', acc to officials\n\nIt set fire to cars & homes\n\n3 boys - 7 months, 7 y.o. & 4 - were killed with their parents. 2 pensioners were also killed in their home", + "is_quote_status": false, + "lang": "en", + "quote_count": 3, + "reply_count": 4, + "retweet_count": 9, + "retweeted": false, + "user_id_str": "317143861", + "id_str": "1756257641490202641" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756256957302804939", + "sortIndex": "1756309211907620812", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756256957302804939", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyOTAxMDcxMA==", + "rest_id": "29010710", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sun Apr 05 16:13:47 +0000 2009", + "default_profile": true, + "default_profile_image": false, + "description": "Nationality: journalist. Freelancer, made in the BBC. Reporting what you need to know, not what you want to hear. Also, Lonely Planet guides.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 21173, + "followers_count": 71287, + "friends_count": 4541, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2089, + "location": "", + "media_count": 5873, + "name": "Leonid ХВ Ragozin", + "normal_followers_count": 71287, + "pinned_tweet_ids_str": [ + "1747949666581287074" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/29010710/1610454802", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1098307078991593474/vBl5zWMc_normal.png", + "profile_interstitial_type": "", + "screen_name": "leonidragozin", + "statuses_count": 64179, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1630527445676818432", + "professional_type": "Business", + "category": [ + { + "id": 579, + "name": "Media & News", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756256957302804939" + ], + "editable_until_msecs": "1707562862954", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 10:01:02 +0000 2024", + "conversation_id_str": "1756256957302804939", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "219189088", + "name": "Mike Eckel (@mikeeckel.bsky.social)", + "screen_name": "Mike_Eckel", + "indices": [ + 3, + 14 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @Mike_Eckel: People lining up in the Alexandrovsky Garden at the Kremlin, as part of today's protest by \"The Way Home\" (the group advoca…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 17, + "retweeted": false, + "user_id_str": "29010710", + "id_str": "1756256957302804939", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756256096597967114", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyMTkxODkwODg=", + "rest_id": "219189088", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Wed Nov 24 04:57:49 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Opponent of Quiet Desperation. Contains Multitudes. In Search Of Meanness Or Sublimity. Former Nigeria-With-Snow Correspondent. @RFERL", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "muckrack.com/mike-eckel-2", + "expanded_url": "https://muckrack.com/mike-eckel-2", + "url": "https://t.co/GP77ryEum3", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 13451, + "followers_count": 17316, + "friends_count": 7409, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 770, + "location": "Prague, Czech Republic", + "media_count": 4374, + "name": "Mike Eckel (@mikeeckel.bsky.social)", + "normal_followers_count": 17316, + "pinned_tweet_ids_str": [ + "1106754750777831424" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/219189088/1644333047", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1490421285515579392/dt7pyfBx_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "Mike_Eckel", + "statuses_count": 25409, + "translator_type": "none", + "url": "https://t.co/GP77ryEum3", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756256096597967114" + ], + "editable_until_msecs": "1707562657000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "5209", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 3, + "bookmarked": false, + "created_at": "Sat Feb 10 09:57:37 +0000 2024", + "conversation_id_str": "1756256096597967114", + "display_text_range": [ + 0, + 272 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/JUU5ZzBW0N", + "expanded_url": "https://twitter.com/Mike_Eckel/status/1756256096597967114/video/1", + "id_str": "1756255870046932993", + "indices": [ + 273, + 296 + ], + "media_key": "7_1756255870046932993", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1756255870046932993/pu/img/Iw6K2iLGiJ5CrhtT.jpg", + "type": "video", + "url": "https://t.co/JUU5ZzBW0N", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 1280, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 17301, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1756255870046932993/pu/pl/Bd_Sbl_SssRTR3u3.m3u8?tag=12&container=cmaf" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756255870046932993/pu/vid/avc1/640x360/i4xOik8iPxCWGL8S.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756255870046932993/pu/vid/avc1/1280x720/XG6f3icFRJLZZwqp.mp4?tag=12" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756255870046932993/pu/vid/avc1/480x270/7CjngvVKrjbRGSVz.mp4?tag=12" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "2834511", + "name": "DER SPIEGEL", + "screen_name": "derspiegel", + "indices": [ + 260, + 271 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/JUU5ZzBW0N", + "expanded_url": "https://twitter.com/Mike_Eckel/status/1756256096597967114/video/1", + "id_str": "1756255870046932993", + "indices": [ + 273, + 296 + ], + "media_key": "7_1756255870046932993", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1756255870046932993/pu/img/Iw6K2iLGiJ5CrhtT.jpg", + "type": "video", + "url": "https://t.co/JUU5ZzBW0N", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 1280, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 17301, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1756255870046932993/pu/pl/Bd_Sbl_SssRTR3u3.m3u8?tag=12&container=cmaf" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756255870046932993/pu/vid/avc1/640x360/i4xOik8iPxCWGL8S.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756255870046932993/pu/vid/avc1/1280x720/XG6f3icFRJLZZwqp.mp4?tag=12" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756255870046932993/pu/vid/avc1/480x270/7CjngvVKrjbRGSVz.mp4?tag=12" + } + ] + } + } + ] + }, + "favorite_count": 21, + "favorited": false, + "full_text": "People lining up in the Alexandrovsky Garden at the Kremlin, as part of today's protest by \"The Way Home\" (the group advocating for rotations/demobilization of husbands/sons from Ukraine). Authorities warned reporters ahead of time not to cover the event (per @derspiegel) https://t.co/JUU5ZzBW0N", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 2, + "reply_count": 1, + "retweet_count": 17, + "retweeted": false, + "user_id_str": "219189088", + "id_str": "1756256096597967114" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756256678872264932", + "sortIndex": "1756309211907620811", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756256678872264932", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyOTAxMDcxMA==", + "rest_id": "29010710", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sun Apr 05 16:13:47 +0000 2009", + "default_profile": true, + "default_profile_image": false, + "description": "Nationality: journalist. Freelancer, made in the BBC. Reporting what you need to know, not what you want to hear. Also, Lonely Planet guides.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 21173, + "followers_count": 71287, + "friends_count": 4541, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2089, + "location": "", + "media_count": 5873, + "name": "Leonid ХВ Ragozin", + "normal_followers_count": 71287, + "pinned_tweet_ids_str": [ + "1747949666581287074" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/29010710/1610454802", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1098307078991593474/vBl5zWMc_normal.png", + "profile_interstitial_type": "", + "screen_name": "leonidragozin", + "statuses_count": 64179, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1630527445676818432", + "professional_type": "Business", + "category": [ + { + "id": 579, + "name": "Media & News", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756256678872264932" + ], + "editable_until_msecs": "1707562796000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3122", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756018343604064744", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozNDk4MTY5OTc=", + "rest_id": "349816997", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sat Aug 06 19:03:49 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "moscow bureau chief @FT. in soviet russia, news reports you: max.seddon@ft.com", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 11419, + "followers_count": 379275, + "friends_count": 4224, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 10826, + "location": "", + "media_count": 4144, + "name": "max seddon", + "normal_followers_count": 379275, + "pinned_tweet_ids_str": [ + "1723724698582937908" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/349816997/1616624047", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000648873265/ce009831b1ece5b9141bcbffd5bf4021_normal.png", + "profile_interstitial_type": "", + "screen_name": "maxseddon", + "statuses_count": 31058, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/zcIQ82Kkj8", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 367, + "width": 700, + "url": "https://pbs.twimg.com/card_img/1755940500182540288/tS3W1-1u?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 150, + "width": 267, + "url": "https://pbs.twimg.com/card_img/1755940500182540288/tS3W1-1u?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Danish defence minister is latest western official to sound the alarm about Moscow’s continued appetite for war", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.ft.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 320, + "width": 570, + "url": "https://pbs.twimg.com/card_img/1755940500182540288/tS3W1-1u?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755940500182540288/tS3W1-1u?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 393, + "width": 700, + "url": "https://pbs.twimg.com/card_img/1755940500182540288/tS3W1-1u?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "4898091", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755940500182540288/tS3W1-1u?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 367, + "width": 700, + "url": "https://pbs.twimg.com/card_img/1755940500182540288/tS3W1-1u?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 81, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1755940500182540288/tS3W1-1u?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 393, + "width": 700, + "url": "https://pbs.twimg.com/card_img/1755940500182540288/tS3W1-1u?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 393, + "width": 700, + "url": "https://pbs.twimg.com/card_img/1755940500182540288/tS3W1-1u?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "ft.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755940500182540288/tS3W1-1u?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 37, + "green": 41, + "red": 43 + }, + "percentage": 59.77 + }, + { + "rgb": { + "blue": 116, + "green": 121, + "red": 130 + }, + "percentage": 27.4 + }, + { + "rgb": { + "blue": 77, + "green": 105, + "red": 134 + }, + "percentage": 6.47 + }, + { + "rgb": { + "blue": 192, + "green": 192, + "red": 192 + }, + "percentage": 2.31 + }, + { + "rgb": { + "blue": 90, + "green": 46, + "red": 30 + }, + "percentage": 1.32 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Denmark warns Russia could attack a Nato country within 3 to 5 years", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 37, + "green": 41, + "red": 43 + }, + "percentage": 59.77 + }, + { + "rgb": { + "blue": 116, + "green": 121, + "red": 130 + }, + "percentage": 27.4 + }, + { + "rgb": { + "blue": 77, + "green": 105, + "red": 134 + }, + "percentage": 6.47 + }, + { + "rgb": { + "blue": 192, + "green": 192, + "red": 192 + }, + "percentage": 2.31 + }, + { + "rgb": { + "blue": 90, + "green": 46, + "red": 30 + }, + "percentage": 1.32 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 393, + "width": 700, + "url": "https://pbs.twimg.com/card_img/1755940500182540288/tS3W1-1u?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755940500182540288/tS3W1-1u?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 37, + "green": 41, + "red": 43 + }, + "percentage": 59.77 + }, + { + "rgb": { + "blue": 116, + "green": 121, + "red": 130 + }, + "percentage": 27.4 + }, + { + "rgb": { + "blue": 77, + "green": 105, + "red": 134 + }, + "percentage": 6.47 + }, + { + "rgb": { + "blue": 192, + "green": 192, + "red": 192 + }, + "percentage": 2.31 + }, + { + "rgb": { + "blue": 90, + "green": 46, + "red": 30 + }, + "percentage": 1.32 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 393, + "width": 700, + "url": "https://pbs.twimg.com/card_img/1755940500182540288/tS3W1-1u?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/zcIQ82Kkj8", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 393, + "width": 700, + "url": "https://pbs.twimg.com/card_img/1755940500182540288/tS3W1-1u?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/zcIQ82Kkj8", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjo0ODk4MDkx", + "rest_id": "4898091", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Apr 16 16:54:19 +0000 2007", + "default_profile": false, + "default_profile_image": false, + "description": "This account is now closed. For the best of FT journalism, including breaking news and analysis, follow @ft", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ft.com", + "expanded_url": "https://www.ft.com", + "url": "https://t.co/XKMxG94Z9c", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 89, + "followers_count": 7591898, + "friends_count": 1033, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 48306, + "location": "London / New York / Hong Kong", + "media_count": 24308, + "name": "Financial Times", + "normal_followers_count": 7591898, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/4898091/1694438163", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/931161479398686721/FI3te2Sw_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "FinancialTimes", + "statuses_count": 337117, + "translator_type": "none", + "url": "https://t.co/XKMxG94Z9c", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756018343604064744" + ], + "editable_until_msecs": "1707505973000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "82971", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 65, + "bookmarked": false, + "created_at": "Fri Feb 09 18:12:53 +0000 2024", + "conversation_id_str": "1756018343604064744", + "display_text_range": [ + 0, + 237 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "ft.com/content/b31010…", + "expanded_url": "https://www.ft.com/content/b3101099-9516-4b0b-92c6-179997d7e4cf", + "url": "https://t.co/zcIQ82Kkj8", + "indices": [ + 214, + 237 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 865, + "favorited": false, + "full_text": "\"It cannot be ruled out that within a three- to five-year period, Russia will test Article 5 and Nato’s solidarity. That was not Nato’s assessment in 2023. This is new information that is coming to the fore now.\"\n\nhttps://t.co/zcIQ82Kkj8", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 28, + "reply_count": 35, + "retweet_count": 380, + "retweeted": false, + "user_id_str": "349816997", + "id_str": "1756018343604064744" + } + } + }, + "legacy": { + "bookmark_count": 3, + "bookmarked": false, + "created_at": "Sat Feb 10 09:59:56 +0000 2024", + "conversation_id_str": "1756256678872264932", + "display_text_range": [ + 0, + 76 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 20, + "favorited": false, + "full_text": "Baseless forecasts tend to become self-fulfilling prophecies in our sad age.", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1756018343604064744", + "quoted_status_permalink": { + "url": "https://t.co/agPq83jKaa", + "expanded": "https://twitter.com/maxseddon/status/1756018343604064744", + "display": "twitter.com/maxseddon/stat…" + }, + "reply_count": 3, + "retweet_count": 1, + "retweeted": false, + "user_id_str": "29010710", + "id_str": "1756256678872264932" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "list-conversation-1756309211907620918", + "sortIndex": "1756309211907620810", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "list-conversation-1756309211907620918-tweet-1756254790135296349", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756254790135296349", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyOTAxMDcxMA==", + "rest_id": "29010710", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sun Apr 05 16:13:47 +0000 2009", + "default_profile": true, + "default_profile_image": false, + "description": "Nationality: journalist. Freelancer, made in the BBC. Reporting what you need to know, not what you want to hear. Also, Lonely Planet guides.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 21173, + "followers_count": 71287, + "friends_count": 4541, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2089, + "location": "", + "media_count": 5873, + "name": "Leonid ХВ Ragozin", + "normal_followers_count": 71287, + "pinned_tweet_ids_str": [ + "1747949666581287074" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/29010710/1610454802", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1098307078991593474/vBl5zWMc_normal.png", + "profile_interstitial_type": "", + "screen_name": "leonidragozin", + "statuses_count": 64179, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1630527445676818432", + "professional_type": "Business", + "category": [ + { + "id": 579, + "name": "Media & News", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756254790135296349" + ], + "editable_until_msecs": "1707562346000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "6163", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 6, + "bookmarked": false, + "created_at": "Sat Feb 10 09:52:26 +0000 2024", + "conversation_id_str": "1756254790135296349", + "display_text_range": [ + 0, + 223 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/z59PZodRPH", + "expanded_url": "https://twitter.com/leonidragozin/status/1756254790135296349/photo/1", + "id_str": "1756254785068527616", + "indices": [ + 224, + 247 + ], + "media_key": "3_1756254785068527616", + "media_url_https": "https://pbs.twimg.com/media/GF94bAcW8AAcAHz.jpg", + "type": "photo", + "url": "https://t.co/z59PZodRPH", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 377, + "y": 1194, + "h": 66, + "w": 66 + }, + { + "x": 953, + "y": 924, + "h": 90, + "w": 90 + }, + { + "x": 675, + "y": 774, + "h": 268, + "w": 268 + } + ] + }, + "medium": { + "faces": [ + { + "x": 239, + "y": 759, + "h": 41, + "w": 41 + }, + { + "x": 606, + "y": 587, + "h": 57, + "w": 57 + }, + { + "x": 429, + "y": 492, + "h": 170, + "w": 170 + } + ] + }, + "small": { + "faces": [ + { + "x": 135, + "y": 430, + "h": 23, + "w": 23 + }, + { + "x": 343, + "y": 333, + "h": 32, + "w": 32 + }, + { + "x": 243, + "y": 279, + "h": 96, + "w": 96 + } + ] + }, + "orig": { + "faces": [ + { + "x": 377, + "y": 1194, + "h": 66, + "w": 66 + }, + { + "x": 953, + "y": 924, + "h": 90, + "w": 90 + }, + { + "x": 675, + "y": 774, + "h": 268, + "w": 268 + } + ] + } + }, + "sizes": { + "large": { + "h": 1885, + "w": 1284, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 817, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 463, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1885, + "width": 1284, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1284, + "h": 719 + }, + { + "x": 0, + "y": 0, + "w": 1284, + "h": 1284 + }, + { + "x": 0, + "y": 0, + "w": 1284, + "h": 1464 + }, + { + "x": 235, + "y": 0, + "w": 943, + "h": 1885 + }, + { + "x": 0, + "y": 0, + "w": 1284, + "h": 1885 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/z59PZodRPH", + "expanded_url": "https://twitter.com/leonidragozin/status/1756254790135296349/photo/1", + "id_str": "1756254785068527616", + "indices": [ + 224, + 247 + ], + "media_key": "3_1756254785068527616", + "media_url_https": "https://pbs.twimg.com/media/GF94bAcW8AAcAHz.jpg", + "type": "photo", + "url": "https://t.co/z59PZodRPH", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 377, + "y": 1194, + "h": 66, + "w": 66 + }, + { + "x": 953, + "y": 924, + "h": 90, + "w": 90 + }, + { + "x": 675, + "y": 774, + "h": 268, + "w": 268 + } + ] + }, + "medium": { + "faces": [ + { + "x": 239, + "y": 759, + "h": 41, + "w": 41 + }, + { + "x": 606, + "y": 587, + "h": 57, + "w": 57 + }, + { + "x": 429, + "y": 492, + "h": 170, + "w": 170 + } + ] + }, + "small": { + "faces": [ + { + "x": 135, + "y": 430, + "h": 23, + "w": 23 + }, + { + "x": 343, + "y": 333, + "h": 32, + "w": 32 + }, + { + "x": 243, + "y": 279, + "h": 96, + "w": 96 + } + ] + }, + "orig": { + "faces": [ + { + "x": 377, + "y": 1194, + "h": 66, + "w": 66 + }, + { + "x": 953, + "y": 924, + "h": 90, + "w": 90 + }, + { + "x": 675, + "y": 774, + "h": 268, + "w": 268 + } + ] + } + }, + "sizes": { + "large": { + "h": 1885, + "w": 1284, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 817, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 463, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1885, + "width": 1284, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1284, + "h": 719 + }, + { + "x": 0, + "y": 0, + "w": 1284, + "h": 1284 + }, + { + "x": 0, + "y": 0, + "w": 1284, + "h": 1464 + }, + { + "x": 235, + "y": 0, + "w": 943, + "h": 1885 + }, + { + "x": 0, + "y": 0, + "w": 1284, + "h": 1885 + } + ] + } + } + ] + }, + "favorite_count": 54, + "favorited": false, + "full_text": "Budanov 13 months ago: Putin will die from cancer very soon but not before Ukraine’s victory which will happen in 2023. \n\nNot sure why that Putin’s double is giving scandalous interviews in the Ukrainian-controlled Kremlin. https://t.co/z59PZodRPH", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 3, + "reply_count": 8, + "retweet_count": 7, + "retweeted": false, + "user_id_str": "29010710", + "id_str": "1756254790135296349" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "list-conversation-1756309211907620918-tweet-1756255050756714767", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756255050756714767", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyOTAxMDcxMA==", + "rest_id": "29010710", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sun Apr 05 16:13:47 +0000 2009", + "default_profile": true, + "default_profile_image": false, + "description": "Nationality: journalist. Freelancer, made in the BBC. Reporting what you need to know, not what you want to hear. Also, Lonely Planet guides.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 21173, + "followers_count": 71287, + "friends_count": 4541, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2089, + "location": "", + "media_count": 5873, + "name": "Leonid ХВ Ragozin", + "normal_followers_count": 71287, + "pinned_tweet_ids_str": [ + "1747949666581287074" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/29010710/1610454802", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1098307078991593474/vBl5zWMc_normal.png", + "profile_interstitial_type": "", + "screen_name": "leonidragozin", + "statuses_count": 64179, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1630527445676818432", + "professional_type": "Business", + "category": [ + { + "id": 579, + "name": "Media & News", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "card": { + "rest_id": "https://t.co/06KzIzHkWa", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 361, + "width": 690, + "url": "https://pbs.twimg.com/card_img/1755935998557495297/aOksaOs9?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 150, + "width": 267, + "url": "https://pbs.twimg.com/card_img/1755935998557495297/aOksaOs9?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Глава главного управления разведки Кирилл Буданов рассказал, что российский диктатор Владимир Путин болен раком и умрет очень быстро, но уже после победы Украины в войне с Россией.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.pravda.com.ua", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 320, + "width": 571, + "url": "https://pbs.twimg.com/card_img/1755935998557495297/aOksaOs9?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755935998557495297/aOksaOs9?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 387, + "width": 690, + "url": "https://pbs.twimg.com/card_img/1755935998557495297/aOksaOs9?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "236466533", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755935998557495297/aOksaOs9?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 361, + "width": 690, + "url": "https://pbs.twimg.com/card_img/1755935998557495297/aOksaOs9?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 81, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1755935998557495297/aOksaOs9?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "creator", + "value": { + "type": "USER", + "user_value": { + "id_str": "236466533", + "path": [] + } + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 387, + "width": 690, + "url": "https://pbs.twimg.com/card_img/1755935998557495297/aOksaOs9?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 387, + "width": 690, + "url": "https://pbs.twimg.com/card_img/1755935998557495297/aOksaOs9?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "pravda.com.ua", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755935998557495297/aOksaOs9?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 47, + "green": 51, + "red": 56 + }, + "percentage": 68.14 + }, + { + "rgb": { + "blue": 93, + "green": 107, + "red": 109 + }, + "percentage": 19.84 + }, + { + "rgb": { + "blue": 61, + "green": 69, + "red": 109 + }, + "percentage": 4.31 + }, + { + "rgb": { + "blue": 29, + "green": 81, + "red": 103 + }, + "percentage": 2.42 + }, + { + "rgb": { + "blue": 73, + "green": 53, + "red": 51 + }, + "percentage": 1.66 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Буданов дал прогноз о смерти Путина: Очень быстро и скоро", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 47, + "green": 51, + "red": 56 + }, + "percentage": 68.14 + }, + { + "rgb": { + "blue": 93, + "green": 107, + "red": 109 + }, + "percentage": 19.84 + }, + { + "rgb": { + "blue": 61, + "green": 69, + "red": 109 + }, + "percentage": 4.31 + }, + { + "rgb": { + "blue": 29, + "green": 81, + "red": 103 + }, + "percentage": 2.42 + }, + { + "rgb": { + "blue": 73, + "green": 53, + "red": 51 + }, + "percentage": 1.66 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 387, + "width": 690, + "url": "https://pbs.twimg.com/card_img/1755935998557495297/aOksaOs9?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755935998557495297/aOksaOs9?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 47, + "green": 51, + "red": 56 + }, + "percentage": 68.14 + }, + { + "rgb": { + "blue": 93, + "green": 107, + "red": 109 + }, + "percentage": 19.84 + }, + { + "rgb": { + "blue": 61, + "green": 69, + "red": 109 + }, + "percentage": 4.31 + }, + { + "rgb": { + "blue": 29, + "green": 81, + "red": 103 + }, + "percentage": 2.42 + }, + { + "rgb": { + "blue": 73, + "green": 53, + "red": 51 + }, + "percentage": 1.66 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 387, + "width": 690, + "url": "https://pbs.twimg.com/card_img/1755935998557495297/aOksaOs9?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/06KzIzHkWa", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 387, + "width": 690, + "url": "https://pbs.twimg.com/card_img/1755935998557495297/aOksaOs9?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/06KzIzHkWa", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoyMzY0NjY1MzM=", + "rest_id": "236466533", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Mon Jan 10 17:14:52 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "Офіційний твітер УП 🇺🇦 English version - @pravda_eng", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "pravda.com.ua", + "expanded_url": "http://www.pravda.com.ua/", + "url": "https://t.co/EaSTc2cTkl", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 601, + "followers_count": 911353, + "friends_count": 297, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2702, + "location": "Ukraine, Kyiv", + "media_count": 177113, + "name": "Українська правда ✌️", + "normal_followers_count": 911353, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/236466533/1646575569", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1597208679257980930/Ujzp_V8C_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ukrpravda_news", + "statuses_count": 867673, + "translator_type": "regular", + "url": "https://t.co/EaSTc2cTkl", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + { + "result": { + "__typename": "User", + "id": "VXNlcjoyMzY0NjY1MzM=", + "rest_id": "236466533", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Mon Jan 10 17:14:52 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "Офіційний твітер УП 🇺🇦 English version - @pravda_eng", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "pravda.com.ua", + "expanded_url": "http://www.pravda.com.ua/", + "url": "https://t.co/EaSTc2cTkl", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 601, + "followers_count": 911353, + "friends_count": 297, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2702, + "location": "Ukraine, Kyiv", + "media_count": 177113, + "name": "Українська правда ✌️", + "normal_followers_count": 911353, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/236466533/1646575569", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1597208679257980930/Ujzp_V8C_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ukrpravda_news", + "statuses_count": 867673, + "translator_type": "regular", + "url": "https://t.co/EaSTc2cTkl", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756255050756714767" + ], + "editable_until_msecs": "1707562408000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1282", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:53:28 +0000 2024", + "conversation_id_str": "1756254790135296349", + "display_text_range": [ + 0, + 31 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "pravda.com.ua/rus/news/2023/…", + "expanded_url": "https://www.pravda.com.ua/rus/news/2023/01/4/7383575/", + "url": "https://t.co/06KzIzHkWa", + "indices": [ + 8, + 31 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 1, + "favorited": false, + "full_text": "Source: https://t.co/06KzIzHkWa", + "in_reply_to_screen_name": "leonidragozin", + "in_reply_to_status_id_str": "1756254790135296349", + "in_reply_to_user_id_str": "29010710", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "29010710", + "id_str": "1756255050756714767" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1756254790135296349", + "1756255050756714767" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756253804494753951", + "sortIndex": "1756309211907620809", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756253804494753951", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NzQ1NTExMg==", + "rest_id": "47455112", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Mon Jun 15 21:50:27 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Reporting on foreign policy. Current: Diplomatic Substack, Just Security ed bd. Al-Monitor Politico Foreign Policy alum. lkrozen threads, lkrozen.bsky, at gmail", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "diplomatic.substack.com", + "expanded_url": "https://diplomatic.substack.com/", + "url": "https://t.co/VBjgdai1Rl", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 228, + "followers_count": 175152, + "friends_count": 10077, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 4575, + "location": "Washington, D.C.", + "media_count": 6851, + "name": "Laura Rozen", + "normal_followers_count": 175152, + "pinned_tweet_ids_str": [ + "994000925793628160" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/47455112/1688651088", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/472902811630333952/hvAbmRyN_normal.jpeg", + "profile_interstitial_type": "", + "screen_name": "lrozen", + "statuses_count": 549980, + "translator_type": "none", + "url": "https://t.co/VBjgdai1Rl", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1587536294372155392", + "professional_type": "Creator", + "category": [ + { + "id": 955, + "name": "Journalist", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756253804494753951" + ], + "editable_until_msecs": "1707562111266", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:48:31 +0000 2024", + "conversation_id_str": "1756253804494753951", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "147962810", + "name": "Ramy Abdu| رامي عبده", + "screen_name": "RamAbdu", + "indices": [ + 3, + 11 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @RamAbdu: Horrific scenes: Palestinians retrieve dozens of bodies from the New Gaza School, operated by UNRWA. Civilians sought refuge a…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 484, + "retweeted": false, + "user_id_str": "47455112", + "id_str": "1756253804494753951", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756251436084511231", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDc5NjI4MTA=", + "rest_id": "147962810", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue May 25 13:52:48 +0000 2010", + "default_profile": true, + "default_profile_image": false, + "description": "Assist. Prof of Law & Finance. Chairman @EuroMedHR. Views expressed here are personal أستاذ مساعد في القانون والتمويل. مؤسس ورئيس المرصد الأورومتوسطي", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ramyabdu.com", + "expanded_url": "http://ramyabdu.com", + "url": "https://t.co/IkmLbAmlVx", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 38453, + "followers_count": 122603, + "friends_count": 849, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 779, + "location": "Gaza", + "media_count": 9577, + "name": "Ramy Abdu| رامي عبده", + "normal_followers_count": 122603, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/147962810/1565292144", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1724324994908405760/h3HPK2uE_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "RamAbdu", + "statuses_count": 69870, + "translator_type": "none", + "url": "https://t.co/IkmLbAmlVx", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756251436084511231" + ], + "editable_until_msecs": "1707561546000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "15464", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 41, + "bookmarked": false, + "created_at": "Sat Feb 10 09:39:06 +0000 2024", + "conversation_id_str": "1756251436084511231", + "display_text_range": [ + 0, + 208 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 195, + 208 + ], + "text": "GazaGenocide" + } + ], + "media": [ + { + "display_url": "pic.twitter.com/e48un7HYLr", + "expanded_url": "https://twitter.com/RamAbdu/status/1756251436084511231/video/1", + "id_str": "1756251145285042176", + "indices": [ + 209, + 232 + ], + "media_key": "13_1756251145285042176", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1756251145285042176/img/eheCZBwh9sjF6B3x.jpg", + "type": "video", + "url": "https://t.co/e48un7HYLr", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1920, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 675, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 383, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1920, + "width": 1080, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 90044, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1756251145285042176/pl/uZe7sYSS_UgiqPqB.m3u8?tag=14&container=cmaf" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756251145285042176/vid/avc1/480x852/sK5T3Zg3yKbF8k-K.mp4?tag=14" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756251145285042176/vid/avc1/320x568/KlldDHuZZW2NTvbE.mp4?tag=14" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756251145285042176/vid/avc1/720x1280/q3BZGKRLs7wilTpz.mp4?tag=14" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/e48un7HYLr", + "expanded_url": "https://twitter.com/RamAbdu/status/1756251436084511231/video/1", + "id_str": "1756251145285042176", + "indices": [ + 209, + 232 + ], + "media_key": "13_1756251145285042176", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1756251145285042176/img/eheCZBwh9sjF6B3x.jpg", + "type": "video", + "url": "https://t.co/e48un7HYLr", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1920, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 675, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 383, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1920, + "width": 1080, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 90044, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1756251145285042176/pl/uZe7sYSS_UgiqPqB.m3u8?tag=14&container=cmaf" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756251145285042176/vid/avc1/480x852/sK5T3Zg3yKbF8k-K.mp4?tag=14" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756251145285042176/vid/avc1/320x568/KlldDHuZZW2NTvbE.mp4?tag=14" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756251145285042176/vid/avc1/720x1280/q3BZGKRLs7wilTpz.mp4?tag=14" + } + ] + } + } + ] + }, + "favorite_count": 471, + "favorited": false, + "full_text": "Horrific scenes: Palestinians retrieve dozens of bodies from the New Gaza School, operated by UNRWA. Civilians sought refuge at the school, only to be chased down and killed by the Israeli army. #GazaGenocide https://t.co/e48un7HYLr", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": true, + "possibly_sensitive_editable": false, + "quote_count": 40, + "reply_count": 25, + "retweet_count": 484, + "retweeted": false, + "user_id_str": "147962810", + "id_str": "1756251436084511231" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756253600488059254", + "sortIndex": "1756309211907620808", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756253600488059254", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NzQ1NTExMg==", + "rest_id": "47455112", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Mon Jun 15 21:50:27 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Reporting on foreign policy. Current: Diplomatic Substack, Just Security ed bd. Al-Monitor Politico Foreign Policy alum. lkrozen threads, lkrozen.bsky, at gmail", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "diplomatic.substack.com", + "expanded_url": "https://diplomatic.substack.com/", + "url": "https://t.co/VBjgdai1Rl", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 228, + "followers_count": 175152, + "friends_count": 10077, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 4575, + "location": "Washington, D.C.", + "media_count": 6851, + "name": "Laura Rozen", + "normal_followers_count": 175152, + "pinned_tweet_ids_str": [ + "994000925793628160" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/47455112/1688651088", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/472902811630333952/hvAbmRyN_normal.jpeg", + "profile_interstitial_type": "", + "screen_name": "lrozen", + "statuses_count": 549980, + "translator_type": "none", + "url": "https://t.co/VBjgdai1Rl", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1587536294372155392", + "professional_type": "Creator", + "category": [ + { + "id": 955, + "name": "Journalist", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756253600488059254" + ], + "editable_until_msecs": "1707562062627", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:47:42 +0000 2024", + "conversation_id_str": "1756253600488059254", + "display_text_range": [ + 0, + 139 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 14, + 19 + ], + "text": "Gaza" + }, + { + "indices": [ + 48, + 60 + ], + "text": "Palestinian" + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "152036266", + "name": "sebastian usher", + "screen_name": "sebusher", + "indices": [ + 3, + 12 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @sebusher: #Gaza : Grandfather of 6 year old #Palestinian child Hind \"هند رجب\" says she has been found dead days after making desperate…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 4, + "retweeted": false, + "user_id_str": "47455112", + "id_str": "1756253600488059254", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756252088781218304", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTIwMzYyNjY=", + "rest_id": "152036266", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Fri Jun 04 22:37:58 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "middle east analyst/editor/reporter for @bbcworld All views my own - or at least stolen from someone good", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bbc.co.uk", + "expanded_url": "http://bbc.co.uk", + "url": "https://t.co/SpHSHypNXe", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 12273, + "followers_count": 7966, + "friends_count": 2400, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 181, + "location": "", + "media_count": 12552, + "name": "sebastian usher", + "normal_followers_count": 7966, + "pinned_tweet_ids_str": [ + "1431969658576441345" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/152036266/1358687782", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1678698645955158016/7KfXwVhO_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "sebusher", + "statuses_count": 36364, + "translator_type": "none", + "url": "https://t.co/SpHSHypNXe", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756252088781218304" + ], + "editable_until_msecs": "1707561702000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1988", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:41:42 +0000 2024", + "conversation_id_str": "1756252088781218304", + "display_text_range": [ + 0, + 280 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 0, + 5 + ], + "text": "Gaza" + }, + { + "indices": [ + 34, + 46 + ], + "text": "Palestinian" + }, + { + "indices": [ + 276, + 280 + ], + "text": "غزة" + } + ], + "media": [ + { + "display_url": "pic.twitter.com/zlHpQQA354", + "expanded_url": "https://twitter.com/sebusher/status/1756252088781218304/photo/1", + "id_str": "1756252084796637184", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756252084796637184", + "media_url_https": "https://pbs.twimg.com/media/GF9191JXwAA3vKz.jpg", + "type": "photo", + "url": "https://t.co/zlHpQQA354", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 292, + "y": 94, + "h": 90, + "w": 90 + }, + { + "x": 290, + "y": 196, + "h": 73, + "w": 73 + } + ] + }, + "medium": { + "faces": [ + { + "x": 292, + "y": 94, + "h": 90, + "w": 90 + }, + { + "x": 290, + "y": 196, + "h": 73, + "w": 73 + } + ] + }, + "small": { + "faces": [ + { + "x": 237, + "y": 76, + "h": 73, + "w": 73 + }, + { + "x": 235, + "y": 159, + "h": 59, + "w": 59 + } + ] + }, + "orig": { + "faces": [ + { + "x": 292, + "y": 94, + "h": 90, + "w": 90 + }, + { + "x": 290, + "y": 196, + "h": 73, + "w": 73 + } + ] + } + }, + "sizes": { + "large": { + "h": 557, + "w": 836, + "resize": "fit" + }, + "medium": { + "h": 557, + "w": 836, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 557, + "width": 836, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 836, + "h": 468 + }, + { + "x": 35, + "y": 0, + "w": 557, + "h": 557 + }, + { + "x": 69, + "y": 0, + "w": 489, + "h": 557 + }, + { + "x": 174, + "y": 0, + "w": 279, + "h": 557 + }, + { + "x": 0, + "y": 0, + "w": 836, + "h": 557 + } + ] + } + }, + { + "display_url": "pic.twitter.com/zlHpQQA354", + "expanded_url": "https://twitter.com/sebusher/status/1756252088781218304/photo/1", + "id_str": "1756252084784050176", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756252084784050176", + "media_url_https": "https://pbs.twimg.com/media/GF9191GXsAAPLwk.jpg", + "type": "photo", + "url": "https://t.co/zlHpQQA354", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 315, + "y": 67, + "h": 72, + "w": 72 + } + ] + }, + "medium": { + "faces": [ + { + "x": 315, + "y": 67, + "h": 72, + "w": 72 + } + ] + }, + "small": { + "faces": [ + { + "x": 315, + "y": 67, + "h": 72, + "w": 72 + } + ] + }, + "orig": { + "faces": [ + { + "x": 315, + "y": 67, + "h": 72, + "w": 72 + } + ] + } + }, + "sizes": { + "large": { + "h": 326, + "w": 488, + "resize": "fit" + }, + "medium": { + "h": 326, + "w": 488, + "resize": "fit" + }, + "small": { + "h": 326, + "w": 488, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 326, + "width": 488, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 488, + "h": 273 + }, + { + "x": 162, + "y": 0, + "w": 326, + "h": 326 + }, + { + "x": 202, + "y": 0, + "w": 286, + "h": 326 + }, + { + "x": 272, + "y": 0, + "w": 163, + "h": 326 + }, + { + "x": 0, + "y": 0, + "w": 488, + "h": 326 + } + ] + } + }, + { + "display_url": "pic.twitter.com/zlHpQQA354", + "expanded_url": "https://twitter.com/sebusher/status/1756252088781218304/photo/1", + "id_str": "1756252084792414208", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756252084792414208", + "media_url_https": "https://pbs.twimg.com/media/GF9191IXUAAjDPE.jpg", + "type": "photo", + "url": "https://t.co/zlHpQQA354", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 182, + "y": 66, + "h": 36, + "w": 36 + } + ] + }, + "medium": { + "faces": [ + { + "x": 182, + "y": 66, + "h": 36, + "w": 36 + } + ] + }, + "small": { + "faces": [ + { + "x": 182, + "y": 66, + "h": 36, + "w": 36 + } + ] + }, + "orig": { + "faces": [ + { + "x": 182, + "y": 66, + "h": 36, + "w": 36 + } + ] + } + }, + "sizes": { + "large": { + "h": 325, + "w": 488, + "resize": "fit" + }, + "medium": { + "h": 325, + "w": 488, + "resize": "fit" + }, + "small": { + "h": 325, + "w": 488, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 325, + "width": 488, + "focus_rects": [ + { + "x": 0, + "y": 22, + "w": 488, + "h": 273 + }, + { + "x": 163, + "y": 0, + "w": 325, + "h": 325 + }, + { + "x": 203, + "y": 0, + "w": 285, + "h": 325 + }, + { + "x": 325, + "y": 0, + "w": 163, + "h": 325 + }, + { + "x": 0, + "y": 0, + "w": 488, + "h": 325 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "288160069", + "name": "PRCS", + "screen_name": "PalestineRCS", + "indices": [ + 191, + 204 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/zlHpQQA354", + "expanded_url": "https://twitter.com/sebusher/status/1756252088781218304/photo/1", + "id_str": "1756252084796637184", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756252084796637184", + "media_url_https": "https://pbs.twimg.com/media/GF9191JXwAA3vKz.jpg", + "type": "photo", + "url": "https://t.co/zlHpQQA354", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 292, + "y": 94, + "h": 90, + "w": 90 + }, + { + "x": 290, + "y": 196, + "h": 73, + "w": 73 + } + ] + }, + "medium": { + "faces": [ + { + "x": 292, + "y": 94, + "h": 90, + "w": 90 + }, + { + "x": 290, + "y": 196, + "h": 73, + "w": 73 + } + ] + }, + "small": { + "faces": [ + { + "x": 237, + "y": 76, + "h": 73, + "w": 73 + }, + { + "x": 235, + "y": 159, + "h": 59, + "w": 59 + } + ] + }, + "orig": { + "faces": [ + { + "x": 292, + "y": 94, + "h": 90, + "w": 90 + }, + { + "x": 290, + "y": 196, + "h": 73, + "w": 73 + } + ] + } + }, + "sizes": { + "large": { + "h": 557, + "w": 836, + "resize": "fit" + }, + "medium": { + "h": 557, + "w": 836, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 557, + "width": 836, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 836, + "h": 468 + }, + { + "x": 35, + "y": 0, + "w": 557, + "h": 557 + }, + { + "x": 69, + "y": 0, + "w": 489, + "h": 557 + }, + { + "x": 174, + "y": 0, + "w": 279, + "h": 557 + }, + { + "x": 0, + "y": 0, + "w": 836, + "h": 557 + } + ] + } + }, + { + "display_url": "pic.twitter.com/zlHpQQA354", + "expanded_url": "https://twitter.com/sebusher/status/1756252088781218304/photo/1", + "id_str": "1756252084784050176", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756252084784050176", + "media_url_https": "https://pbs.twimg.com/media/GF9191GXsAAPLwk.jpg", + "type": "photo", + "url": "https://t.co/zlHpQQA354", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 315, + "y": 67, + "h": 72, + "w": 72 + } + ] + }, + "medium": { + "faces": [ + { + "x": 315, + "y": 67, + "h": 72, + "w": 72 + } + ] + }, + "small": { + "faces": [ + { + "x": 315, + "y": 67, + "h": 72, + "w": 72 + } + ] + }, + "orig": { + "faces": [ + { + "x": 315, + "y": 67, + "h": 72, + "w": 72 + } + ] + } + }, + "sizes": { + "large": { + "h": 326, + "w": 488, + "resize": "fit" + }, + "medium": { + "h": 326, + "w": 488, + "resize": "fit" + }, + "small": { + "h": 326, + "w": 488, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 326, + "width": 488, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 488, + "h": 273 + }, + { + "x": 162, + "y": 0, + "w": 326, + "h": 326 + }, + { + "x": 202, + "y": 0, + "w": 286, + "h": 326 + }, + { + "x": 272, + "y": 0, + "w": 163, + "h": 326 + }, + { + "x": 0, + "y": 0, + "w": 488, + "h": 326 + } + ] + } + }, + { + "display_url": "pic.twitter.com/zlHpQQA354", + "expanded_url": "https://twitter.com/sebusher/status/1756252088781218304/photo/1", + "id_str": "1756252084792414208", + "indices": [ + 281, + 304 + ], + "media_key": "3_1756252084792414208", + "media_url_https": "https://pbs.twimg.com/media/GF9191IXUAAjDPE.jpg", + "type": "photo", + "url": "https://t.co/zlHpQQA354", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 182, + "y": 66, + "h": 36, + "w": 36 + } + ] + }, + "medium": { + "faces": [ + { + "x": 182, + "y": 66, + "h": 36, + "w": 36 + } + ] + }, + "small": { + "faces": [ + { + "x": 182, + "y": 66, + "h": 36, + "w": 36 + } + ] + }, + "orig": { + "faces": [ + { + "x": 182, + "y": 66, + "h": 36, + "w": 36 + } + ] + } + }, + "sizes": { + "large": { + "h": 325, + "w": 488, + "resize": "fit" + }, + "medium": { + "h": 325, + "w": 488, + "resize": "fit" + }, + "small": { + "h": 325, + "w": 488, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 325, + "width": 488, + "focus_rects": [ + { + "x": 0, + "y": 22, + "w": 488, + "h": 273 + }, + { + "x": 163, + "y": 0, + "w": 325, + "h": 325 + }, + { + "x": 203, + "y": 0, + "w": 285, + "h": 325 + }, + { + "x": 325, + "y": 0, + "w": 163, + "h": 325 + }, + { + "x": 0, + "y": 0, + "w": 488, + "h": 325 + } + ] + } + } + ] + }, + "favorite_count": 7, + "favorited": false, + "full_text": "#Gaza : Grandfather of 6 year old #Palestinian child Hind \"هند رجب\" says she has been found dead days after making desperate call for rescue after her car was hit & family members killed-@PalestineRCS says 2 of their staff who rushed to help were killed by Israeli strike #غزة https://t.co/zlHpQQA354", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 1, + "retweet_count": 4, + "retweeted": false, + "user_id_str": "152036266", + "id_str": "1756252088781218304" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756253034668069206", + "sortIndex": "1756309211907620807", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756253034668069206", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyODg3NTUyMzQ=", + "rest_id": "288755234", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Wed Apr 27 12:18:25 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Founder and creative director of @Bellingcat and director of Bellingcat Productions BV. Author of We Are Bellingcat. Tonal Whiplash Zone.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bellingcat.com", + "expanded_url": "http://www.bellingcat.com", + "url": "https://t.co/ZoOPpVAJcd", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 17301, + "followers_count": 308635, + "friends_count": 3424, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 6362, + "location": "In front of a laptop.", + "media_count": 11269, + "name": "Eliot Higgins", + "normal_followers_count": 308635, + "pinned_tweet_ids_str": [ + "1756247409812771302" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/288755234/1703281459", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1638547444098015233/8N2MPkax_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "EliotHiggins", + "statuses_count": 296845, + "translator_type": "none", + "url": "https://t.co/ZoOPpVAJcd", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/A8OI4LsWq4", + "legacy": { + "binding_values": [ + { + "key": "app_star_rating", + "value": { + "string_value": "4.67713", + "type": "STRING" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 144, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1756253018637447168/EeCiMOQr?format=jpg&name=144x144_2" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "A how-to-series on the command line and Bellingcat research tools. Created with the beginner researcher in mind.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.youtube.com", + "type": "STRING" + } + }, + { + "key": "app_is_free", + "value": { + "string_value": "true", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 188, + "width": 188, + "url": "https://pbs.twimg.com/card_img/1756253018637447168/EeCiMOQr?format=jpg&name=280x280_2" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 188, + "width": 336, + "url": "https://pbs.twimg.com/card_img/1756253018637447168/EeCiMOQr?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "10228272", + "path": [] + } + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 100, + "width": 100, + "url": "https://pbs.twimg.com/card_img/1756253018637447168/EeCiMOQr?format=jpg&name=100x100_2" + }, + "type": "IMAGE" + } + }, + { + "key": "app_num_ratings", + "value": { + "string_value": "34,709,878", + "type": "STRING" + } + }, + { + "key": "app_price_amount", + "value": { + "string_value": "0.0", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 188, + "width": 336, + "url": "https://pbs.twimg.com/card_img/1756253018637447168/EeCiMOQr?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "youtube.com", + "type": "STRING" + } + }, + { + "key": "app_name", + "value": { + "string_value": "YouTube: Watch, Listen, Stream", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 0, + "green": 0, + "red": 0 + }, + "percentage": 59.98 + }, + { + "rgb": { + "blue": 199, + "green": 191, + "red": 190 + }, + "percentage": 19.36 + }, + { + "rgb": { + "blue": 116, + "green": 142, + "red": 186 + }, + "percentage": 9.21 + }, + { + "rgb": { + "blue": 61, + "green": 22, + "red": 17 + }, + "percentage": 2.11 + }, + { + "rgb": { + "blue": 100, + "green": 175, + "red": 213 + }, + "percentage": 1.19 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Bellingcat Tech Series", + "type": "STRING" + } + }, + { + "key": "app_price_currency", + "value": { + "string_value": "USD", + "type": "STRING" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/A8OI4LsWq4", + "type": "STRING" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary", + "url": "https://t.co/A8OI4LsWq4", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoxMDIyODI3Mg==", + "rest_id": "10228272", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Nov 13 21:43:46 +0000 2007", + "default_profile": false, + "default_profile_image": false, + "description": "like and subscribe.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "youtube.com", + "expanded_url": "http://youtube.com", + "url": "https://t.co/bUisN3Y1A6", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 6189, + "followers_count": 79755986, + "friends_count": 1173, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 79777, + "location": "San Bruno, CA", + "media_count": 15778, + "name": "YouTube", + "normal_followers_count": 79755986, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10228272/1706796151", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "YouTube", + "statuses_count": 57697, + "translator_type": "regular", + "url": "https://t.co/bUisN3Y1A6", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756253034668069206" + ], + "editable_until_msecs": "1707561927000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "19979", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 75, + "bookmarked": false, + "created_at": "Sat Feb 10 09:45:27 +0000 2024", + "conversation_id_str": "1756253034668069206", + "display_text_range": [ + 0, + 164 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "youtube.com/playlist?list=…", + "expanded_url": "https://www.youtube.com/playlist?list=PLq6cQ--4f90icDJUwiGcPrFFLLguuZ0ht", + "url": "https://t.co/A8OI4LsWq4", + "indices": [ + 141, + 164 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 142, + "favorited": false, + "full_text": "We've started a new series on Bellingcat to teach anyone how to use more technically complex tools, starting with Command Lines Fundamentals https://t.co/A8OI4LsWq4", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 3, + "retweet_count": 45, + "retweeted": false, + "user_id_str": "288755234", + "id_str": "1756253034668069206" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756251383131455706", + "sortIndex": "1756309211907620806", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756251383131455706", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NDA4MzE4Nw==", + "rest_id": "84083187", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Oct 21 13:42:34 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Ukraine Correspondent. British-Lebanese conflict journalist & filmmaker based in Kyiv. Co-host of @DrillPod. RTs ≠ endorsement.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ko-fi.com/ozkaterji", + "expanded_url": "http://ko-fi.com/ozkaterji", + "url": "https://t.co/FC9pQbgXa4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 45500, + "followers_count": 215887, + "friends_count": 11666, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3397, + "location": "Kyiv, Ukraine", + "media_count": 6412, + "name": "Oz Katerji", + "normal_followers_count": 215887, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84083187/1647382697", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713181637574275072/gUp8KMF4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OzKaterji", + "statuses_count": 174699, + "translator_type": "none", + "url": "https://t.co/FC9pQbgXa4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756251383131455706" + ], + "editable_until_msecs": "1707561533968", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:38:53 +0000 2024", + "conversation_id_str": "1756251383131455706", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "438111039", + "name": "Steve Rosenberg", + "screen_name": "BBCSteveR", + "indices": [ + 3, + 13 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @BBCSteveR: For Vladimir Putin the Tucker Carlson interview was a platform for transmitting the Kremlin's narrative to the West - and fo…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 714, + "retweeted": false, + "user_id_str": "84083187", + "id_str": "1756251383131455706", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756076393757094269", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0MzgxMTEwMzk=", + "rest_id": "438111039", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Fri Dec 16 05:57:09 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "Russia Editor for BBC News", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "news.bbc.co.uk", + "expanded_url": "http://news.bbc.co.uk", + "url": "https://t.co/m4noclc80a", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 18643, + "followers_count": 272824, + "friends_count": 4321, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 4467, + "location": "Moscow", + "media_count": 3892, + "name": "Steve Rosenberg", + "normal_followers_count": 272824, + "pinned_tweet_ids_str": [ + "1741368598696759369" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/438111039/1355528044", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/2286630588/xrtdw68jkgzoexzkf55i_normal.jpeg", + "profile_interstitial_type": "", + "screen_name": "BBCSteveR", + "statuses_count": 19758, + "translator_type": "none", + "url": "https://t.co/m4noclc80a", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756076393757094269" + ], + "editable_until_msecs": "1707519813000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "234789", + "state": "EnabledWithCount" + }, + "source": "Twitter Media Studio", + "legacy": { + "bookmark_count": 222, + "bookmarked": false, + "created_at": "Fri Feb 09 22:03:33 +0000 2024", + "conversation_id_str": "1756076393757094269", + "display_text_range": [ + 0, + 230 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/QkVWD4quEK", + "expanded_url": "https://twitter.com/BBCSteveR/status/1756076393757094269/video/1", + "id_str": "1756073599188844544", + "indices": [ + 231, + 254 + ], + "media_key": "13_1756073599188844544", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1756073599188844544/img/i84vGV-Eb54u-3F2.jpg", + "type": "video", + "url": "https://t.co/QkVWD4quEK", + "additional_media_info": { + "title": "", + "description": "", + "embeddable": true, + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1920, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1920, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 154520, + "variants": [ + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756073599188844544/vid/avc1/640x360/D-04MP3ptgyFwoQ5.mp4?tag=16" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756073599188844544/vid/avc1/1280x720/nD7oiS7o5X4hGCOd.mp4?tag=16" + }, + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756073599188844544/vid/avc1/480x270/lNU-w1XVUQFsrEaI.mp4?tag=16" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1756073599188844544/pl/ymmtdFUvFtHBQ3eq.m3u8?tag=16&container=cmaf" + }, + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756073599188844544/vid/avc1/1920x1080/0tvJo_dn0Gq4Olqu.mp4?tag=16" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "612473", + "name": "BBC News (UK)", + "screen_name": "BBCNews", + "indices": [ + 201, + 209 + ] + }, + { + "id_str": "93873519", + "name": "Ben Tavener", + "screen_name": "BenTavener", + "indices": [ + 219, + 230 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/QkVWD4quEK", + "expanded_url": "https://twitter.com/BBCSteveR/status/1756076393757094269/video/1", + "id_str": "1756073599188844544", + "indices": [ + 231, + 254 + ], + "media_key": "13_1756073599188844544", + "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1756073599188844544/img/i84vGV-Eb54u-3F2.jpg", + "type": "video", + "url": "https://t.co/QkVWD4quEK", + "additional_media_info": { + "title": "", + "description": "", + "embeddable": true, + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1080, + "w": 1920, + "resize": "fit" + }, + "medium": { + "h": 675, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1920, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 154520, + "variants": [ + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756073599188844544/vid/avc1/640x360/D-04MP3ptgyFwoQ5.mp4?tag=16" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756073599188844544/vid/avc1/1280x720/nD7oiS7o5X4hGCOd.mp4?tag=16" + }, + { + "bitrate": 288000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756073599188844544/vid/avc1/480x270/lNU-w1XVUQFsrEaI.mp4?tag=16" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/amplify_video/1756073599188844544/pl/ymmtdFUvFtHBQ3eq.m3u8?tag=16&container=cmaf" + }, + { + "bitrate": 10368000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/amplify_video/1756073599188844544/vid/avc1/1920x1080/0tvJo_dn0Gq4Olqu.mp4?tag=16" + } + ] + } + } + ] + }, + "favorite_count": 3130, + "favorited": false, + "full_text": "For Vladimir Putin the Tucker Carlson interview was a platform for transmitting the Kremlin's narrative to the West - and for 2 hours he was allowed to do that pretty much unchallenged. Our report for @BBCNews Producer @BenTavener https://t.co/QkVWD4quEK", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 97, + "reply_count": 603, + "retweet_count": 714, + "retweeted": false, + "user_id_str": "438111039", + "id_str": "1756076393757094269" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756251151505265120", + "sortIndex": "1756309211907620805", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756251151505265120", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjMwMTg2NTM=", + "rest_id": "163018653", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Jul 05 09:44:27 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Ambassador-at-large @MFA_Ukraine, Amb to Austria (2014-2021). Author of “Ukraine vs Darkness. Undiplomatic Thoughts”. Personal account.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amazon.com/Ukraine-vs-Dar…", + "expanded_url": "https://www.amazon.com/Ukraine-vs-Darkness-Undiplomatic-Ukrainian-ebook/dp/B08WKF3B2K", + "url": "https://t.co/ERA9Ntt061", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 28758, + "followers_count": 264429, + "friends_count": 1248, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 4354, + "location": "Kyiv", + "media_count": 6624, + "name": "olexander scherba🇺🇦", + "normal_followers_count": 264429, + "pinned_tweet_ids_str": [ + "1396956590713020416" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/163018653/1646220178", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671642770549956608/yR9Is6BD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "olex_scherba", + "statuses_count": 40000, + "translator_type": "none", + "url": "https://t.co/ERA9Ntt061", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1696586841602834861", + "professional_type": "Business", + "category": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/MqIjSzAwtb", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 146, + "width": 280, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Republican obstructionism could lead to global disaster.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.theatlantic.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 313, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=600x600" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 625, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "35773039", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 75, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 625, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 625, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "theatlantic.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 148, + "green": 104, + "red": 71 + }, + "percentage": 91.37 + }, + { + "rgb": { + "blue": 174, + "green": 168, + "red": 164 + }, + "percentage": 3.91 + }, + { + "rgb": { + "blue": 56, + "green": 52, + "red": 51 + }, + "percentage": 1.84 + }, + { + "rgb": { + "blue": 158, + "green": 129, + "red": 107 + }, + "percentage": 0.27 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "If Russia Wins", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 148, + "green": 104, + "red": 71 + }, + "percentage": 91.37 + }, + { + "rgb": { + "blue": 174, + "green": 168, + "red": 164 + }, + "percentage": 3.91 + }, + { + "rgb": { + "blue": 56, + "green": 52, + "red": 51 + }, + "percentage": 1.84 + }, + { + "rgb": { + "blue": 158, + "green": 129, + "red": 107 + }, + "percentage": 0.27 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 625, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 148, + "green": 104, + "red": 71 + }, + "percentage": 91.37 + }, + { + "rgb": { + "blue": 174, + "green": 168, + "red": 164 + }, + "percentage": 3.91 + }, + { + "rgb": { + "blue": 56, + "green": 52, + "red": 51 + }, + "percentage": 1.84 + }, + { + "rgb": { + "blue": 158, + "green": 129, + "red": 107 + }, + "percentage": 0.27 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 625, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/MqIjSzAwtb", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 625, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/MqIjSzAwtb", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjozNTc3MzAzOQ==", + "rest_id": "35773039", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Apr 27 15:41:54 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Exploring the American idea through ambitious, essential reporting and storytelling. Of no party or clique since 1857. https://t.co/uHeZCz8ahz", + "entities": { + "description": { + "urls": [ + { + "display_url": "theatlantic.com", + "expanded_url": "http://theatlantic.com", + "url": "https://t.co/uHeZCz8ahz", + "indices": [ + 119, + 142 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "theatlantic.com/subscribe", + "expanded_url": "http://theatlantic.com/subscribe", + "url": "https://t.co/j4JSgDlv80", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 1388, + "followers_count": 2089144, + "friends_count": 1078, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 29870, + "location": "", + "media_count": 59629, + "name": "The Atlantic", + "normal_followers_count": 2089144, + "pinned_tweet_ids_str": [ + "1751945386313335121" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/35773039/1573659023", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1604927618775764993/WJdNY4fH_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "TheAtlantic", + "statuses_count": 227438, + "translator_type": "none", + "url": "https://t.co/j4JSgDlv80", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756251151505265120" + ], + "editable_until_msecs": "1707561478744", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:37:58 +0000 2024", + "conversation_id_str": "1756251151505265120", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "35773039", + "name": "The Atlantic", + "screen_name": "TheAtlantic", + "indices": [ + 3, + 15 + ] + }, + { + "id_str": "459872442", + "name": "Tom Nichols", + "screen_name": "RadioFreeTom", + "indices": [ + 110, + 123 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @TheAtlantic: “If the United States does not step back in with aid, Russia could eventually win this war,” @RadioFreeTom writes in The A…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 231, + "retweeted": false, + "user_id_str": "163018653", + "id_str": "1756251151505265120", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756034032150655425", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozNTc3MzAzOQ==", + "rest_id": "35773039", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Apr 27 15:41:54 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Exploring the American idea through ambitious, essential reporting and storytelling. Of no party or clique since 1857. https://t.co/uHeZCz8ahz", + "entities": { + "description": { + "urls": [ + { + "display_url": "theatlantic.com", + "expanded_url": "http://theatlantic.com", + "url": "https://t.co/uHeZCz8ahz", + "indices": [ + 119, + 142 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "theatlantic.com/subscribe", + "expanded_url": "http://theatlantic.com/subscribe", + "url": "https://t.co/j4JSgDlv80", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 1388, + "followers_count": 2089144, + "friends_count": 1078, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 29870, + "location": "", + "media_count": 59629, + "name": "The Atlantic", + "normal_followers_count": 2089144, + "pinned_tweet_ids_str": [ + "1751945386313335121" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/35773039/1573659023", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1604927618775764993/WJdNY4fH_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "TheAtlantic", + "statuses_count": 227438, + "translator_type": "none", + "url": "https://t.co/j4JSgDlv80", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/MqIjSzAwtb", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 146, + "width": 280, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Republican obstructionism could lead to global disaster.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.theatlantic.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 313, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=600x600" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 625, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "35773039", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 75, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 625, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 625, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "theatlantic.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 148, + "green": 104, + "red": 71 + }, + "percentage": 91.37 + }, + { + "rgb": { + "blue": 174, + "green": 168, + "red": 164 + }, + "percentage": 3.91 + }, + { + "rgb": { + "blue": 56, + "green": 52, + "red": 51 + }, + "percentage": 1.84 + }, + { + "rgb": { + "blue": 158, + "green": 129, + "red": 107 + }, + "percentage": 0.27 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "If Russia Wins", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 148, + "green": 104, + "red": 71 + }, + "percentage": 91.37 + }, + { + "rgb": { + "blue": 174, + "green": 168, + "red": 164 + }, + "percentage": 3.91 + }, + { + "rgb": { + "blue": 56, + "green": 52, + "red": 51 + }, + "percentage": 1.84 + }, + { + "rgb": { + "blue": 158, + "green": 129, + "red": 107 + }, + "percentage": 0.27 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 625, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 148, + "green": 104, + "red": 71 + }, + "percentage": 91.37 + }, + { + "rgb": { + "blue": 174, + "green": 168, + "red": 164 + }, + "percentage": 3.91 + }, + { + "rgb": { + "blue": 56, + "green": 52, + "red": 51 + }, + "percentage": 1.84 + }, + { + "rgb": { + "blue": 158, + "green": 129, + "red": 107 + }, + "percentage": 0.27 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 625, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/MqIjSzAwtb", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 625, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1755739835346649088/W3eji3hQ?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/MqIjSzAwtb", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjozNTc3MzAzOQ==", + "rest_id": "35773039", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Apr 27 15:41:54 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Exploring the American idea through ambitious, essential reporting and storytelling. Of no party or clique since 1857. https://t.co/uHeZCz8ahz", + "entities": { + "description": { + "urls": [ + { + "display_url": "theatlantic.com", + "expanded_url": "http://theatlantic.com", + "url": "https://t.co/uHeZCz8ahz", + "indices": [ + 119, + 142 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "theatlantic.com/subscribe", + "expanded_url": "http://theatlantic.com/subscribe", + "url": "https://t.co/j4JSgDlv80", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 1388, + "followers_count": 2089144, + "friends_count": 1078, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 29870, + "location": "", + "media_count": 59629, + "name": "The Atlantic", + "normal_followers_count": 2089144, + "pinned_tweet_ids_str": [ + "1751945386313335121" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/35773039/1573659023", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1604927618775764993/WJdNY4fH_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "TheAtlantic", + "statuses_count": 227438, + "translator_type": "none", + "url": "https://t.co/j4JSgDlv80", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756034032150655425" + ], + "editable_until_msecs": "1707509713000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "87279", + "state": "EnabledWithCount" + }, + "source": "trueanthem_pro2", + "legacy": { + "bookmark_count": 22, + "bookmarked": false, + "created_at": "Fri Feb 09 19:15:13 +0000 2024", + "conversation_id_str": "1756034032150655425", + "display_text_range": [ + 0, + 246 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "theatlantic.com/newsletters/ar…", + "expanded_url": "https://www.theatlantic.com/newsletters/archive/2024/02/if-russia-wins/677398/?taid=65c679b947c3790001f5138d&utm_campaign=the-atlantic&utm_content=true-anthem&utm_medium=social&utm_source=twitter", + "url": "https://t.co/MqIjSzAwtb", + "indices": [ + 223, + 246 + ] + } + ], + "user_mentions": [ + { + "id_str": "459872442", + "name": "Tom Nichols", + "screen_name": "RadioFreeTom", + "indices": [ + 93, + 106 + ] + } + ] + }, + "favorite_count": 625, + "favorited": false, + "full_text": "“If the United States does not step back in with aid, Russia could eventually win this war,” @RadioFreeTom writes in The Atlantic Daily. “The peace of the world itself could rest on what Congress does—or does not do—next.” https://t.co/MqIjSzAwtb", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 11, + "reply_count": 28, + "retweet_count": 231, + "retweeted": false, + "user_id_str": "35773039", + "id_str": "1756034032150655425" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756250006359560596", + "sortIndex": "1756309211907620804", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756250006359560596", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyOTAxMDcxMA==", + "rest_id": "29010710", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sun Apr 05 16:13:47 +0000 2009", + "default_profile": true, + "default_profile_image": false, + "description": "Nationality: journalist. Freelancer, made in the BBC. Reporting what you need to know, not what you want to hear. Also, Lonely Planet guides.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 21173, + "followers_count": 71287, + "friends_count": 4541, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2089, + "location": "", + "media_count": 5873, + "name": "Leonid ХВ Ragozin", + "normal_followers_count": 71287, + "pinned_tweet_ids_str": [ + "1747949666581287074" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/29010710/1610454802", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1098307078991593474/vBl5zWMc_normal.png", + "profile_interstitial_type": "", + "screen_name": "leonidragozin", + "statuses_count": 64179, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1630527445676818432", + "professional_type": "Business", + "category": [ + { + "id": 579, + "name": "Media & News", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "card": { + "rest_id": "https://t.co/VQUhdqbBaI", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "app_star_rating", + "value": { + "string_value": "4.86347", + "type": "STRING" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 147, + "width": 280, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Philippe Lazzarini says summary dismissal of nine employees was ‘reverse due process’ after Israel’s claims they aided Hamas attack", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.theguardian.com", + "type": "STRING" + } + }, + { + "key": "app_is_free", + "value": { + "string_value": "true", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 315, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=600x600" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "87818409", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 76, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "creator", + "value": { + "type": "USER", + "user_value": { + "id_str": "196550849", + "path": [] + } + } + }, + { + "key": "app_num_ratings", + "value": { + "string_value": "107,990", + "type": "STRING" + } + }, + { + "key": "app_price_amount", + "value": { + "string_value": "0.0", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "theguardian.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "app_name", + "value": { + "string_value": "The Guardian - Live World News", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 34, + "green": 34, + "red": 41 + }, + "percentage": 40.0 + }, + { + "rgb": { + "blue": 201, + "green": 201, + "red": 201 + }, + "percentage": 27.83 + }, + { + "rgb": { + "blue": 95, + "green": 45, + "red": 13 + }, + "percentage": 10.17 + }, + { + "rgb": { + "blue": 51, + "green": 38, + "red": 27 + }, + "percentage": 2.17 + }, + { + "rgb": { + "blue": 30, + "green": 4, + "red": 77 + }, + "percentage": 1.77 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "UNRWA staff accused by Israel sacked without evidence, chief admits", + "type": "STRING" + } + }, + { + "key": "app_price_currency", + "value": { + "string_value": "USD", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 34, + "green": 34, + "red": 41 + }, + "percentage": 40.0 + }, + { + "rgb": { + "blue": 201, + "green": 201, + "red": 201 + }, + "percentage": 27.83 + }, + { + "rgb": { + "blue": 95, + "green": 45, + "red": 13 + }, + "percentage": 10.17 + }, + { + "rgb": { + "blue": 51, + "green": 38, + "red": 27 + }, + "percentage": 2.17 + }, + { + "rgb": { + "blue": 30, + "green": 4, + "red": 77 + }, + "percentage": 1.77 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 34, + "green": 34, + "red": 41 + }, + "percentage": 40.0 + }, + { + "rgb": { + "blue": 201, + "green": 201, + "red": 201 + }, + "percentage": 27.83 + }, + { + "rgb": { + "blue": 95, + "green": 45, + "red": 13 + }, + "percentage": 10.17 + }, + { + "rgb": { + "blue": 51, + "green": 38, + "red": 27 + }, + "percentage": 2.17 + }, + { + "rgb": { + "blue": 30, + "green": 4, + "red": 77 + }, + "percentage": 1.77 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/VQUhdqbBaI", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/VQUhdqbBaI", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoxOTY1NTA4NDk=", + "rest_id": "196550849", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Wed Sep 29 11:26:49 +0000 2010", + "default_profile": true, + "default_profile_image": false, + "description": "Senior reporter at the Guardian", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 323, + "followers_count": 1664, + "friends_count": 2179, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 41, + "location": "London", + "media_count": 7, + "name": "Emine Sinmaz", + "normal_followers_count": 1664, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/196550849/1690493851", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1653469276467019793/W3DyR2QH_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "Emine_Sinmaz", + "statuses_count": 99, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + { + "result": { + "__typename": "User", + "id": "VXNlcjo4NzgxODQwOQ==", + "rest_id": "87818409", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Nov 05 23:49:19 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "The need for independent journalism has never been greater. Become a Guardian supporter: https://t.co/kFXqbVRovR", + "entities": { + "description": { + "urls": [ + { + "display_url": "support.theguardian.com", + "expanded_url": "http://support.theguardian.com", + "url": "https://t.co/kFXqbVRovR", + "indices": [ + 89, + 112 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "theguardian.com", + "expanded_url": "https://www.theguardian.com", + "url": "https://t.co/KHA6KFoD05", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 143, + "followers_count": 10908349, + "friends_count": 1039, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 71541, + "location": "London", + "media_count": 24371, + "name": "The Guardian", + "normal_followers_count": 10908349, + "pinned_tweet_ids_str": [ + "1745098247968874729" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/87818409/1695201078", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1175141826870861825/K2qKoGla_normal.png", + "profile_interstitial_type": "", + "screen_name": "guardian", + "statuses_count": 842490, + "translator_type": "regular", + "url": "https://t.co/KHA6KFoD05", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756250006359560596" + ], + "editable_until_msecs": "1707561205720", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:33:25 +0000 2024", + "conversation_id_str": "1756250006359560596", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "17839398", + "name": "Kenneth Roth", + "screen_name": "KenRoth", + "indices": [ + 3, + 11 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @KenRoth: The UNRWA chief admits he fired staff based only on accusations by Israel, no evidence. Only then did he start an investigatio…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 793, + "retweeted": false, + "user_id_str": "29010710", + "id_str": "1756250006359560596", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756222021510307961", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzgzOTM5OA==", + "rest_id": "17839398", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed Dec 03 15:55:20 +0000 2008", + "default_profile": true, + "default_profile_image": false, + "description": "Former executive director of Human Rights Watch (1993-2022). Now visiting professor at Princeton SPIA. My book, \"Righting Wrongs,\" to be published by Knopf.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 7, + "followers_count": 603035, + "friends_count": 1159, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 5375, + "location": "New York and Geneva", + "media_count": 50395, + "name": "Kenneth Roth", + "normal_followers_count": 603035, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17839398/1627140816", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/759478721808068608/F5s3fgyl_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KenRoth", + "statuses_count": 105280, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/VQUhdqbBaI", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "app_star_rating", + "value": { + "string_value": "4.86347", + "type": "STRING" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 147, + "width": 280, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Philippe Lazzarini says summary dismissal of nine employees was ‘reverse due process’ after Israel’s claims they aided Hamas attack", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.theguardian.com", + "type": "STRING" + } + }, + { + "key": "app_is_free", + "value": { + "string_value": "true", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 315, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=600x600" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "87818409", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 76, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "creator", + "value": { + "type": "USER", + "user_value": { + "id_str": "196550849", + "path": [] + } + } + }, + { + "key": "app_num_ratings", + "value": { + "string_value": "107,990", + "type": "STRING" + } + }, + { + "key": "app_price_amount", + "value": { + "string_value": "0.0", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "theguardian.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "app_name", + "value": { + "string_value": "The Guardian - Live World News", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 34, + "green": 34, + "red": 41 + }, + "percentage": 40.0 + }, + { + "rgb": { + "blue": 201, + "green": 201, + "red": 201 + }, + "percentage": 27.83 + }, + { + "rgb": { + "blue": 95, + "green": 45, + "red": 13 + }, + "percentage": 10.17 + }, + { + "rgb": { + "blue": 51, + "green": 38, + "red": 27 + }, + "percentage": 2.17 + }, + { + "rgb": { + "blue": 30, + "green": 4, + "red": 77 + }, + "percentage": 1.77 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "UNRWA staff accused by Israel sacked without evidence, chief admits", + "type": "STRING" + } + }, + { + "key": "app_price_currency", + "value": { + "string_value": "USD", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 34, + "green": 34, + "red": 41 + }, + "percentage": 40.0 + }, + { + "rgb": { + "blue": 201, + "green": 201, + "red": 201 + }, + "percentage": 27.83 + }, + { + "rgb": { + "blue": 95, + "green": 45, + "red": 13 + }, + "percentage": 10.17 + }, + { + "rgb": { + "blue": 51, + "green": 38, + "red": 27 + }, + "percentage": 2.17 + }, + { + "rgb": { + "blue": 30, + "green": 4, + "red": 77 + }, + "percentage": 1.77 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 34, + "green": 34, + "red": 41 + }, + "percentage": 40.0 + }, + { + "rgb": { + "blue": 201, + "green": 201, + "red": 201 + }, + "percentage": 27.83 + }, + { + "rgb": { + "blue": 95, + "green": 45, + "red": 13 + }, + "percentage": 10.17 + }, + { + "rgb": { + "blue": 51, + "green": 38, + "red": 27 + }, + "percentage": 2.17 + }, + { + "rgb": { + "blue": 30, + "green": 4, + "red": 77 + }, + "percentage": 1.77 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/VQUhdqbBaI", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 630, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1756009218115870721/GSEJ_3BL?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/VQUhdqbBaI", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoxOTY1NTA4NDk=", + "rest_id": "196550849", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Wed Sep 29 11:26:49 +0000 2010", + "default_profile": true, + "default_profile_image": false, + "description": "Senior reporter at the Guardian", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 323, + "followers_count": 1664, + "friends_count": 2179, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 41, + "location": "London", + "media_count": 7, + "name": "Emine Sinmaz", + "normal_followers_count": 1664, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/196550849/1690493851", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1653469276467019793/W3DyR2QH_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "Emine_Sinmaz", + "statuses_count": 99, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + { + "result": { + "__typename": "User", + "id": "VXNlcjo4NzgxODQwOQ==", + "rest_id": "87818409", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Nov 05 23:49:19 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "The need for independent journalism has never been greater. Become a Guardian supporter: https://t.co/kFXqbVRovR", + "entities": { + "description": { + "urls": [ + { + "display_url": "support.theguardian.com", + "expanded_url": "http://support.theguardian.com", + "url": "https://t.co/kFXqbVRovR", + "indices": [ + 89, + 112 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "theguardian.com", + "expanded_url": "https://www.theguardian.com", + "url": "https://t.co/KHA6KFoD05", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 143, + "followers_count": 10908349, + "friends_count": 1039, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 71541, + "location": "London", + "media_count": 24371, + "name": "The Guardian", + "normal_followers_count": 10908349, + "pinned_tweet_ids_str": [ + "1745098247968874729" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/87818409/1695201078", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1175141826870861825/K2qKoGla_normal.png", + "profile_interstitial_type": "", + "screen_name": "guardian", + "statuses_count": 842490, + "translator_type": "regular", + "url": "https://t.co/KHA6KFoD05", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756222021510307961" + ], + "editable_until_msecs": "1707554533000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "37511", + "state": "EnabledWithCount" + }, + "source": "SocialFlow", + "legacy": { + "bookmark_count": 53, + "bookmarked": false, + "created_at": "Sat Feb 10 07:42:13 +0000 2024", + "conversation_id_str": "1756222021510307961", + "display_text_range": [ + 0, + 269 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "trib.al/hOFX1AA", + "expanded_url": "https://trib.al/hOFX1AA", + "url": "https://t.co/VQUhdqbBaI", + "indices": [ + 246, + 269 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 1261, + "favorited": false, + "full_text": "The UNRWA chief admits he fired staff based only on accusations by Israel, no evidence. Only then did he start an investigation -- \"reverse due process.\" Yet governments suspended aid to UNRWA anyway, risking more Palestinian starvation in Gaza. https://t.co/VQUhdqbBaI", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 20, + "reply_count": 43, + "retweet_count": 793, + "retweeted": false, + "user_id_str": "17839398", + "id_str": "1756222021510307961" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756249720643600448", + "sortIndex": "1756309211907620803", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756249720643600448", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NzQ1NTExMg==", + "rest_id": "47455112", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Mon Jun 15 21:50:27 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Reporting on foreign policy. Current: Diplomatic Substack, Just Security ed bd. Al-Monitor Politico Foreign Policy alum. lkrozen threads, lkrozen.bsky, at gmail", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "diplomatic.substack.com", + "expanded_url": "https://diplomatic.substack.com/", + "url": "https://t.co/VBjgdai1Rl", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 228, + "followers_count": 175152, + "friends_count": 10077, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 4575, + "location": "Washington, D.C.", + "media_count": 6851, + "name": "Laura Rozen", + "normal_followers_count": 175152, + "pinned_tweet_ids_str": [ + "994000925793628160" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/47455112/1688651088", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/472902811630333952/hvAbmRyN_normal.jpeg", + "profile_interstitial_type": "", + "screen_name": "lrozen", + "statuses_count": 549980, + "translator_type": "none", + "url": "https://t.co/VBjgdai1Rl", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1587536294372155392", + "professional_type": "Creator", + "category": [ + { + "id": 955, + "name": "Journalist", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756249720643600448" + ], + "editable_until_msecs": "1707561137600", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:32:17 +0000 2024", + "conversation_id_str": "1756249720643600448", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "235899366", + "name": "Ruslan Stefanchuk", + "screen_name": "r_stefanchuk", + "indices": [ + 3, + 16 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @r_stefanchuk: Another terrible night for Kharkiv.\nThe enemy attacked the city with drones, damaging civilian infrastructure and causing…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 68, + "retweeted": false, + "user_id_str": "47455112", + "id_str": "1756249720643600448", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756249468326875391", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyMzU4OTkzNjY=", + "rest_id": "235899366", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Jan 09 09:55:41 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "The Chairperson of the Verkhovna Rada (Parliament) of Ukraine, Jur. D. (Dr. habil.) in Law, Professor", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 772, + "followers_count": 48809, + "friends_count": 194, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 395, + "location": "Ukraine, Kyiv", + "media_count": 1295, + "name": "Ruslan Stefanchuk", + "normal_followers_count": 48809, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/235899366/1635235156", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1585561447102382081/KaOxpZ5q_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "r_stefanchuk", + "statuses_count": 2204, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1461373783881789444", + "professional_type": "Creator", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756249468326875391" + ], + "editable_until_msecs": "1707561077000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "4537", + "state": "EnabledWithCount" + }, + "source": "Twitter for Android", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE3NTYyNDk0NjgyNDcwODkxNTI=", + "text": "Another terrible night for Kharkiv.\nThe enemy attacked the city with drones, damaging civilian infrastructure and causing a large-scale fire.\n\nMore than a dozen private houses burned to the ground. Unfortunately, there are victims, including children. My sincere condolences.\n\nrussia is a terrorist state.\nBarbarians.\nrussia will be held accountable for every crime.", + "entity_set": { + "hashtags": [], + "symbols": [], + "urls": [], + "user_mentions": [] + } + } + } + }, + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "created_at": "Sat Feb 10 09:31:17 +0000 2024", + "conversation_id_str": "1756249468326875391", + "display_text_range": [ + 0, + 276 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/Fgss7R7d74", + "expanded_url": "https://twitter.com/r_stefanchuk/status/1756249468326875391/photo/1", + "id_str": "1756249464430362624", + "indices": [ + 277, + 300 + ], + "media_key": "3_1756249464430362624", + "media_url_https": "https://pbs.twimg.com/media/GF9zlThXgAAnTnD.jpg", + "type": "photo", + "url": "https://t.co/Fgss7R7d74", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 576, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 540, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 306, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 576, + "width": 1280, + "focus_rects": [ + { + "x": 30, + "y": 0, + "w": 1029, + "h": 576 + }, + { + "x": 256, + "y": 0, + "w": 576, + "h": 576 + }, + { + "x": 292, + "y": 0, + "w": 505, + "h": 576 + }, + { + "x": 400, + "y": 0, + "w": 288, + "h": 576 + }, + { + "x": 0, + "y": 0, + "w": 1280, + "h": 576 + } + ] + } + }, + { + "display_url": "pic.twitter.com/Fgss7R7d74", + "expanded_url": "https://twitter.com/r_stefanchuk/status/1756249468326875391/photo/1", + "id_str": "1756249465374023680", + "indices": [ + 277, + 300 + ], + "media_key": "3_1756249465374023680", + "media_url_https": "https://pbs.twimg.com/media/GF9zlXCWoAAs1P8.jpg", + "type": "photo", + "url": "https://t.co/Fgss7R7d74", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 663, + "y": 203, + "h": 195, + "w": 195 + } + ] + }, + "medium": { + "faces": [ + { + "x": 621, + "y": 190, + "h": 182, + "w": 182 + } + ] + }, + "small": { + "faces": [ + { + "x": 352, + "y": 107, + "h": 103, + "w": 103 + } + ] + }, + "orig": { + "faces": [ + { + "x": 663, + "y": 203, + "h": 195, + "w": 195 + } + ] + } + }, + "sizes": { + "large": { + "h": 576, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 540, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 306, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 576, + "width": 1280, + "focus_rects": [ + { + "x": 222, + "y": 0, + "w": 1029, + "h": 576 + }, + { + "x": 448, + "y": 0, + "w": 576, + "h": 576 + }, + { + "x": 484, + "y": 0, + "w": 505, + "h": 576 + }, + { + "x": 592, + "y": 0, + "w": 288, + "h": 576 + }, + { + "x": 0, + "y": 0, + "w": 1280, + "h": 576 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/Fgss7R7d74", + "expanded_url": "https://twitter.com/r_stefanchuk/status/1756249468326875391/photo/1", + "id_str": "1756249464430362624", + "indices": [ + 277, + 300 + ], + "media_key": "3_1756249464430362624", + "media_url_https": "https://pbs.twimg.com/media/GF9zlThXgAAnTnD.jpg", + "type": "photo", + "url": "https://t.co/Fgss7R7d74", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 576, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 540, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 306, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 576, + "width": 1280, + "focus_rects": [ + { + "x": 30, + "y": 0, + "w": 1029, + "h": 576 + }, + { + "x": 256, + "y": 0, + "w": 576, + "h": 576 + }, + { + "x": 292, + "y": 0, + "w": 505, + "h": 576 + }, + { + "x": 400, + "y": 0, + "w": 288, + "h": 576 + }, + { + "x": 0, + "y": 0, + "w": 1280, + "h": 576 + } + ] + } + }, + { + "display_url": "pic.twitter.com/Fgss7R7d74", + "expanded_url": "https://twitter.com/r_stefanchuk/status/1756249468326875391/photo/1", + "id_str": "1756249465374023680", + "indices": [ + 277, + 300 + ], + "media_key": "3_1756249465374023680", + "media_url_https": "https://pbs.twimg.com/media/GF9zlXCWoAAs1P8.jpg", + "type": "photo", + "url": "https://t.co/Fgss7R7d74", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 663, + "y": 203, + "h": 195, + "w": 195 + } + ] + }, + "medium": { + "faces": [ + { + "x": 621, + "y": 190, + "h": 182, + "w": 182 + } + ] + }, + "small": { + "faces": [ + { + "x": 352, + "y": 107, + "h": 103, + "w": 103 + } + ] + }, + "orig": { + "faces": [ + { + "x": 663, + "y": 203, + "h": 195, + "w": 195 + } + ] + } + }, + "sizes": { + "large": { + "h": 576, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 540, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 306, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 576, + "width": 1280, + "focus_rects": [ + { + "x": 222, + "y": 0, + "w": 1029, + "h": 576 + }, + { + "x": 448, + "y": 0, + "w": 576, + "h": 576 + }, + { + "x": 484, + "y": 0, + "w": 505, + "h": 576 + }, + { + "x": 592, + "y": 0, + "w": 288, + "h": 576 + }, + { + "x": 0, + "y": 0, + "w": 1280, + "h": 576 + } + ] + } + } + ] + }, + "favorite_count": 127, + "favorited": false, + "full_text": "Another terrible night for Kharkiv.\nThe enemy attacked the city with drones, damaging civilian infrastructure and causing a large-scale fire.\n\nMore than a dozen private houses burned to the ground. Unfortunately, there are victims, including children. My sincere condolences.… https://t.co/Fgss7R7d74", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 6, + "reply_count": 13, + "retweet_count": 68, + "retweeted": false, + "user_id_str": "235899366", + "id_str": "1756249468326875391" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756249447552446583", + "sortIndex": "1756309211907620802", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756249447552446583", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjMwMTg2NTM=", + "rest_id": "163018653", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Jul 05 09:44:27 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Ambassador-at-large @MFA_Ukraine, Amb to Austria (2014-2021). Author of “Ukraine vs Darkness. Undiplomatic Thoughts”. Personal account.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "amazon.com/Ukraine-vs-Dar…", + "expanded_url": "https://www.amazon.com/Ukraine-vs-Darkness-Undiplomatic-Ukrainian-ebook/dp/B08WKF3B2K", + "url": "https://t.co/ERA9Ntt061", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 28758, + "followers_count": 264429, + "friends_count": 1248, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 4354, + "location": "Kyiv", + "media_count": 6624, + "name": "olexander scherba🇺🇦", + "normal_followers_count": 264429, + "pinned_tweet_ids_str": [ + "1396956590713020416" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/163018653/1646220178", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/671642770549956608/yR9Is6BD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "olex_scherba", + "statuses_count": 40000, + "translator_type": "none", + "url": "https://t.co/ERA9Ntt061", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1696586841602834861", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756249447552446583" + ], + "editable_until_msecs": "1707561072000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "5030", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 4, + "bookmarked": false, + "created_at": "Sat Feb 10 09:31:12 +0000 2024", + "conversation_id_str": "1756249447552446583", + "display_text_range": [ + 0, + 47 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 30, + 47 + ], + "text": "StandWithUkraine" + } + ], + "media": [ + { + "display_url": "pic.twitter.com/UaWnkaPeHB", + "expanded_url": "https://twitter.com/olex_scherba/status/1756249447552446583/photo/1", + "id_str": "1756249439432241152", + "indices": [ + 48, + 71 + ], + "media_key": "3_1756249439432241152", + "media_url_https": "https://pbs.twimg.com/media/GF9zj2ZWcAA-Hjn.jpg", + "type": "photo", + "url": "https://t.co/UaWnkaPeHB", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1902, + "w": 1179, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 744, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 422, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1902, + "width": 1179, + "focus_rects": [ + { + "x": 0, + "y": 1144, + "w": 1179, + "h": 660 + }, + { + "x": 0, + "y": 723, + "w": 1179, + "h": 1179 + }, + { + "x": 0, + "y": 558, + "w": 1179, + "h": 1344 + }, + { + "x": 0, + "y": 0, + "w": 951, + "h": 1902 + }, + { + "x": 0, + "y": 0, + "w": 1179, + "h": 1902 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/UaWnkaPeHB", + "expanded_url": "https://twitter.com/olex_scherba/status/1756249447552446583/photo/1", + "id_str": "1756249439432241152", + "indices": [ + 48, + 71 + ], + "media_key": "3_1756249439432241152", + "media_url_https": "https://pbs.twimg.com/media/GF9zj2ZWcAA-Hjn.jpg", + "type": "photo", + "url": "https://t.co/UaWnkaPeHB", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1902, + "w": 1179, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 744, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 422, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1902, + "width": 1179, + "focus_rects": [ + { + "x": 0, + "y": 1144, + "w": 1179, + "h": 660 + }, + { + "x": 0, + "y": 723, + "w": 1179, + "h": 1179 + }, + { + "x": 0, + "y": 558, + "w": 1179, + "h": 1344 + }, + { + "x": 0, + "y": 0, + "w": 951, + "h": 1902 + }, + { + "x": 0, + "y": 0, + "w": 1179, + "h": 1902 + } + ] + } + } + ] + }, + "favorite_count": 99, + "favorited": false, + "full_text": "21st century. “Antifascism”.\n\n#StandWithUkraine https://t.co/UaWnkaPeHB", + "is_quote_status": false, + "lang": "ro", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1, + "reply_count": 6, + "retweet_count": 27, + "retweeted": false, + "user_id_str": "163018653", + "id_str": "1756249447552446583" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "list-conversation-1756309211907620927", + "sortIndex": "1756309211907620801", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "list-conversation-1756309211907620927-tweet-1756247409812771302", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756247409812771302", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyODg3NTUyMzQ=", + "rest_id": "288755234", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Wed Apr 27 12:18:25 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Founder and creative director of @Bellingcat and director of Bellingcat Productions BV. Author of We Are Bellingcat. Tonal Whiplash Zone.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bellingcat.com", + "expanded_url": "http://www.bellingcat.com", + "url": "https://t.co/ZoOPpVAJcd", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 17301, + "followers_count": 308635, + "friends_count": 3424, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 6362, + "location": "In front of a laptop.", + "media_count": 11269, + "name": "Eliot Higgins", + "normal_followers_count": 308635, + "pinned_tweet_ids_str": [ + "1756247409812771302" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/288755234/1703281459", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1638547444098015233/8N2MPkax_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "EliotHiggins", + "statuses_count": 296845, + "translator_type": "none", + "url": "https://t.co/ZoOPpVAJcd", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756247409812771302" + ], + "editable_until_msecs": "1707560586000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "11991", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 8, + "bookmarked": false, + "created_at": "Sat Feb 10 09:23:06 +0000 2024", + "conversation_id_str": "1756247409812771302", + "display_text_range": [ + 0, + 240 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/THYoek4Z4W", + "expanded_url": "https://twitter.com/EliotHiggins/status/1756247409812771302/photo/1", + "id_str": "1756247298969833473", + "indices": [ + 241, + 264 + ], + "media_key": "3_1756247298969833473", + "media_url_https": "https://pbs.twimg.com/media/GF9xnQjWEAEoVX8.jpg", + "type": "photo", + "url": "https://t.co/THYoek4Z4W", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1024, + "w": 1024, + "resize": "fit" + }, + "medium": { + "h": 1024, + "w": 1024, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1024, + "width": 1024, + "focus_rects": [ + { + "x": 0, + "y": 149, + "w": 1024, + "h": 573 + }, + { + "x": 0, + "y": 0, + "w": 1024, + "h": 1024 + }, + { + "x": 126, + "y": 0, + "w": 898, + "h": 1024 + }, + { + "x": 512, + "y": 0, + "w": 512, + "h": 1024 + }, + { + "x": 0, + "y": 0, + "w": 1024, + "h": 1024 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "Suno.ai", + "expanded_url": "http://Suno.ai", + "url": "https://t.co/GDAHQ1OcvY", + "indices": [ + 29, + 52 + ] + }, + { + "display_url": "vdaysong.com/5n7bc7dp", + "expanded_url": "https://vdaysong.com/5n7bc7dp", + "url": "https://t.co/91gHjXa2FP", + "indices": [ + 217, + 240 + ] + } + ], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/THYoek4Z4W", + "expanded_url": "https://twitter.com/EliotHiggins/status/1756247409812771302/photo/1", + "id_str": "1756247298969833473", + "indices": [ + 241, + 264 + ], + "media_key": "3_1756247298969833473", + "media_url_https": "https://pbs.twimg.com/media/GF9xnQjWEAEoVX8.jpg", + "type": "photo", + "url": "https://t.co/THYoek4Z4W", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1024, + "w": 1024, + "resize": "fit" + }, + "medium": { + "h": 1024, + "w": 1024, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1024, + "width": 1024, + "focus_rects": [ + { + "x": 0, + "y": 149, + "w": 1024, + "h": 573 + }, + { + "x": 0, + "y": 0, + "w": 1024, + "h": 1024 + }, + { + "x": 126, + "y": 0, + "w": 898, + "h": 1024 + }, + { + "x": 512, + "y": 0, + "w": 512, + "h": 1024 + }, + { + "x": 0, + "y": 0, + "w": 1024, + "h": 1024 + } + ] + } + } + ] + }, + "favorite_count": 72, + "favorited": false, + "full_text": "AI music generation platform https://t.co/GDAHQ1OcvY is previewing its new v3 update by allowing you to make love songs for Valentine's Day. Here's one from Tucker Carlson to Vladimir Putin. What can you do with it? https://t.co/91gHjXa2FP https://t.co/THYoek4Z4W", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 2, + "reply_count": 10, + "retweet_count": 20, + "retweeted": false, + "user_id_str": "288755234", + "id_str": "1756247409812771302" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "list-conversation-1756309211907620927-tweet-1756248590010229240", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756248590010229240", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyODg3NTUyMzQ=", + "rest_id": "288755234", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Wed Apr 27 12:18:25 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Founder and creative director of @Bellingcat and director of Bellingcat Productions BV. Author of We Are Bellingcat. Tonal Whiplash Zone.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bellingcat.com", + "expanded_url": "http://www.bellingcat.com", + "url": "https://t.co/ZoOPpVAJcd", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 17301, + "followers_count": 308635, + "friends_count": 3424, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 6362, + "location": "In front of a laptop.", + "media_count": 11269, + "name": "Eliot Higgins", + "normal_followers_count": 308635, + "pinned_tweet_ids_str": [ + "1756247409812771302" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/288755234/1703281459", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1638547444098015233/8N2MPkax_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "EliotHiggins", + "statuses_count": 296845, + "translator_type": "none", + "url": "https://t.co/ZoOPpVAJcd", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/elXONXAmXT", + "legacy": { + "binding_values": [ + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 144, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1756248548251754496/lezziMau?format=png&name=144x144_2" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "A song for Vladimir. Send love with Suno 💘", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "v-day.suno.ai", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 256, + "width": 256, + "url": "https://pbs.twimg.com/card_img/1756248548251754496/lezziMau?format=png&name=280x280_2" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 256, + "width": 256, + "url": "https://pbs.twimg.com/card_img/1756248548251754496/lezziMau?format=png&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "1519705236713189377", + "path": [] + } + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 100, + "width": 100, + "url": "https://pbs.twimg.com/card_img/1756248548251754496/lezziMau?format=png&name=100x100_2" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 256, + "width": 256, + "url": "https://pbs.twimg.com/card_img/1756248548251754496/lezziMau?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_alt_text", + "value": { + "string_value": "History Lessons, by Eliot", + "type": "STRING" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "v-day.suno.ai", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 50, + "green": 59, + "red": 70 + }, + "percentage": 40.36 + }, + { + "rgb": { + "blue": 50, + "green": 84, + "red": 98 + }, + "percentage": 12.54 + }, + { + "rgb": { + "blue": 150, + "green": 170, + "red": 198 + }, + "percentage": 11.87 + }, + { + "rgb": { + "blue": 133, + "green": 123, + "red": 198 + }, + "percentage": 5.4 + }, + { + "rgb": { + "blue": 101, + "green": 158, + "red": 215 + }, + "percentage": 4.79 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "History Lessons, by Eliot", + "type": "STRING" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/elXONXAmXT", + "type": "STRING" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary", + "url": "https://t.co/elXONXAmXT", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTE5NzA1MjM2NzEzMTg5Mzc3", + "rest_id": "1519705236713189377", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Apr 28 15:50:08 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "Make any song you can imagine", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "suno.ai", + "expanded_url": "https://suno.ai", + "url": "https://t.co/lvS0esiLKq", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 1172, + "followers_count": 12243, + "friends_count": 0, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 173, + "location": "Cambridge, MA", + "media_count": 102, + "name": "Suno", + "normal_followers_count": 12243, + "pinned_tweet_ids_str": [ + "1754967156779852184" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1519705236713189377/1702571688", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1735127792776318976/BK2vuCtr_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "suno_ai_", + "statuses_count": 277, + "translator_type": "none", + "url": "https://t.co/lvS0esiLKq", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756248590010229240" + ], + "editable_until_msecs": "1707560868000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "7735", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "created_at": "Sat Feb 10 09:27:48 +0000 2024", + "conversation_id_str": "1756247409812771302", + "display_text_range": [ + 0, + 150 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "vdaysong.com/7a4pvwyy", + "expanded_url": "https://vdaysong.com/7a4pvwyy", + "url": "https://t.co/elXONXAmXT", + "indices": [ + 127, + 150 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 10, + "favorited": false, + "full_text": "You can get it to force different styles of music by put musical styles in square brackets, if you want to experiment, like so https://t.co/elXONXAmXT", + "in_reply_to_screen_name": "EliotHiggins", + "in_reply_to_status_id_str": "1756247409812771302", + "in_reply_to_user_id_str": "288755234", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 2, + "retweeted": false, + "user_id_str": "288755234", + "id_str": "1756248590010229240" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1756247409812771302", + "1756248590010229240" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756247601106870417", + "sortIndex": "1756309211907620800", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756247601106870417", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NDA4MzE4Nw==", + "rest_id": "84083187", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Oct 21 13:42:34 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Ukraine Correspondent. British-Lebanese conflict journalist & filmmaker based in Kyiv. Co-host of @DrillPod. RTs ≠ endorsement.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ko-fi.com/ozkaterji", + "expanded_url": "http://ko-fi.com/ozkaterji", + "url": "https://t.co/FC9pQbgXa4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 45500, + "followers_count": 215887, + "friends_count": 11666, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3397, + "location": "Kyiv, Ukraine", + "media_count": 6412, + "name": "Oz Katerji", + "normal_followers_count": 215887, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84083187/1647382697", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713181637574275072/gUp8KMF4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OzKaterji", + "statuses_count": 174699, + "translator_type": "none", + "url": "https://t.co/FC9pQbgXa4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756247601106870417" + ], + "editable_until_msecs": "1707560632263", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:23:52 +0000 2024", + "conversation_id_str": "1756247601106870417", + "display_text_range": [ + 0, + 139 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "2978526405", + "name": "Martin Griffiths", + "screen_name": "UNReliefChief", + "indices": [ + 3, + 17 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @UNReliefChief: Many of the well over 1 million people who make up Rafah’s population today have endured unthinkable suffering.\n \nWhere…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 1017, + "retweeted": false, + "user_id_str": "84083187", + "id_str": "1756247601106870417", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756086625623294186", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyOTc4NTI2NDA1", + "rest_id": "2978526405", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed Jan 14 19:12:26 +0000 2015", + "default_profile": true, + "default_profile_image": false, + "description": "The official Twitter account of the UN Under-Secretary-General for Humanitarian Affairs and Emergency Relief Coordinator", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "unocha.org", + "expanded_url": "http://www.unocha.org", + "url": "https://t.co/qkpLieoARc", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 2363, + "followers_count": 182819, + "friends_count": 253, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1147, + "location": "New York, NY", + "media_count": 1449, + "name": "Martin Griffiths", + "normal_followers_count": 182819, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2978526405/1568340727", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1491488660868509696/rfUl-JDe_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "UNReliefChief", + "statuses_count": 5063, + "translator_type": "none", + "url": "https://t.co/qkpLieoARc", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1580243762441224210", + "professional_type": "Business", + "category": [ + { + "id": 688, + "name": "Non-Governmental & Nonprofit Organization ", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756086625623294186" + ], + "editable_until_msecs": "1707522252000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "78627", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 33, + "bookmarked": false, + "created_at": "Fri Feb 09 22:44:12 +0000 2024", + "conversation_id_str": "1756086625623294186", + "display_text_range": [ + 0, + 180 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/5dK4TB243S", + "expanded_url": "https://twitter.com/UNReliefChief/status/1756086625623294186/photo/1", + "id_str": "1756086621957451776", + "indices": [ + 181, + 204 + ], + "media_key": "3_1756086621957451776", + "media_url_https": "https://pbs.twimg.com/media/GF7feoCW8AAgLLz.jpg", + "type": "photo", + "url": "https://t.co/5dK4TB243S", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1594, + "w": 1276, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 961, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 544, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1594, + "width": 1276, + "focus_rects": [ + { + "x": 0, + "y": 400, + "w": 1276, + "h": 715 + }, + { + "x": 0, + "y": 119, + "w": 1276, + "h": 1276 + }, + { + "x": 0, + "y": 30, + "w": 1276, + "h": 1455 + }, + { + "x": 279, + "y": 0, + "w": 797, + "h": 1594 + }, + { + "x": 0, + "y": 0, + "w": 1276, + "h": 1594 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/5dK4TB243S", + "expanded_url": "https://twitter.com/UNReliefChief/status/1756086625623294186/photo/1", + "id_str": "1756086621957451776", + "indices": [ + 181, + 204 + ], + "media_key": "3_1756086621957451776", + "media_url_https": "https://pbs.twimg.com/media/GF7feoCW8AAgLLz.jpg", + "type": "photo", + "url": "https://t.co/5dK4TB243S", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1594, + "w": 1276, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 961, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 544, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1594, + "width": 1276, + "focus_rects": [ + { + "x": 0, + "y": 400, + "w": 1276, + "h": 715 + }, + { + "x": 0, + "y": 119, + "w": 1276, + "h": 1276 + }, + { + "x": 0, + "y": 30, + "w": 1276, + "h": 1455 + }, + { + "x": 279, + "y": 0, + "w": 797, + "h": 1594 + }, + { + "x": 0, + "y": 0, + "w": 1276, + "h": 1594 + } + ] + } + } + ] + }, + "favorite_count": 1622, + "favorited": false, + "full_text": "Many of the well over 1 million people who make up Rafah’s population today have endured unthinkable suffering.\n \nWhere are they supposed to go? How are they supposed to stay safe? https://t.co/5dK4TB243S", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 52, + "reply_count": 362, + "retweet_count": 1017, + "retweeted": false, + "user_id_str": "2978526405", + "id_str": "1756086625623294186" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756246909608431694", + "sortIndex": "1756309211907620799", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756246909608431694", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", + "rest_id": "1462548977367359490", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Nov 21 22:30:41 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", + "entities": { + "description": { + "urls": [ + { + "display_url": "kyivindependent.com/membership/", + "expanded_url": "http://kyivindependent.com/membership/", + "url": "https://t.co/jsQiFkoveH", + "indices": [ + 17, + 40 + ] + }, + { + "display_url": "kyivindependent.com/membership/?in…", + "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", + "url": "https://t.co/eNwj76xa7a", + "indices": [ + 60, + 83 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "kyivindependent.com", + "expanded_url": "http://kyivindependent.com", + "url": "https://t.co/WZvsaFpT20", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 307, + "followers_count": 2090013, + "friends_count": 27, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 20010, + "location": "Kyiv", + "media_count": 3970, + "name": "The Kyiv Independent", + "normal_followers_count": 2090013, + "pinned_tweet_ids_str": [ + "1611768917151862784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivIndependent", + "statuses_count": 36943, + "translator_type": "none", + "url": "https://t.co/WZvsaFpT20", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1595086441079513088", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756246909608431694" + ], + "editable_until_msecs": "1707560467000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "65726", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 14, + "bookmarked": false, + "created_at": "Sat Feb 10 09:21:07 +0000 2024", + "conversation_id_str": "1756246909608431694", + "display_text_range": [ + 0, + 117 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/P4VGd3VrCd", + "expanded_url": "https://twitter.com/KyivIndependent/status/1756246909608431694/photo/1", + "id_str": "1756246902771679233", + "indices": [ + 118, + 141 + ], + "media_key": "3_1756246902771679233", + "media_url_https": "https://pbs.twimg.com/media/GF9xQMmWAAEsQas.png", + "type": "photo", + "url": "https://t.co/P4VGd3VrCd", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1080, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1080, + "w": 1080, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1080, + "focus_rects": [ + { + "x": 0, + "y": 211, + "w": 1080, + "h": 605 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1080 + }, + { + "x": 0, + "y": 0, + "w": 947, + "h": 1080 + }, + { + "x": 0, + "y": 0, + "w": 540, + "h": 1080 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1080 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/P4VGd3VrCd", + "expanded_url": "https://twitter.com/KyivIndependent/status/1756246909608431694/photo/1", + "id_str": "1756246902771679233", + "indices": [ + 118, + 141 + ], + "media_key": "3_1756246902771679233", + "media_url_https": "https://pbs.twimg.com/media/GF9xQMmWAAEsQas.png", + "type": "photo", + "url": "https://t.co/P4VGd3VrCd", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1080, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 1080, + "w": 1080, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1080, + "width": 1080, + "focus_rects": [ + { + "x": 0, + "y": 211, + "w": 1080, + "h": 605 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1080 + }, + { + "x": 0, + "y": 0, + "w": 947, + "h": 1080 + }, + { + "x": 0, + "y": 0, + "w": 540, + "h": 1080 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 1080 + } + ] + } + } + ] + }, + "favorite_count": 1408, + "favorited": false, + "full_text": "These are the indicative estimates of Russia’s combat losses as of Feb. 10, according to the Armed Forces of Ukraine. https://t.co/P4VGd3VrCd", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 12, + "reply_count": 23, + "retweet_count": 251, + "retweeted": false, + "user_id_str": "1462548977367359490", + "id_str": "1756246909608431694" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "list-conversation-1756309211907620930", + "sortIndex": "1756309211907620798", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "list-conversation-1756309211907620930-tweet-1756241758281764927", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756241758281764927", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1Nzk3NDc1NjQ=", + "rest_id": "579747564", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon May 14 08:03:59 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "presidentilves.ee", + "expanded_url": "http://www.presidentilves.ee", + "url": "https://t.co/lnQ9ajxxvK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 21032, + "followers_count": 195736, + "friends_count": 1925, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2118, + "location": "Estonia", + "media_count": 1112, + "name": "toomas ilves, ex-verif", + "normal_followers_count": 195736, + "pinned_tweet_ids_str": [ + "1597508496828006401" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "IlvesToomas", + "statuses_count": 207297, + "translator_type": "none", + "url": "https://t.co/lnQ9ajxxvK", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756241758281764927" + ], + "editable_until_msecs": "1707559239000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "30712", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756223276815122494", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDk2MzgwMjQ4NDQyNjkxNTg4", + "rest_id": "1496380248442691588", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Feb 23 07:03:54 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "Source of the best Ukrainian memes.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "patreon.com/uamemesforces", + "expanded_url": "http://patreon.com/uamemesforces", + "url": "https://t.co/V4Sup0Q8y7", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 6, + "followers_count": 379693, + "friends_count": 1, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1792, + "location": "", + "media_count": 1480, + "name": "UMF", + "normal_followers_count": 379693, + "pinned_tweet_ids_str": [ + "1553802475064463362" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1496380248442691588/1645600536", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1499403767783084033/x389xvO4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "uamemesforces", + "statuses_count": 1513, + "translator_type": "none", + "url": "https://t.co/V4Sup0Q8y7", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756223276815122494" + ], + "editable_until_msecs": "1707554832000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "177294", + "state": "EnabledWithCount" + }, + "source": "Twitter for Android", + "legacy": { + "bookmark_count": 144, + "bookmarked": false, + "created_at": "Sat Feb 10 07:47:12 +0000 2024", + "conversation_id_str": "1756223276815122494", + "display_text_range": [ + 0, + 0 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/reDaJK7Reb", + "expanded_url": "https://twitter.com/uamemesforces/status/1756223276815122494/photo/1", + "id_str": "1756223273925263360", + "indices": [ + 0, + 23 + ], + "media_key": "3_1756223273925263360", + "media_url_https": "https://pbs.twimg.com/media/GF9bw0SWwAA25BA.jpg", + "type": "photo", + "url": "https://t.co/reDaJK7Reb", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1048, + "w": 818, + "resize": "fit" + }, + "medium": { + "h": 1048, + "w": 818, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 531, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1048, + "width": 818, + "focus_rects": [ + { + "x": 0, + "y": 6, + "w": 818, + "h": 458 + }, + { + "x": 0, + "y": 0, + "w": 818, + "h": 818 + }, + { + "x": 0, + "y": 0, + "w": 818, + "h": 933 + }, + { + "x": 235, + "y": 0, + "w": 524, + "h": 1048 + }, + { + "x": 0, + "y": 0, + "w": 818, + "h": 1048 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/reDaJK7Reb", + "expanded_url": "https://twitter.com/uamemesforces/status/1756223276815122494/photo/1", + "id_str": "1756223273925263360", + "indices": [ + 0, + 23 + ], + "media_key": "3_1756223273925263360", + "media_url_https": "https://pbs.twimg.com/media/GF9bw0SWwAA25BA.jpg", + "type": "photo", + "url": "https://t.co/reDaJK7Reb", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 1048, + "w": 818, + "resize": "fit" + }, + "medium": { + "h": 1048, + "w": 818, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 531, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1048, + "width": 818, + "focus_rects": [ + { + "x": 0, + "y": 6, + "w": 818, + "h": 458 + }, + { + "x": 0, + "y": 0, + "w": 818, + "h": 818 + }, + { + "x": 0, + "y": 0, + "w": 818, + "h": 933 + }, + { + "x": 235, + "y": 0, + "w": 524, + "h": 1048 + }, + { + "x": 0, + "y": 0, + "w": 818, + "h": 1048 + } + ] + } + } + ] + }, + "favorite_count": 9199, + "favorited": false, + "full_text": "https://t.co/reDaJK7Reb", + "is_quote_status": false, + "lang": "zxx", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 30, + "reply_count": 121, + "retweet_count": 1026, + "retweeted": false, + "user_id_str": "1496380248442691588", + "id_str": "1756223276815122494" + } + } + }, + "legacy": { + "bookmark_count": 15, + "bookmarked": false, + "created_at": "Sat Feb 10 09:00:39 +0000 2024", + "conversation_id_str": "1756241758281764927", + "display_text_range": [ + 0, + 56 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 1084, + "favorited": false, + "full_text": "I'd cut it to:\n\nRussia is to Rus' as Romania is to Rome.", + "is_quote_status": true, + "lang": "en", + "quote_count": 1, + "quoted_status_id_str": "1756223276815122494", + "quoted_status_permalink": { + "url": "https://t.co/zvAbgJ9Hks", + "expanded": "https://twitter.com/uamemesforces/status/1756223276815122494", + "display": "twitter.com/uamemesforces/…" + }, + "reply_count": 20, + "retweet_count": 150, + "retweeted": false, + "user_id_str": "579747564", + "id_str": "1756241758281764927" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "list-conversation-1756309211907620930-tweet-1756246493474775543", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756246493474775543", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1Nzk3NDc1NjQ=", + "rest_id": "579747564", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon May 14 08:03:59 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "presidentilves.ee", + "expanded_url": "http://www.presidentilves.ee", + "url": "https://t.co/lnQ9ajxxvK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 21032, + "followers_count": 195736, + "friends_count": 1925, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2118, + "location": "Estonia", + "media_count": 1112, + "name": "toomas ilves, ex-verif", + "normal_followers_count": 195736, + "pinned_tweet_ids_str": [ + "1597508496828006401" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "IlvesToomas", + "statuses_count": 207297, + "translator_type": "none", + "url": "https://t.co/lnQ9ajxxvK", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756246493474775543" + ], + "editable_until_msecs": "1707560368000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3526", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:19:28 +0000 2024", + "conversation_id_str": "1756241758281764927", + "display_text_range": [ + 0, + 103 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 95, + "favorited": false, + "full_text": "I should add I like Romania, and moreover, Bucharest isn't going around yelling \"Cartago delenda est!\"", + "in_reply_to_screen_name": "IlvesToomas", + "in_reply_to_status_id_str": "1756241758281764927", + "in_reply_to_user_id_str": "579747564", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 3, + "retweet_count": 3, + "retweeted": false, + "user_id_str": "579747564", + "id_str": "1756246493474775543" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1756241758281764927", + "1756246493474775543" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756246266265096506", + "sortIndex": "1756309211907620797", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756246266265096506", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", + "rest_id": "1462548977367359490", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Nov 21 22:30:41 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", + "entities": { + "description": { + "urls": [ + { + "display_url": "kyivindependent.com/membership/", + "expanded_url": "http://kyivindependent.com/membership/", + "url": "https://t.co/jsQiFkoveH", + "indices": [ + 17, + 40 + ] + }, + { + "display_url": "kyivindependent.com/membership/?in…", + "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", + "url": "https://t.co/eNwj76xa7a", + "indices": [ + 60, + 83 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "kyivindependent.com", + "expanded_url": "http://kyivindependent.com", + "url": "https://t.co/WZvsaFpT20", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 307, + "followers_count": 2090013, + "friends_count": 27, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 20010, + "location": "Kyiv", + "media_count": 3970, + "name": "The Kyiv Independent", + "normal_followers_count": 2090013, + "pinned_tweet_ids_str": [ + "1611768917151862784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivIndependent", + "statuses_count": 36943, + "translator_type": "none", + "url": "https://t.co/WZvsaFpT20", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1595086441079513088", + "professional_type": "Business", + "category": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/BRCeB3m9FB", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756246258719531008/RQqmnV5f?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 149, + "width": 240, + "url": "https://pbs.twimg.com/card_img/1756246258719531008/RQqmnV5f?format=jpg&name=240x240" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "The Republican holdup on supporting new aid packages is \"close to criminal neglect,\" U.S. President Joe Biden said as he met with German Chancellor Olaf Scholz in the White House.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "kyivindependent.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 320, + "width": 515, + "url": "https://pbs.twimg.com/card_img/1756246258719531008/RQqmnV5f?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756246258719531008/RQqmnV5f?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 636, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756246258719531008/RQqmnV5f?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "1462548977367359490", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756246258719531008/RQqmnV5f?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756246258719531008/RQqmnV5f?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 62, + "width": 100, + "url": "https://pbs.twimg.com/card_img/1756246258719531008/RQqmnV5f?format=jpg&name=100x100" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 636, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756246258719531008/RQqmnV5f?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 636, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756246258719531008/RQqmnV5f?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "kyivindependent.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756246258719531008/RQqmnV5f?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 161, + "green": 173, + "red": 173 + }, + "percentage": 33.62 + }, + { + "rgb": { + "blue": 43, + "green": 27, + "red": 15 + }, + "percentage": 22.85 + }, + { + "rgb": { + "blue": 46, + "green": 62, + "red": 75 + }, + "percentage": 11.01 + }, + { + "rgb": { + "blue": 84, + "green": 48, + "red": 18 + }, + "percentage": 6.38 + }, + { + "rgb": { + "blue": 49, + "green": 77, + "red": 138 + }, + "percentage": 4.75 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Biden, Scholz meet in Washington to discuss US aid for Ukraine", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 161, + "green": 173, + "red": 173 + }, + "percentage": 33.62 + }, + { + "rgb": { + "blue": 43, + "green": 27, + "red": 15 + }, + "percentage": 22.85 + }, + { + "rgb": { + "blue": 46, + "green": 62, + "red": 75 + }, + "percentage": 11.01 + }, + { + "rgb": { + "blue": 84, + "green": 48, + "red": 18 + }, + "percentage": 6.38 + }, + { + "rgb": { + "blue": 49, + "green": 77, + "red": 138 + }, + "percentage": 4.75 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 636, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756246258719531008/RQqmnV5f?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756246258719531008/RQqmnV5f?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 161, + "green": 173, + "red": 173 + }, + "percentage": 33.62 + }, + { + "rgb": { + "blue": 43, + "green": 27, + "red": 15 + }, + "percentage": 22.85 + }, + { + "rgb": { + "blue": 46, + "green": 62, + "red": 75 + }, + "percentage": 11.01 + }, + { + "rgb": { + "blue": 84, + "green": 48, + "red": 18 + }, + "percentage": 6.38 + }, + { + "rgb": { + "blue": 49, + "green": 77, + "red": 138 + }, + "percentage": 4.75 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 636, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756246258719531008/RQqmnV5f?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/BRCeB3m9FB", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 636, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756246258719531008/RQqmnV5f?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/BRCeB3m9FB", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDYyNTQ4OTc3MzY3MzU5NDkw", + "rest_id": "1462548977367359490", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Nov 21 22:30:41 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Become a member: https://t.co/jsQiFkoveH\nOne-time donation: https://t.co/eNwj76xa7a", + "entities": { + "description": { + "urls": [ + { + "display_url": "kyivindependent.com/membership/", + "expanded_url": "http://kyivindependent.com/membership/", + "url": "https://t.co/jsQiFkoveH", + "indices": [ + 17, + 40 + ] + }, + { + "display_url": "kyivindependent.com/membership/?in…", + "expanded_url": "https://kyivindependent.com/membership/?interval=onetime", + "url": "https://t.co/eNwj76xa7a", + "indices": [ + 60, + 83 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "kyivindependent.com", + "expanded_url": "http://kyivindependent.com", + "url": "https://t.co/WZvsaFpT20", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 307, + "followers_count": 2090013, + "friends_count": 27, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 20010, + "location": "Kyiv", + "media_count": 3970, + "name": "The Kyiv Independent", + "normal_followers_count": 2090013, + "pinned_tweet_ids_str": [ + "1611768917151862784" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1462548977367359490/1683114021", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590969128474525702/SoCJ_k1L_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivIndependent", + "statuses_count": 36943, + "translator_type": "none", + "url": "https://t.co/WZvsaFpT20", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1595086441079513088", + "professional_type": "Business", + "category": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756246266265096506" + ], + "editable_until_msecs": "1707560314000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "54749", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 8, + "bookmarked": false, + "created_at": "Sat Feb 10 09:18:34 +0000 2024", + "conversation_id_str": "1756246266265096506", + "display_text_range": [ + 0, + 212 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "kyivindependent.com/biden-scholz-m…", + "expanded_url": "https://kyivindependent.com/biden-scholz-meet-in-washington-to-discuss-us-aid-for-ukraine/", + "url": "https://t.co/BRCeB3m9FB", + "indices": [ + 189, + 212 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 648, + "favorited": false, + "full_text": "⚡️Biden, Scholz meet in Washington to discuss US aid for Ukraine.\n\nThe visit came as a bill containing $60 billion in aid for Ukraine inched forward in the Senate after months of delays. \n\nhttps://t.co/BRCeB3m9FB", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 22, + "retweet_count": 87, + "retweeted": false, + "user_id_str": "1462548977367359490", + "id_str": "1756246266265096506" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756244492414279902", + "sortIndex": "1756309211907620796", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756244492414279902", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1Nzk3NDc1NjQ=", + "rest_id": "579747564", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon May 14 08:03:59 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "presidentilves.ee", + "expanded_url": "http://www.presidentilves.ee", + "url": "https://t.co/lnQ9ajxxvK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 21032, + "followers_count": 195736, + "friends_count": 1925, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2118, + "location": "Estonia", + "media_count": 1112, + "name": "toomas ilves, ex-verif", + "normal_followers_count": 195736, + "pinned_tweet_ids_str": [ + "1597508496828006401" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "IlvesToomas", + "statuses_count": 207297, + "translator_type": "none", + "url": "https://t.co/lnQ9ajxxvK", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756244492414279902" + ], + "editable_until_msecs": "1707559891093", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:11:31 +0000 2024", + "conversation_id_str": "1756244492414279902", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "450896622", + "name": "Alexander Clarkson ", + "screen_name": "APHClarkson", + "indices": [ + 3, + 15 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @APHClarkson: Never was a more intensive process of dialogue and cooperation built on so much miscommunication and so many delusional as…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 17, + "retweeted": false, + "user_id_str": "579747564", + "id_str": "1756244492414279902", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756236315832566127", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NTA4OTY2MjI=", + "rest_id": "450896622", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Fri Dec 30 19:59:10 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Lecturer for German and European Studies at King's College London. Opinions my own. RT not always endorsement.\nAlso to be found at @APHClarkson@mastodon.social", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ullstein-buchverlage.de/nc/buch/detail…", + "expanded_url": "https://www.ullstein-buchverlage.de/nc/buch/details/die-macht-der-diaspora-9783549100202.html", + "url": "https://t.co/6mUvzVIDCC", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 228333, + "followers_count": 47515, + "friends_count": 995, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1215, + "location": "Berlondon", + "media_count": 8746, + "name": "Alexander Clarkson ", + "normal_followers_count": 47515, + "pinned_tweet_ids_str": [ + "1574340237471453184" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/450896622/1666300637", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1558460997597364224/5qMtXp6V_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "APHClarkson", + "statuses_count": 378297, + "translator_type": "none", + "url": "https://t.co/6mUvzVIDCC", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756236315832566127" + ], + "editable_until_msecs": "1707557941000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "7706", + "state": "EnabledWithCount" + }, + "source": "Twitter for Android", + "legacy": { + "bookmark_count": 2, + "bookmarked": false, + "created_at": "Sat Feb 10 08:39:01 +0000 2024", + "conversation_id_str": "1756232476651921647", + "display_text_range": [ + 0, + 211 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 94, + "favorited": false, + "full_text": "Never was a more intensive process of dialogue and cooperation built on so much miscommunication and so many delusional assumptions on both sides as the relationship between Russia and Germany from 1990 to 2022.", + "in_reply_to_screen_name": "APHClarkson", + "in_reply_to_status_id_str": "1756235696296149027", + "in_reply_to_user_id_str": "450896622", + "is_quote_status": false, + "lang": "en", + "quote_count": 1, + "reply_count": 5, + "retweet_count": 17, + "retweeted": false, + "user_id_str": "450896622", + "id_str": "1756236315832566127" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756244447681991153", + "sortIndex": "1756309211907620795", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756244447681991153", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1Nzk3NDc1NjQ=", + "rest_id": "579747564", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon May 14 08:03:59 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "presidentilves.ee", + "expanded_url": "http://www.presidentilves.ee", + "url": "https://t.co/lnQ9ajxxvK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 21032, + "followers_count": 195736, + "friends_count": 1925, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2118, + "location": "Estonia", + "media_count": 1112, + "name": "toomas ilves, ex-verif", + "normal_followers_count": 195736, + "pinned_tweet_ids_str": [ + "1597508496828006401" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "IlvesToomas", + "statuses_count": 207297, + "translator_type": "none", + "url": "https://t.co/lnQ9ajxxvK", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756244447681991153" + ], + "editable_until_msecs": "1707559880428", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:11:20 +0000 2024", + "conversation_id_str": "1756244447681991153", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "450896622", + "name": "Alexander Clarkson ", + "screen_name": "APHClarkson", + "indices": [ + 3, + 15 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @APHClarkson: If German elites were deluded in the belief that through kind dialogue their Russian counterparts could be prodded into be…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 18, + "retweeted": false, + "user_id_str": "579747564", + "id_str": "1756244447681991153", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756235696296149027", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NTA4OTY2MjI=", + "rest_id": "450896622", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Fri Dec 30 19:59:10 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Lecturer for German and European Studies at King's College London. Opinions my own. RT not always endorsement.\nAlso to be found at @APHClarkson@mastodon.social", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ullstein-buchverlage.de/nc/buch/detail…", + "expanded_url": "https://www.ullstein-buchverlage.de/nc/buch/details/die-macht-der-diaspora-9783549100202.html", + "url": "https://t.co/6mUvzVIDCC", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 228333, + "followers_count": 47515, + "friends_count": 995, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1215, + "location": "Berlondon", + "media_count": 8746, + "name": "Alexander Clarkson ", + "normal_followers_count": 47515, + "pinned_tweet_ids_str": [ + "1574340237471453184" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/450896622/1666300637", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1558460997597364224/5qMtXp6V_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "APHClarkson", + "statuses_count": 378297, + "translator_type": "none", + "url": "https://t.co/6mUvzVIDCC", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756235696296149027" + ], + "editable_until_msecs": "1707557793000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "7903", + "state": "EnabledWithCount" + }, + "source": "Twitter for Android", + "legacy": { + "bookmark_count": 5, + "bookmarked": false, + "created_at": "Sat Feb 10 08:36:33 +0000 2024", + "conversation_id_str": "1756232476651921647", + "display_text_range": [ + 0, + 278 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 109, + "favorited": false, + "full_text": "If German elites were deluded in the belief that through kind dialogue their Russian counterparts could be prodded into becoming good democratic EU Europeans, then Russian elites were deluded in believing German democratisation and European integration was just a \"fake\" facade.", + "in_reply_to_screen_name": "APHClarkson", + "in_reply_to_status_id_str": "1756233687459406119", + "in_reply_to_user_id_str": "450896622", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 4, + "retweet_count": 18, + "retweeted": false, + "user_id_str": "450896622", + "id_str": "1756235696296149027" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756244417126580323", + "sortIndex": "1756309211907620794", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756244417126580323", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1Nzk3NDc1NjQ=", + "rest_id": "579747564", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon May 14 08:03:59 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "presidentilves.ee", + "expanded_url": "http://www.presidentilves.ee", + "url": "https://t.co/lnQ9ajxxvK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 21032, + "followers_count": 195736, + "friends_count": 1925, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2118, + "location": "Estonia", + "media_count": 1112, + "name": "toomas ilves, ex-verif", + "normal_followers_count": 195736, + "pinned_tweet_ids_str": [ + "1597508496828006401" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "IlvesToomas", + "statuses_count": 207297, + "translator_type": "none", + "url": "https://t.co/lnQ9ajxxvK", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756244417126580323" + ], + "editable_until_msecs": "1707559873143", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:11:13 +0000 2024", + "conversation_id_str": "1756244417126580323", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "450896622", + "name": "Alexander Clarkson ", + "screen_name": "APHClarkson", + "indices": [ + 3, + 15 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @APHClarkson: A theme since the 1990s with Russian elites is a delusional belief that Germans will wake up one morning and throw off wha…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 19, + "retweeted": false, + "user_id_str": "579747564", + "id_str": "1756244417126580323", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756233687459406119", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NTA4OTY2MjI=", + "rest_id": "450896622", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Fri Dec 30 19:59:10 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Lecturer for German and European Studies at King's College London. Opinions my own. RT not always endorsement.\nAlso to be found at @APHClarkson@mastodon.social", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ullstein-buchverlage.de/nc/buch/detail…", + "expanded_url": "https://www.ullstein-buchverlage.de/nc/buch/details/die-macht-der-diaspora-9783549100202.html", + "url": "https://t.co/6mUvzVIDCC", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 228333, + "followers_count": 47515, + "friends_count": 995, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1215, + "location": "Berlondon", + "media_count": 8746, + "name": "Alexander Clarkson ", + "normal_followers_count": 47515, + "pinned_tweet_ids_str": [ + "1574340237471453184" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/450896622/1666300637", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1558460997597364224/5qMtXp6V_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "APHClarkson", + "statuses_count": 378297, + "translator_type": "none", + "url": "https://t.co/6mUvzVIDCC", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756233687459406119" + ], + "editable_until_msecs": "1707557314000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "5942", + "state": "EnabledWithCount" + }, + "source": "Twitter for Android", + "legacy": { + "bookmark_count": 2, + "bookmarked": false, + "created_at": "Sat Feb 10 08:28:34 +0000 2024", + "conversation_id_str": "1756232476651921647", + "display_text_range": [ + 0, + 271 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 83, + "favorited": false, + "full_text": "A theme since the 1990s with Russian elites is a delusional belief that Germans will wake up one morning and throw off what Moscow views as a \"false consciousness\" of support for the EU, alliance with the US and democracy and return to a \"true\" teutonic imperial identity", + "in_reply_to_screen_name": "APHClarkson", + "in_reply_to_status_id_str": "1756232476651921647", + "in_reply_to_user_id_str": "450896622", + "is_quote_status": false, + "lang": "en", + "quote_count": 2, + "reply_count": 4, + "retweet_count": 19, + "retweeted": false, + "user_id_str": "450896622", + "id_str": "1756233687459406119" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756244378031476995", + "sortIndex": "1756309211907620793", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756244378031476995", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1Nzk3NDc1NjQ=", + "rest_id": "579747564", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon May 14 08:03:59 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "presidentilves.ee", + "expanded_url": "http://www.presidentilves.ee", + "url": "https://t.co/lnQ9ajxxvK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 21032, + "followers_count": 195736, + "friends_count": 1925, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2118, + "location": "Estonia", + "media_count": 1112, + "name": "toomas ilves, ex-verif", + "normal_followers_count": 195736, + "pinned_tweet_ids_str": [ + "1597508496828006401" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "IlvesToomas", + "statuses_count": 207297, + "translator_type": "none", + "url": "https://t.co/lnQ9ajxxvK", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756244378031476995" + ], + "editable_until_msecs": "1707559863822", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:11:03 +0000 2024", + "conversation_id_str": "1756244378031476995", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "450896622", + "name": "Alexander Clarkson ", + "screen_name": "APHClarkson", + "indices": [ + 3, + 15 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @APHClarkson: When it comes to Putin's comment accusing Poland for being at fault for starting the Second World War, it's quite likely t…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 60, + "retweeted": false, + "user_id_str": "579747564", + "id_str": "1756244378031476995", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756232476651921647", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0NTA4OTY2MjI=", + "rest_id": "450896622", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Fri Dec 30 19:59:10 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Lecturer for German and European Studies at King's College London. Opinions my own. RT not always endorsement.\nAlso to be found at @APHClarkson@mastodon.social", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ullstein-buchverlage.de/nc/buch/detail…", + "expanded_url": "https://www.ullstein-buchverlage.de/nc/buch/details/die-macht-der-diaspora-9783549100202.html", + "url": "https://t.co/6mUvzVIDCC", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 228333, + "followers_count": 47515, + "friends_count": 995, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1215, + "location": "Berlondon", + "media_count": 8746, + "name": "Alexander Clarkson ", + "normal_followers_count": 47515, + "pinned_tweet_ids_str": [ + "1574340237471453184" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/450896622/1666300637", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1558460997597364224/5qMtXp6V_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "APHClarkson", + "statuses_count": 378297, + "translator_type": "none", + "url": "https://t.co/6mUvzVIDCC", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756232476651921647" + ], + "editable_until_msecs": "1707557026000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "18265", + "state": "EnabledWithCount" + }, + "source": "Twitter for Android", + "legacy": { + "bookmark_count": 10, + "bookmarked": false, + "created_at": "Sat Feb 10 08:23:46 +0000 2024", + "conversation_id_str": "1756232476651921647", + "display_text_range": [ + 0, + 249 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 231, + "favorited": false, + "full_text": "When it comes to Putin's comment accusing Poland for being at fault for starting the Second World War, it's quite likely that he like many others in Russian elite circles believe that German political leaders secretly agree with this blame-shifting.", + "is_quote_status": false, + "lang": "en", + "quote_count": 7, + "reply_count": 5, + "retweet_count": 60, + "retweeted": false, + "user_id_str": "450896622", + "id_str": "1756232476651921647" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756244159424303254", + "sortIndex": "1756309211907620792", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756244159424303254", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1Nzk3NDc1NjQ=", + "rest_id": "579747564", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon May 14 08:03:59 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "presidentilves.ee", + "expanded_url": "http://www.presidentilves.ee", + "url": "https://t.co/lnQ9ajxxvK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 21032, + "followers_count": 195736, + "friends_count": 1925, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2118, + "location": "Estonia", + "media_count": 1112, + "name": "toomas ilves, ex-verif", + "normal_followers_count": 195736, + "pinned_tweet_ids_str": [ + "1597508496828006401" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "IlvesToomas", + "statuses_count": 207297, + "translator_type": "none", + "url": "https://t.co/lnQ9ajxxvK", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756244159424303254" + ], + "editable_until_msecs": "1707559811702", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:10:11 +0000 2024", + "conversation_id_str": "1756244159424303254", + "display_text_range": [ + 0, + 30 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "393885518", + "name": "Constanze Stelzenmüller", + "screen_name": "ConStelz", + "indices": [ + 3, + 12 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @ConStelz: Oh we do. We do.", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1756062150915662133", + "quoted_status_permalink": { + "url": "https://t.co/qs7HaONzjG", + "expanded": "https://twitter.com/timothydsnyder/status/1756062150915662133", + "display": "twitter.com/timothydsnyder…" + }, + "reply_count": 0, + "retweet_count": 28, + "retweeted": false, + "user_id_str": "579747564", + "id_str": "1756244159424303254", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756235702403026953", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozOTM4ODU1MTg=", + "rest_id": "393885518", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Wed Oct 19 07:21:03 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Director CUSE Germany explainer etc. @ Brookings; FT contributing columnist. Wizards fan. (I know.) pic: Marc Darchinger. Views my own, people.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "brookings.edu/people/constan…", + "expanded_url": "https://www.brookings.edu/people/constanze-stelzenmuller/", + "url": "https://t.co/OlokIbyQ2c", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 68829, + "followers_count": 48565, + "friends_count": 3130, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 741, + "location": "Brookings Institution", + "media_count": 1357, + "name": "Constanze Stelzenmüller", + "normal_followers_count": 48565, + "pinned_tweet_ids_str": [ + "1275884891834646528" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/393885518/1648332522", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1585403982914195457/7sxza-Or_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ConStelz", + "statuses_count": 54932, + "translator_type": "none", + "url": "https://t.co/OlokIbyQ2c", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756235702403026953" + ], + "editable_until_msecs": "1707557795000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "11460", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756062150915662133", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozMTI5OTY4MjYx", + "rest_id": "3129968261", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Mon Mar 30 21:25:57 +0000 2015", + "default_profile": false, + "default_profile_image": false, + "description": "Levin Professor of History at Yale. Author of \"On Tyranny,\" with 20 new lessons on Ukraine, \"Our Malady,\" \"Road to Unfreedom,\" \"Black Earth,\" and \"Bloodlands\"", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "snyder.substack.com", + "expanded_url": "http://snyder.substack.com", + "url": "https://t.co/K08VDpolcl", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 2, + "followers_count": 542839, + "friends_count": 57, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 6175, + "location": "", + "media_count": 472, + "name": "Timothy Snyder", + "normal_followers_count": 542839, + "pinned_tweet_ids_str": [ + "1326319545427107840" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3129968261/1663344988", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/582655768471552000/8Ad5TU8L_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "TimothyDSnyder", + "statuses_count": 4398, + "translator_type": "none", + "url": "https://t.co/K08VDpolcl", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756062150915662133" + ], + "editable_until_msecs": "1707516417000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "559263", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "quotedRefResult": { + "result": { + "__typename": "Tweet", + "rest_id": "1755891586582372436" + } + }, + "legacy": { + "bookmark_count": 322, + "bookmarked": false, + "created_at": "Fri Feb 09 21:06:57 +0000 2024", + "conversation_id_str": "1756062150915662133", + "display_text_range": [ + 0, + 95 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 11636, + "favorited": false, + "full_text": "Not enough people recognize that Putin is playacting the –German– side in the Second World War.", + "is_quote_status": true, + "lang": "en", + "quote_count": 111, + "quoted_status_id_str": "1755891586582372436", + "quoted_status_permalink": { + "url": "https://t.co/0AuhqsdJUW", + "expanded": "https://twitter.com/Gerashchenko_en/status/1755891586582372436", + "display": "twitter.com/Gerashchenko_e…" + }, + "reply_count": 402, + "retweet_count": 2814, + "retweeted": false, + "user_id_str": "3129968261", + "id_str": "1756062150915662133" + } + } + }, + "legacy": { + "bookmark_count": 2, + "bookmarked": false, + "created_at": "Sat Feb 10 08:36:35 +0000 2024", + "conversation_id_str": "1756235702403026953", + "display_text_range": [ + 0, + 16 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 175, + "favorited": false, + "full_text": "Oh we do. We do.", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1756062150915662133", + "quoted_status_permalink": { + "url": "https://t.co/qs7HaONzjG", + "expanded": "https://twitter.com/timothydsnyder/status/1756062150915662133", + "display": "twitter.com/timothydsnyder…" + }, + "reply_count": 5, + "retweet_count": 28, + "retweeted": false, + "user_id_str": "393885518", + "id_str": "1756235702403026953" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756244019401617573", + "sortIndex": "1756309211907620791", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756244019401617573", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1Nzk3NDc1NjQ=", + "rest_id": "579747564", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon May 14 08:03:59 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "presidentilves.ee", + "expanded_url": "http://www.presidentilves.ee", + "url": "https://t.co/lnQ9ajxxvK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 21032, + "followers_count": 195736, + "friends_count": 1925, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2118, + "location": "Estonia", + "media_count": 1112, + "name": "toomas ilves, ex-verif", + "normal_followers_count": 195736, + "pinned_tweet_ids_str": [ + "1597508496828006401" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "IlvesToomas", + "statuses_count": 207297, + "translator_type": "none", + "url": "https://t.co/lnQ9ajxxvK", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/uUV0xZuyi7", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 150, + "width": 267, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Finding Ukrainian civilians in Russian captivity is hard - and there is no a formal way to secure their release.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.bbc.co.uk", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 320, + "width": 569, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "612473", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 81, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "creator", + "value": { + "type": "USER", + "user_value": { + "id_str": "612473", + "path": [] + } + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_alt_text", + "value": { + "string_value": "Mykyta", + "type": "STRING" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "bbc.co.uk", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_alt_text", + "value": { + "string_value": "Mykyta", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 27, + "green": 29, + "red": 29 + }, + "percentage": 48.9 + }, + { + "rgb": { + "blue": 217, + "green": 222, + "red": 221 + }, + "percentage": 26.38 + }, + { + "rgb": { + "blue": 115, + "green": 164, + "red": 174 + }, + "percentage": 18.47 + }, + { + "rgb": { + "blue": 120, + "green": 120, + "red": 120 + }, + "percentage": 5.01 + }, + { + "rgb": { + "blue": 84, + "green": 110, + "red": 116 + }, + "percentage": 2.05 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "The Ukrainians 'disappearing' in Russia's prisons", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 27, + "green": 29, + "red": 29 + }, + "percentage": 48.9 + }, + { + "rgb": { + "blue": 217, + "green": 222, + "red": 221 + }, + "percentage": 26.38 + }, + { + "rgb": { + "blue": 115, + "green": 164, + "red": 174 + }, + "percentage": 18.47 + }, + { + "rgb": { + "blue": 120, + "green": 120, + "red": 120 + }, + "percentage": 5.01 + }, + { + "rgb": { + "blue": 84, + "green": 110, + "red": 116 + }, + "percentage": 2.05 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 27, + "green": 29, + "red": 29 + }, + "percentage": 48.9 + }, + { + "rgb": { + "blue": 217, + "green": 222, + "red": 221 + }, + "percentage": 26.38 + }, + { + "rgb": { + "blue": 115, + "green": 164, + "red": 174 + }, + "percentage": 18.47 + }, + { + "rgb": { + "blue": 120, + "green": 120, + "red": 120 + }, + "percentage": 5.01 + }, + { + "rgb": { + "blue": 84, + "green": 110, + "red": 116 + }, + "percentage": 2.05 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/uUV0xZuyi7", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/uUV0xZuyi7", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjo2MTI0NzM=", + "rest_id": "612473", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Jan 08 08:05:57 +0000 2007", + "default_profile": false, + "default_profile_image": false, + "description": "News, features and analysis. For world news, follow @BBCWorld. Breaking news, follow @BBCBreaking. Latest sport news @BBCSport. Our Instagram: BBCNews", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bbc.co.uk/news", + "expanded_url": "http://www.bbc.co.uk/news", + "url": "https://t.co/9WpHz3Aebw", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 2, + "followers_count": 15318284, + "friends_count": 85, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 51334, + "location": "London", + "media_count": 48994, + "name": "BBC News (UK)", + "normal_followers_count": 15318284, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/612473/1663662081", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1529107486271225859/03qcVNIk_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "BBCNews", + "statuses_count": 552307, + "translator_type": "regular", + "url": "https://t.co/9WpHz3Aebw", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + { + "result": { + "__typename": "User", + "id": "VXNlcjo2MTI0NzM=", + "rest_id": "612473", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Jan 08 08:05:57 +0000 2007", + "default_profile": false, + "default_profile_image": false, + "description": "News, features and analysis. For world news, follow @BBCWorld. Breaking news, follow @BBCBreaking. Latest sport news @BBCSport. Our Instagram: BBCNews", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bbc.co.uk/news", + "expanded_url": "http://www.bbc.co.uk/news", + "url": "https://t.co/9WpHz3Aebw", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 2, + "followers_count": 15318284, + "friends_count": 85, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 51334, + "location": "London", + "media_count": 48994, + "name": "BBC News (UK)", + "normal_followers_count": 15318284, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/612473/1663662081", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1529107486271225859/03qcVNIk_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "BBCNews", + "statuses_count": 552307, + "translator_type": "regular", + "url": "https://t.co/9WpHz3Aebw", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756244019401617573" + ], + "editable_until_msecs": "1707559778318", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:09:38 +0000 2024", + "conversation_id_str": "1756244019401617573", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "2758100418", + "name": "Glasnost Gone", + "screen_name": "GlasnostGone", + "indices": [ + 3, + 16 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @GlasnostGone: Russian soldiers arrived. Said \"We've come to liberate you from your government. Putin is cool.\" \"They took my brother My…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 332, + "retweeted": false, + "user_id_str": "579747564", + "id_str": "1756244019401617573", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756230177670017291", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyNzU4MTAwNDE4", + "rest_id": "2758100418", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sat Aug 23 08:08:17 +0000 2014", + "default_profile": false, + "default_profile_image": false, + "description": "I don't like tiny, topless Russian, tin-pot dictators who run away from coups & invade #Ukraine. YouTube https://t.co/mWxQQY3T8J", + "entities": { + "description": { + "urls": [ + { + "display_url": "youtube.com/@RussiaInvaded…", + "expanded_url": "https://www.youtube.com/@RussiaInvadedUkraine", + "url": "https://t.co/mWxQQY3T8J", + "indices": [ + 105, + 128 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 231295, + "followers_count": 140562, + "friends_count": 2225, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 2186, + "location": "London", + "media_count": 39063, + "name": "Glasnost Gone", + "normal_followers_count": 140562, + "pinned_tweet_ids_str": [ + "1756262239072350208" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2758100418/1480500499", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/877204602881540096/EB8Gdn25_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "GlasnostGone", + "statuses_count": 153730, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/uUV0xZuyi7", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 150, + "width": 267, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Finding Ukrainian civilians in Russian captivity is hard - and there is no a formal way to secure their release.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.bbc.co.uk", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 320, + "width": 569, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "612473", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 81, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "creator", + "value": { + "type": "USER", + "user_value": { + "id_str": "612473", + "path": [] + } + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_alt_text", + "value": { + "string_value": "Mykyta", + "type": "STRING" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "bbc.co.uk", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_alt_text", + "value": { + "string_value": "Mykyta", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 27, + "green": 29, + "red": 29 + }, + "percentage": 48.9 + }, + { + "rgb": { + "blue": 217, + "green": 222, + "red": 221 + }, + "percentage": 26.38 + }, + { + "rgb": { + "blue": 115, + "green": 164, + "red": 174 + }, + "percentage": 18.47 + }, + { + "rgb": { + "blue": 120, + "green": 120, + "red": 120 + }, + "percentage": 5.01 + }, + { + "rgb": { + "blue": 84, + "green": 110, + "red": 116 + }, + "percentage": 2.05 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "The Ukrainians 'disappearing' in Russia's prisons", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 27, + "green": 29, + "red": 29 + }, + "percentage": 48.9 + }, + { + "rgb": { + "blue": 217, + "green": 222, + "red": 221 + }, + "percentage": 26.38 + }, + { + "rgb": { + "blue": 115, + "green": 164, + "red": 174 + }, + "percentage": 18.47 + }, + { + "rgb": { + "blue": 120, + "green": 120, + "red": 120 + }, + "percentage": 5.01 + }, + { + "rgb": { + "blue": 84, + "green": 110, + "red": 116 + }, + "percentage": 2.05 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 27, + "green": 29, + "red": 29 + }, + "percentage": 48.9 + }, + { + "rgb": { + "blue": 217, + "green": 222, + "red": 221 + }, + "percentage": 26.38 + }, + { + "rgb": { + "blue": 115, + "green": 164, + "red": 174 + }, + "percentage": 18.47 + }, + { + "rgb": { + "blue": 120, + "green": 120, + "red": 120 + }, + "percentage": 5.01 + }, + { + "rgb": { + "blue": 84, + "green": 110, + "red": 116 + }, + "percentage": 2.05 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/uUV0xZuyi7", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "alt": "Mykyta", + "height": 576, + "width": 1024, + "url": "https://pbs.twimg.com/card_img/1756130071444688896/_niYm8m0?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/uUV0xZuyi7", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjo2MTI0NzM=", + "rest_id": "612473", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Jan 08 08:05:57 +0000 2007", + "default_profile": false, + "default_profile_image": false, + "description": "News, features and analysis. For world news, follow @BBCWorld. Breaking news, follow @BBCBreaking. Latest sport news @BBCSport. Our Instagram: BBCNews", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bbc.co.uk/news", + "expanded_url": "http://www.bbc.co.uk/news", + "url": "https://t.co/9WpHz3Aebw", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 2, + "followers_count": 15318284, + "friends_count": 85, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 51334, + "location": "London", + "media_count": 48994, + "name": "BBC News (UK)", + "normal_followers_count": 15318284, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/612473/1663662081", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1529107486271225859/03qcVNIk_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "BBCNews", + "statuses_count": 552307, + "translator_type": "regular", + "url": "https://t.co/9WpHz3Aebw", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + { + "result": { + "__typename": "User", + "id": "VXNlcjo2MTI0NzM=", + "rest_id": "612473", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Jan 08 08:05:57 +0000 2007", + "default_profile": false, + "default_profile_image": false, + "description": "News, features and analysis. For world news, follow @BBCWorld. Breaking news, follow @BBCBreaking. Latest sport news @BBCSport. Our Instagram: BBCNews", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bbc.co.uk/news", + "expanded_url": "http://www.bbc.co.uk/news", + "url": "https://t.co/9WpHz3Aebw", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 2, + "followers_count": 15318284, + "friends_count": 85, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 51334, + "location": "London", + "media_count": 48994, + "name": "BBC News (UK)", + "normal_followers_count": 15318284, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/612473/1663662081", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1529107486271225859/03qcVNIk_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "BBCNews", + "statuses_count": 552307, + "translator_type": "regular", + "url": "https://t.co/9WpHz3Aebw", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756230177670017291" + ], + "editable_until_msecs": "1707556478000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "21801", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 34, + "bookmarked": false, + "created_at": "Sat Feb 10 08:14:38 +0000 2024", + "conversation_id_str": "1756230177670017291", + "display_text_range": [ + 0, + 255 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 247, + 255 + ], + "text": "Ukraine" + } + ], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "bbc.co.uk/news/world-eur…", + "expanded_url": "https://www.bbc.co.uk/news/world-europe-67949942", + "url": "https://t.co/uUV0xZuyi7", + "indices": [ + 223, + 246 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 545, + "favorited": false, + "full_text": "Russian soldiers arrived. Said \"We've come to liberate you from your government. Putin is cool.\" \"They took my brother Mykyta and others behind some trees and told them to line up against a wall, yelling: 'Get ready! Aim!' https://t.co/uUV0xZuyi7 #Ukraine", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 10, + "reply_count": 19, + "retweet_count": 332, + "retweeted": false, + "user_id_str": "2758100418", + "id_str": "1756230177670017291" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756243925860282450", + "sortIndex": "1756309211907620790", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756243925860282450", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1Nzk3NDc1NjQ=", + "rest_id": "579747564", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon May 14 08:03:59 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "presidentilves.ee", + "expanded_url": "http://www.presidentilves.ee", + "url": "https://t.co/lnQ9ajxxvK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 21032, + "followers_count": 195736, + "friends_count": 1925, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2118, + "location": "Estonia", + "media_count": 1112, + "name": "toomas ilves, ex-verif", + "normal_followers_count": 195736, + "pinned_tweet_ids_str": [ + "1597508496828006401" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "IlvesToomas", + "statuses_count": 207297, + "translator_type": "none", + "url": "https://t.co/lnQ9ajxxvK", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756243925860282450" + ], + "editable_until_msecs": "1707559756016", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:09:16 +0000 2024", + "conversation_id_str": "1756243925860282450", + "display_text_range": [ + 0, + 139 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "105327432", + "name": "Julia Davis", + "screen_name": "JuliaDavisNews", + "indices": [ + 3, + 18 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @JuliaDavisNews: Now that Tucker's interview tanked, Margarita Simonyan is quoting my article but seemingly trying to distance herself,…", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1754899704012280203", + "quoted_status_permalink": { + "url": "https://t.co/iiIcgATH76", + "expanded": "https://x.com/JuliaDavisNews/status/1754899704012280203?s=20", + "display": "x.com/JuliaDavisNews…" + }, + "reply_count": 0, + "retweet_count": 346, + "retweeted": false, + "user_id_str": "579747564", + "id_str": "1756243925860282450", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756141610255958378", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMDUzMjc0MzI=", + "rest_id": "105327432", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Sat Jan 16 01:34:50 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thedailybeast.com/author/julia-d…", + "expanded_url": "https://www.thedailybeast.com/author/julia-davis", + "url": "https://t.co/jkgE3TNxS4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 167957, + "followers_count": 456882, + "friends_count": 1615, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 7011, + "location": "United States", + "media_count": 21531, + "name": "Julia Davis", + "normal_followers_count": 456882, + "pinned_tweet_ids_str": [ + "1528031848240140288" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", + "profile_interstitial_type": "", + "screen_name": "JuliaDavisNews", + "statuses_count": 118313, + "translator_type": "none", + "url": "https://t.co/jkgE3TNxS4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756141610255958378" + ], + "editable_until_msecs": "1707535362000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "87973", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1754899704012280203", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMDUzMjc0MzI=", + "rest_id": "105327432", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Sat Jan 16 01:34:50 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thedailybeast.com/author/julia-d…", + "expanded_url": "https://www.thedailybeast.com/author/julia-davis", + "url": "https://t.co/jkgE3TNxS4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 167957, + "followers_count": 456882, + "friends_count": 1615, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 7011, + "location": "United States", + "media_count": 21531, + "name": "Julia Davis", + "normal_followers_count": 456882, + "pinned_tweet_ids_str": [ + "1528031848240140288" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", + "profile_interstitial_type": "", + "screen_name": "JuliaDavisNews", + "statuses_count": 118313, + "translator_type": "none", + "url": "https://t.co/jkgE3TNxS4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/a91l4Y0pc5", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1754898634380832769/-P2rvgxQ?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 150, + "width": 267, + "url": "https://pbs.twimg.com/card_img/1754898634380832769/-P2rvgxQ?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Russia’s state TV stooges believe a Tucker Carlson-Putin interview will boost Putin at home and help restore Trump to the White House.", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.thedailybeast.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 320, + "width": 569, + "url": "https://pbs.twimg.com/card_img/1754898634380832769/-P2rvgxQ?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1754898634380832769/-P2rvgxQ?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 675, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1754898634380832769/-P2rvgxQ?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "16012783", + "path": [] + } + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1754898634380832769/-P2rvgxQ?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1754898634380832769/-P2rvgxQ?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 81, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1754898634380832769/-P2rvgxQ?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "creator", + "value": { + "type": "USER", + "user_value": { + "id_str": "105327432", + "path": [] + } + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 675, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1754898634380832769/-P2rvgxQ?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 675, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1754898634380832769/-P2rvgxQ?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "thedailybeast.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1754898634380832769/-P2rvgxQ?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 18, + "green": 18, + "red": 187 + }, + "percentage": 49.23 + }, + { + "rgb": { + "blue": 17, + "green": 17, + "red": 31 + }, + "percentage": 26.86 + }, + { + "rgb": { + "blue": 17, + "green": 16, + "red": 84 + }, + "percentage": 9.85 + }, + { + "rgb": { + "blue": 201, + "green": 201, + "red": 201 + }, + "percentage": 7.77 + }, + { + "rgb": { + "blue": 15, + "green": 14, + "red": 55 + }, + "percentage": 1.11 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Kremlin Cronies: Putin-Tucker Interview Will ‘Blow Up’ U.S. Election", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 18, + "green": 18, + "red": 187 + }, + "percentage": 49.23 + }, + { + "rgb": { + "blue": 17, + "green": 17, + "red": 31 + }, + "percentage": 26.86 + }, + { + "rgb": { + "blue": 17, + "green": 16, + "red": 84 + }, + "percentage": 9.85 + }, + { + "rgb": { + "blue": 201, + "green": 201, + "red": 201 + }, + "percentage": 7.77 + }, + { + "rgb": { + "blue": 15, + "green": 14, + "red": 55 + }, + "percentage": 1.11 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 675, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1754898634380832769/-P2rvgxQ?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1754898634380832769/-P2rvgxQ?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 18, + "green": 18, + "red": 187 + }, + "percentage": 49.23 + }, + { + "rgb": { + "blue": 17, + "green": 17, + "red": 31 + }, + "percentage": 26.86 + }, + { + "rgb": { + "blue": 17, + "green": 16, + "red": 84 + }, + "percentage": 9.85 + }, + { + "rgb": { + "blue": 201, + "green": 201, + "red": 201 + }, + "percentage": 7.77 + }, + { + "rgb": { + "blue": 15, + "green": 14, + "red": 55 + }, + "percentage": 1.11 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 675, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1754898634380832769/-P2rvgxQ?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/a91l4Y0pc5", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 675, + "width": 1200, + "url": "https://pbs.twimg.com/card_img/1754898634380832769/-P2rvgxQ?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/a91l4Y0pc5", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoxMDUzMjc0MzI=", + "rest_id": "105327432", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Sat Jan 16 01:34:50 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Columnist @TheDailyBeast, creator of the Russian Media Monitor, sanctioned by Russia, member of @TheEmmys.\n\nI watch Russian state TV, so you don't have to.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thedailybeast.com/author/julia-d…", + "expanded_url": "https://www.thedailybeast.com/author/julia-davis", + "url": "https://t.co/jkgE3TNxS4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 167957, + "followers_count": 456882, + "friends_count": 1615, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 7011, + "location": "United States", + "media_count": 21531, + "name": "Julia Davis", + "normal_followers_count": 456882, + "pinned_tweet_ids_str": [ + "1528031848240140288" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/105327432/1653441376", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173814137878646784/Gu54B4pc_normal.png", + "profile_interstitial_type": "", + "screen_name": "JuliaDavisNews", + "statuses_count": 118313, + "translator_type": "none", + "url": "https://t.co/jkgE3TNxS4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjAxMjc4Mw==", + "rest_id": "16012783", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Wed Aug 27 15:24:02 +0000 2008", + "default_profile": false, + "default_profile_image": false, + "description": "Independent. Intelligent. Influential. Send tips to tips@thedailybeast.com\n\nCheck out @beastobsessed, our new hub for pop-culture's moments, movies and shows!", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "thedailybeast.com", + "expanded_url": "https://www.thedailybeast.com/", + "url": "https://t.co/F8DfniC2XD", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 2976, + "followers_count": 1360927, + "friends_count": 1026, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 21880, + "location": "New York, NY", + "media_count": 66671, + "name": "The Daily Beast", + "normal_followers_count": 1360927, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/16012783/1636046565", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1234868520040771584/28a_ytJJ_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "thedailybeast", + "statuses_count": 439711, + "translator_type": "none", + "url": "https://t.co/F8DfniC2XD", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1754899704012280203" + ], + "editable_until_msecs": "1707239268000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "612181", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 175, + "bookmarked": false, + "created_at": "Tue Feb 06 16:07:48 +0000 2024", + "conversation_id_str": "1754899704012280203", + "display_text_range": [ + 0, + 259 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "thedailybeast.com/kremlin-cronie…", + "expanded_url": "https://www.thedailybeast.com/kremlin-cronies-putin-tucker-interview-will-blow-up-us-election", + "url": "https://t.co/a91l4Y0pc5", + "indices": [ + 236, + 259 + ] + } + ], + "user_mentions": [ + { + "id_str": "16012783", + "name": "The Daily Beast", + "screen_name": "thedailybeast", + "indices": [ + 220, + 234 + ] + } + ] + }, + "favorite_count": 3100, + "favorited": false, + "full_text": "Kremlin Cronies: Putin-Tucker Interview Will ‘Blow Up’ U.S. Election\n\nRussia’s state TV stooges believe a Tucker Carlson-Putin interview will boost Putin at home and help restore Trump to the White House.\n\nMy latest for @thedailybeast \nhttps://t.co/a91l4Y0pc5", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 106, + "reply_count": 351, + "retweet_count": 1207, + "retweeted": false, + "user_id_str": "105327432", + "id_str": "1754899704012280203" + } + } + }, + "legacy": { + "bookmark_count": 46, + "bookmarked": false, + "created_at": "Sat Feb 10 02:22:42 +0000 2024", + "conversation_id_str": "1756141610255958378", + "display_text_range": [ + 0, + 272 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/7VWIk7hMcP", + "expanded_url": "https://twitter.com/JuliaDavisNews/status/1756141610255958378/photo/1", + "id_str": "1756141589787713536", + "indices": [ + 273, + 296 + ], + "media_key": "3_1756141589787713536", + "media_url_https": "https://pbs.twimg.com/media/GF8ReLKWIAAVHzd.png", + "type": "photo", + "url": "https://t.co/7VWIk7hMcP", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 77, + "y": 203, + "h": 84, + "w": 84 + } + ] + }, + "medium": { + "faces": [ + { + "x": 77, + "y": 203, + "h": 84, + "w": 84 + } + ] + }, + "small": { + "faces": [ + { + "x": 62, + "y": 163, + "h": 67, + "w": 67 + } + ] + }, + "orig": { + "faces": [ + { + "x": 77, + "y": 203, + "h": 84, + "w": 84 + } + ] + } + }, + "sizes": { + "large": { + "h": 842, + "w": 785, + "resize": "fit" + }, + "medium": { + "h": 842, + "w": 785, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 634, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 842, + "width": 785, + "focus_rects": [ + { + "x": 0, + "y": 222, + "w": 785, + "h": 440 + }, + { + "x": 0, + "y": 50, + "w": 785, + "h": 785 + }, + { + "x": 0, + "y": 0, + "w": 739, + "h": 842 + }, + { + "x": 0, + "y": 0, + "w": 421, + "h": 842 + }, + { + "x": 0, + "y": 0, + "w": 785, + "h": 842 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "x.com/JuliaDavisNews…", + "expanded_url": "https://x.com/JuliaDavisNews/status/1754899704012280203?s=20", + "url": "https://t.co/iiIcgATH76", + "indices": [ + 249, + 272 + ] + } + ], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/7VWIk7hMcP", + "expanded_url": "https://twitter.com/JuliaDavisNews/status/1756141610255958378/photo/1", + "id_str": "1756141589787713536", + "indices": [ + 273, + 296 + ], + "media_key": "3_1756141589787713536", + "media_url_https": "https://pbs.twimg.com/media/GF8ReLKWIAAVHzd.png", + "type": "photo", + "url": "https://t.co/7VWIk7hMcP", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 77, + "y": 203, + "h": 84, + "w": 84 + } + ] + }, + "medium": { + "faces": [ + { + "x": 77, + "y": 203, + "h": 84, + "w": 84 + } + ] + }, + "small": { + "faces": [ + { + "x": 62, + "y": 163, + "h": 67, + "w": 67 + } + ] + }, + "orig": { + "faces": [ + { + "x": 77, + "y": 203, + "h": 84, + "w": 84 + } + ] + } + }, + "sizes": { + "large": { + "h": 842, + "w": 785, + "resize": "fit" + }, + "medium": { + "h": 842, + "w": 785, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 634, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 842, + "width": 785, + "focus_rects": [ + { + "x": 0, + "y": 222, + "w": 785, + "h": 440 + }, + { + "x": 0, + "y": 50, + "w": 785, + "h": 785 + }, + { + "x": 0, + "y": 0, + "w": 739, + "h": 842 + }, + { + "x": 0, + "y": 0, + "w": 421, + "h": 842 + }, + { + "x": 0, + "y": 0, + "w": 785, + "h": 842 + } + ] + } + } + ] + }, + "favorite_count": 1261, + "favorited": false, + "full_text": "Now that Tucker's interview tanked, Margarita Simonyan is quoting my article but seemingly trying to distance herself, pretending she is not responsible for encouraging Putin to sit down with Carlson, except she is on video (see below). Whoopsies. \nhttps://t.co/iiIcgATH76 https://t.co/7VWIk7hMcP", + "is_quote_status": true, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 7, + "quoted_status_id_str": "1754899704012280203", + "quoted_status_permalink": { + "url": "https://t.co/iiIcgATH76", + "expanded": "https://x.com/JuliaDavisNews/status/1754899704012280203?s=20", + "display": "x.com/JuliaDavisNews…" + }, + "reply_count": 46, + "retweet_count": 346, + "retweeted": false, + "user_id_str": "105327432", + "id_str": "1756141610255958378" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756243629650182503", + "sortIndex": "1756309211907620789", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756243629650182503", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDM0Mjc0NDg=", + "rest_id": "143427448", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu May 13 12:47:30 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Welcome to 🇺🇦 MFA Twitter account! We Represent, Protect, Promote Ukraine and its highest value – People. Our Foreign Minister – @DmytroKuleba.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "mfa.gov.ua", + "expanded_url": "http://www.mfa.gov.ua", + "url": "https://t.co/WK7H0wB3YC", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 5645, + "followers_count": 470845, + "friends_count": 1199, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 6888, + "location": "Ukraine, Kyiv", + "media_count": 11661, + "name": "MFA of Ukraine 🇺🇦", + "normal_followers_count": 470845, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/143427448/1700662055", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1679533657869139970/GnBhH_-l_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "MFA_Ukraine", + "statuses_count": 69484, + "translator_type": "none", + "url": "https://t.co/WK7H0wB3YC", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1505218857501343748", + "professional_type": "Business", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756243629650182503" + ], + "editable_until_msecs": "1707559685000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "24082", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 8, + "bookmarked": false, + "created_at": "Sat Feb 10 09:08:05 +0000 2024", + "conversation_id_str": "1756243629650182503", + "display_text_range": [ + 0, + 279 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 32, + 40 + ], + "text": "Kharkiv" + }, + { + "indices": [ + 255, + 279 + ], + "text": "RussiaIsATerroristState" + } + ], + "media": [ + { + "display_url": "pic.twitter.com/BdPVXvZbpl", + "expanded_url": "https://twitter.com/MFA_Ukraine/status/1756243629650182503/video/1", + "id_str": "1756243606321483776", + "indices": [ + 280, + 303 + ], + "media_key": "7_1756243606321483776", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1756243606321483776/pu/img/dxY-lesN2aRVWPGr.jpg", + "type": "video", + "url": "https://t.co/BdPVXvZbpl", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 720, + "resize": "fit" + }, + "medium": { + "h": 720, + "w": 720, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 720, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 1, + 1 + ], + "duration_millis": 11200, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1756243606321483776/pu/pl/dwKIbyuFfUqLf7MR.m3u8?tag=12&container=cmaf" + }, + { + "bitrate": 432000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756243606321483776/pu/vid/avc1/320x320/RqlmGMMtiwX7xJ1h.mp4?tag=12" + }, + { + "bitrate": 1280000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756243606321483776/pu/vid/avc1/720x720/OTuLPuwhIst1xJNB.mp4?tag=12" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756243606321483776/pu/vid/avc1/540x540/6a2RxOTz8835Jd00.mp4?tag=12" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/BdPVXvZbpl", + "expanded_url": "https://twitter.com/MFA_Ukraine/status/1756243629650182503/video/1", + "id_str": "1756243606321483776", + "indices": [ + 280, + 303 + ], + "media_key": "7_1756243606321483776", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1756243606321483776/pu/img/dxY-lesN2aRVWPGr.jpg", + "type": "video", + "url": "https://t.co/BdPVXvZbpl", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 720, + "w": 720, + "resize": "fit" + }, + "medium": { + "h": 720, + "w": 720, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 720, + "width": 720, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 1, + 1 + ], + "duration_millis": 11200, + "variants": [ + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1756243606321483776/pu/pl/dwKIbyuFfUqLf7MR.m3u8?tag=12&container=cmaf" + }, + { + "bitrate": 432000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756243606321483776/pu/vid/avc1/320x320/RqlmGMMtiwX7xJ1h.mp4?tag=12" + }, + { + "bitrate": 1280000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756243606321483776/pu/vid/avc1/720x720/OTuLPuwhIst1xJNB.mp4?tag=12" + }, + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756243606321483776/pu/vid/avc1/540x540/6a2RxOTz8835Jd00.mp4?tag=12" + } + ] + } + } + ] + }, + "favorite_count": 320, + "favorited": false, + "full_text": "Russia attacked an oil depot in #Kharkiv with drones. \n\n15 houses were completely burned down. At least 7 people were killed, and 3 injured.\n\nIn one of the houses, a family of 5 was killed: a man, his wife, and 3 kids, aged 7 and 4 years & 7 months.\n\n#RussiaIsATerroristState https://t.co/BdPVXvZbpl", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 21, + "reply_count": 17, + "retweet_count": 230, + "retweeted": false, + "user_id_str": "143427448", + "id_str": "1756243629650182503" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756243184596775326", + "sortIndex": "1756309211907620788", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756243184596775326", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1Nzk3NDc1NjQ=", + "rest_id": "579747564", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon May 14 08:03:59 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "presidentilves.ee", + "expanded_url": "http://www.presidentilves.ee", + "url": "https://t.co/lnQ9ajxxvK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 21032, + "followers_count": 195736, + "friends_count": 1925, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2118, + "location": "Estonia", + "media_count": 1112, + "name": "toomas ilves, ex-verif", + "normal_followers_count": 195736, + "pinned_tweet_ids_str": [ + "1597508496828006401" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "IlvesToomas", + "statuses_count": 207297, + "translator_type": "none", + "url": "https://t.co/lnQ9ajxxvK", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/Hu6kTCTAiC", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 150, + "width": 226, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Der Europaabgeordnete der Grünen, Bütikofer, hat deutlich mehr europäische Unterstützung für die Ukraine gefordert. Insbesondere Deutschland könnte mit Blick auf die Wirtschaftskraft im internation...", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.deutschlandfunk.de", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 320, + "width": 481, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 3142, + "width": 4724, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 67, + "width": 100, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=100x100" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 1362, + "width": 2048, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 3142, + "width": 4724, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_alt_text", + "value": { + "string_value": "Der Grünen-Politiker Reinhard Bütikofer im Europaparlament", + "type": "STRING" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "deutschlandfunk.de", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_alt_text", + "value": { + "string_value": "Der Grünen-Politiker Reinhard Bütikofer im Europaparlament", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 203, + "green": 94, + "red": 68 + }, + "percentage": 55.83 + }, + { + "rgb": { + "blue": 95, + "green": 98, + "red": 100 + }, + "percentage": 17.8 + }, + { + "rgb": { + "blue": 234, + "green": 240, + "red": 247 + }, + "percentage": 12.65 + }, + { + "rgb": { + "blue": 199, + "green": 142, + "red": 131 + }, + "percentage": 6.22 + }, + { + "rgb": { + "blue": 144, + "green": 171, + "red": 206 + }, + "percentage": 2.6 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Ukraine-Hilfen - Bütikofer: Deutschland könnte deutlich mehr Hilfe leisten", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 203, + "green": 94, + "red": 68 + }, + "percentage": 55.83 + }, + { + "rgb": { + "blue": 95, + "green": 98, + "red": 100 + }, + "percentage": 17.8 + }, + { + "rgb": { + "blue": 234, + "green": 240, + "red": 247 + }, + "percentage": 12.65 + }, + { + "rgb": { + "blue": 199, + "green": 142, + "red": 131 + }, + "percentage": 6.22 + }, + { + "rgb": { + "blue": 144, + "green": 171, + "red": 206 + }, + "percentage": 2.6 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 1362, + "width": 2048, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 203, + "green": 94, + "red": 68 + }, + "percentage": 55.83 + }, + { + "rgb": { + "blue": 95, + "green": 98, + "red": 100 + }, + "percentage": 17.8 + }, + { + "rgb": { + "blue": 234, + "green": 240, + "red": 247 + }, + "percentage": 12.65 + }, + { + "rgb": { + "blue": 199, + "green": 142, + "red": 131 + }, + "percentage": 6.22 + }, + { + "rgb": { + "blue": 144, + "green": 171, + "red": 206 + }, + "percentage": 2.6 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 1362, + "width": 2048, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/Hu6kTCTAiC", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 3142, + "width": 4724, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/Hu6kTCTAiC", + "user_refs_results": [] + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756243184596775326" + ], + "editable_until_msecs": "1707559579285", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:06:19 +0000 2024", + "conversation_id_str": "1756243184596775326", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "20610385", + "name": "Reinhard Bütikofer", + "screen_name": "bueti", + "indices": [ + 3, + 9 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @bueti: Statt auf Trump zu starren, müssen wir Europäer selber deutlich mehr tun, um die Ukraine zu unterstützen. Mein Interview zum U.S…", + "is_quote_status": false, + "lang": "de", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 25, + "retweeted": false, + "user_id_str": "579747564", + "id_str": "1756243184596775326", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756237614552580315", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyMDYxMDM4NQ==", + "rest_id": "20610385", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Wed Feb 11 18:45:44 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "MEP", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "reinhardbuetikofer.de", + "expanded_url": "http://www.reinhardbuetikofer.de", + "url": "https://t.co/fzYO1mzaA9", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 23390, + "followers_count": 48206, + "friends_count": 796, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1318, + "location": "", + "media_count": 3914, + "name": "Reinhard Bütikofer", + "normal_followers_count": 48206, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/20610385/1448959766", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/994485415120900096/d2HrcJJy_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "bueti", + "statuses_count": 55082, + "translator_type": "none", + "url": "https://t.co/fzYO1mzaA9", + "verified": false, + "verified_type": "Government", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/Hu6kTCTAiC", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 150, + "width": 226, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "Der Europaabgeordnete der Grünen, Bütikofer, hat deutlich mehr europäische Unterstützung für die Ukraine gefordert. Insbesondere Deutschland könnte mit Blick auf die Wirtschaftskraft im internation...", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.deutschlandfunk.de", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 320, + "width": 481, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 3142, + "width": 4724, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 67, + "width": 100, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=100x100" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 1362, + "width": 2048, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 3142, + "width": 4724, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_alt_text", + "value": { + "string_value": "Der Grünen-Politiker Reinhard Bütikofer im Europaparlament", + "type": "STRING" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "deutschlandfunk.de", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_alt_text", + "value": { + "string_value": "Der Grünen-Politiker Reinhard Bütikofer im Europaparlament", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 203, + "green": 94, + "red": 68 + }, + "percentage": 55.83 + }, + { + "rgb": { + "blue": 95, + "green": 98, + "red": 100 + }, + "percentage": 17.8 + }, + { + "rgb": { + "blue": 234, + "green": 240, + "red": 247 + }, + "percentage": 12.65 + }, + { + "rgb": { + "blue": 199, + "green": 142, + "red": 131 + }, + "percentage": 6.22 + }, + { + "rgb": { + "blue": 144, + "green": 171, + "red": 206 + }, + "percentage": 2.6 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Ukraine-Hilfen - Bütikofer: Deutschland könnte deutlich mehr Hilfe leisten", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 203, + "green": 94, + "red": 68 + }, + "percentage": 55.83 + }, + { + "rgb": { + "blue": 95, + "green": 98, + "red": 100 + }, + "percentage": 17.8 + }, + { + "rgb": { + "blue": 234, + "green": 240, + "red": 247 + }, + "percentage": 12.65 + }, + { + "rgb": { + "blue": 199, + "green": 142, + "red": 131 + }, + "percentage": 6.22 + }, + { + "rgb": { + "blue": 144, + "green": 171, + "red": 206 + }, + "percentage": 2.6 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 1362, + "width": 2048, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 203, + "green": 94, + "red": 68 + }, + "percentage": 55.83 + }, + { + "rgb": { + "blue": 95, + "green": 98, + "red": 100 + }, + "percentage": 17.8 + }, + { + "rgb": { + "blue": 234, + "green": 240, + "red": 247 + }, + "percentage": 12.65 + }, + { + "rgb": { + "blue": 199, + "green": 142, + "red": 131 + }, + "percentage": 6.22 + }, + { + "rgb": { + "blue": 144, + "green": 171, + "red": 206 + }, + "percentage": 2.6 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 1362, + "width": 2048, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/Hu6kTCTAiC", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 3142, + "width": 4724, + "url": "https://pbs.twimg.com/card_img/1756226510933884928/mgLLgtEW?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/Hu6kTCTAiC", + "user_refs_results": [] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756237614552580315" + ], + "editable_until_msecs": "1707558251000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "count": "5251", + "state": "EnabledWithCount" + }, + "source": "Twitter for Android", + "legacy": { + "bookmark_count": 2, + "bookmarked": false, + "created_at": "Sat Feb 10 08:44:11 +0000 2024", + "conversation_id_str": "1756237614552580315", + "display_text_range": [ + 0, + 183 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "deutschlandfunk.de/buetikofer-deu…", + "expanded_url": "https://www.deutschlandfunk.de/buetikofer-deutschland-koennte-deutlich-mehr-hilfe-leisten-100.html", + "url": "https://t.co/Hu6kTCTAiC", + "indices": [ + 160, + 183 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 92, + "favorited": false, + "full_text": "Statt auf Trump zu starren, müssen wir Europäer selber deutlich mehr tun, um die Ukraine zu unterstützen. Mein Interview zum U.S.A.-Besuch des Bundeskanzlers. https://t.co/Hu6kTCTAiC", + "is_quote_status": false, + "lang": "de", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 10, + "retweet_count": 25, + "retweeted": false, + "user_id_str": "20610385", + "id_str": "1756237614552580315" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756243121044672623", + "sortIndex": "1756309211907620787", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756243121044672623", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NDA4MzE4Nw==", + "rest_id": "84083187", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Oct 21 13:42:34 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Ukraine Correspondent. British-Lebanese conflict journalist & filmmaker based in Kyiv. Co-host of @DrillPod. RTs ≠ endorsement.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ko-fi.com/ozkaterji", + "expanded_url": "http://ko-fi.com/ozkaterji", + "url": "https://t.co/FC9pQbgXa4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 45500, + "followers_count": 215887, + "friends_count": 11666, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3397, + "location": "Kyiv, Ukraine", + "media_count": 6412, + "name": "Oz Katerji", + "normal_followers_count": 215887, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84083187/1647382697", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713181637574275072/gUp8KMF4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OzKaterji", + "statuses_count": 174699, + "translator_type": "none", + "url": "https://t.co/FC9pQbgXa4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756243121044672623" + ], + "editable_until_msecs": "1707559564133", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:06:04 +0000 2024", + "conversation_id_str": "1756243121044672623", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "251760745", + "name": "Caroline Davies", + "screen_name": "caroline_gm_d", + "indices": [ + 3, + 17 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @caroline_gm_d: Pakistan has voted but there is still no government \nOur latest from Lahore’s celebrations as Imran Khan’s candidates ta…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 31, + "retweeted": false, + "user_id_str": "84083187", + "id_str": "1756243121044672623", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756242693527601348", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyNTE3NjA3NDU=", + "rest_id": "251760745", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Feb 13 20:04:58 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Pakistan Correspondent for @BBCNews Previously in Ukraine and Moscow Ex-Business and Transport Correspondent", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 2946, + "followers_count": 24647, + "friends_count": 2581, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 218, + "location": "Islamabad, Pakistan", + "media_count": 300, + "name": "Caroline Davies", + "normal_followers_count": 24647, + "pinned_tweet_ids_str": [ + "1612341757643051009" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/251760745/1673192543", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1750006001997148160/bOHXP7tg_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "caroline_gm_d", + "statuses_count": 1527, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756242693527601348" + ], + "editable_until_msecs": "1707559462000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "10015", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 3, + "bookmarked": false, + "created_at": "Sat Feb 10 09:04:22 +0000 2024", + "conversation_id_str": "1756242693527601348", + "display_text_range": [ + 0, + 180 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/EBIHM5OKDC", + "expanded_url": "https://twitter.com/caroline_gm_d/status/1756242693527601348/video/1", + "id_str": "1756237410222907392", + "indices": [ + 181, + 204 + ], + "media_key": "7_1756237410222907392", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1756237410222907392/pu/img/T7ZP4-DDMKwHNbBL.jpg", + "type": "video", + "url": "https://t.co/EBIHM5OKDC", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 540, + "w": 960, + "resize": "fit" + }, + "medium": { + "h": 540, + "w": 960, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 540, + "width": 960, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 122840, + "variants": [ + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756237410222907392/pu/vid/avc1/640x360/wlH1IKQzN3am31f2.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756237410222907392/pu/vid/avc1/960x540/HLbNWi8-h8gM-9kI.mp4?tag=12" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1756237410222907392/pu/pl/9ti5PnqX5uCCd1Ch.m3u8?tag=12&container=cmaf" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756237410222907392/pu/vid/avc1/480x270/zzeHIVYvbhD-fnen.mp4?tag=12" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "612473", + "name": "BBC News (UK)", + "screen_name": "BBCNews", + "indices": [ + 138, + 146 + ] + }, + { + "id_str": "50950601", + "name": "Usman عثمان", + "screen_name": "uszahid", + "indices": [ + 152, + 160 + ] + }, + { + "id_str": "573595419", + "name": "Malik Mudassir Hassan", + "screen_name": "MalikMudassir2", + "indices": [ + 165, + 180 + ] + } + ] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/EBIHM5OKDC", + "expanded_url": "https://twitter.com/caroline_gm_d/status/1756242693527601348/video/1", + "id_str": "1756237410222907392", + "indices": [ + 181, + 204 + ], + "media_key": "7_1756237410222907392", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1756237410222907392/pu/img/T7ZP4-DDMKwHNbBL.jpg", + "type": "video", + "url": "https://t.co/EBIHM5OKDC", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 540, + "w": 960, + "resize": "fit" + }, + "medium": { + "h": 540, + "w": 960, + "resize": "fit" + }, + "small": { + "h": 383, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 540, + "width": 960, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 16, + 9 + ], + "duration_millis": 122840, + "variants": [ + { + "bitrate": 832000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756237410222907392/pu/vid/avc1/640x360/wlH1IKQzN3am31f2.mp4?tag=12" + }, + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756237410222907392/pu/vid/avc1/960x540/HLbNWi8-h8gM-9kI.mp4?tag=12" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1756237410222907392/pu/pl/9ti5PnqX5uCCd1Ch.m3u8?tag=12&container=cmaf" + }, + { + "bitrate": 256000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756237410222907392/pu/vid/avc1/480x270/zzeHIVYvbhD-fnen.mp4?tag=12" + } + ] + } + } + ] + }, + "favorite_count": 63, + "favorited": false, + "full_text": "Pakistan has voted but there is still no government \nOur latest from Lahore’s celebrations as Imran Khan’s candidates take the lead \n\nFor @BBCNews with @uszahid and @MalikMudassir2 https://t.co/EBIHM5OKDC", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 3, + "reply_count": 7, + "retweet_count": 31, + "retweeted": false, + "user_id_str": "251760745", + "id_str": "1756242693527601348" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "list-conversation-1756309211907620942", + "sortIndex": "1756309211907620786", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "list-conversation-1756309211907620942-tweet-1756230387167039682", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756230387167039682", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyOTAxMDcxMA==", + "rest_id": "29010710", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sun Apr 05 16:13:47 +0000 2009", + "default_profile": true, + "default_profile_image": false, + "description": "Nationality: journalist. Freelancer, made in the BBC. Reporting what you need to know, not what you want to hear. Also, Lonely Planet guides.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 21173, + "followers_count": 71287, + "friends_count": 4541, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2089, + "location": "", + "media_count": 5873, + "name": "Leonid ХВ Ragozin", + "normal_followers_count": 71287, + "pinned_tweet_ids_str": [ + "1747949666581287074" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/29010710/1610454802", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1098307078991593474/vBl5zWMc_normal.png", + "profile_interstitial_type": "", + "screen_name": "leonidragozin", + "statuses_count": 64179, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1630527445676818432", + "professional_type": "Business", + "category": [ + { + "id": 579, + "name": "Media & News", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756230387167039682" + ], + "editable_until_msecs": "1707556528000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "3323", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "created_at": "Sat Feb 10 08:15:28 +0000 2024", + "conversation_id_str": "1756230387167039682", + "display_text_range": [ + 0, + 178 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/Xmsh0ECe4q", + "expanded_url": "https://twitter.com/leonidragozin/status/1756230387167039682/photo/1", + "id_str": "1756230382909861888", + "indices": [ + 179, + 202 + ], + "media_key": "3_1756230382909861888", + "media_url_https": "https://pbs.twimg.com/media/GF9iOnUXMAAyAg4.jpg", + "type": "photo", + "url": "https://t.co/Xmsh0ECe4q", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 810, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 810, + "w": 1080, + "resize": "fit" + }, + "small": { + "h": 510, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 810, + "width": 1080, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1080, + "h": 605 + }, + { + "x": 0, + "y": 0, + "w": 810, + "h": 810 + }, + { + "x": 50, + "y": 0, + "w": 711, + "h": 810 + }, + { + "x": 203, + "y": 0, + "w": 405, + "h": 810 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 810 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/Xmsh0ECe4q", + "expanded_url": "https://twitter.com/leonidragozin/status/1756230387167039682/photo/1", + "id_str": "1756230382909861888", + "indices": [ + 179, + 202 + ], + "media_key": "3_1756230382909861888", + "media_url_https": "https://pbs.twimg.com/media/GF9iOnUXMAAyAg4.jpg", + "type": "photo", + "url": "https://t.co/Xmsh0ECe4q", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 810, + "w": 1080, + "resize": "fit" + }, + "medium": { + "h": 810, + "w": 1080, + "resize": "fit" + }, + "small": { + "h": 510, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 810, + "width": 1080, + "focus_rects": [ + { + "x": 0, + "y": 0, + "w": 1080, + "h": 605 + }, + { + "x": 0, + "y": 0, + "w": 810, + "h": 810 + }, + { + "x": 50, + "y": 0, + "w": 711, + "h": 810 + }, + { + "x": 203, + "y": 0, + "w": 405, + "h": 810 + }, + { + "x": 0, + "y": 0, + "w": 1080, + "h": 810 + } + ] + } + } + ] + }, + "favorite_count": 9, + "favorited": false, + "full_text": "The authorities in Kharkiv say that a family of five, including three children, was burned alive last night after a Russian strike on a petrol station set adjacent houses alight. https://t.co/Xmsh0ECe4q", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 2, + "retweet_count": 6, + "retweeted": false, + "user_id_str": "29010710", + "id_str": "1756230387167039682" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "list-conversation-1756309211907620942-tweet-1756242122280190354", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756242122280190354", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyOTAxMDcxMA==", + "rest_id": "29010710", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sun Apr 05 16:13:47 +0000 2009", + "default_profile": true, + "default_profile_image": false, + "description": "Nationality: journalist. Freelancer, made in the BBC. Reporting what you need to know, not what you want to hear. Also, Lonely Planet guides.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 21173, + "followers_count": 71287, + "friends_count": 4541, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2089, + "location": "", + "media_count": 5873, + "name": "Leonid ХВ Ragozin", + "normal_followers_count": 71287, + "pinned_tweet_ids_str": [ + "1747949666581287074" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/29010710/1610454802", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1098307078991593474/vBl5zWMc_normal.png", + "profile_interstitial_type": "", + "screen_name": "leonidragozin", + "statuses_count": 64179, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1630527445676818432", + "professional_type": "Business", + "category": [ + { + "id": 579, + "name": "Media & News", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756242122280190354" + ], + "editable_until_msecs": "1707559326000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1118", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 09:02:06 +0000 2024", + "conversation_id_str": "1756230387167039682", + "display_text_range": [ + 0, + 54 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "Suspilne says it was an oil depot, not petrol station.", + "in_reply_to_screen_name": "leonidragozin", + "in_reply_to_status_id_str": "1756230387167039682", + "in_reply_to_user_id_str": "29010710", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 1, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "29010710", + "id_str": "1756242122280190354" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + } + ], + "metadata": { + "conversationMetadata": { + "allTweetIds": [ + "1756230387167039682", + "1756242122280190354" + ], + "enableDeduplication": true + } + }, + "displayType": "VerticalConversation", + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756241288712585357", + "sortIndex": "1756309211907620785", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756241288712585357", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo4NDA4MzE4Nw==", + "rest_id": "84083187", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Oct 21 13:42:34 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Ukraine Correspondent. British-Lebanese conflict journalist & filmmaker based in Kyiv. Co-host of @DrillPod. RTs ≠ endorsement.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "ko-fi.com/ozkaterji", + "expanded_url": "http://ko-fi.com/ozkaterji", + "url": "https://t.co/FC9pQbgXa4", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 45500, + "followers_count": 215887, + "friends_count": 11666, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 3397, + "location": "Kyiv, Ukraine", + "media_count": 6412, + "name": "Oz Katerji", + "normal_followers_count": 215887, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/84083187/1647382697", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1713181637574275072/gUp8KMF4_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OzKaterji", + "statuses_count": 174699, + "translator_type": "none", + "url": "https://t.co/FC9pQbgXa4", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756241288712585357" + ], + "editable_until_msecs": "1707559127271", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 08:58:47 +0000 2024", + "conversation_id_str": "1756241288712585357", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "427630477", + "name": "Andrew Desiderio", + "screen_name": "AndrewDesiderio", + "indices": [ + 3, + 19 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @AndrewDesiderio: 64-19, Senate approves motion to proceed to foreign aid package. Needed simple majority.\n\nMany of the opponents did no…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 605, + "retweeted": false, + "user_id_str": "84083187", + "id_str": "1756241288712585357", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756119498178928932", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0Mjc2MzA0Nzc=", + "rest_id": "427630477", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sat Dec 03 19:33:33 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "Senior congressional reporter @PunchbowlNews, covering the Senate. Proud Italian-American 🇮🇹 & Philly native. andrew@punchbowl.news", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 35140, + "followers_count": 87630, + "friends_count": 1004, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1822, + "location": "Washington, D.C.", + "media_count": 5729, + "name": "Andrew Desiderio", + "normal_followers_count": 87630, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/427630477/1704430450", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1743136989023547393/dp9DdZAi_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "AndrewDesiderio", + "statuses_count": 63977, + "translator_type": "regular", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756119498178928932" + ], + "editable_until_msecs": "1707530090000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "175979", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 31, + "bookmarked": false, + "created_at": "Sat Feb 10 00:54:50 +0000 2024", + "conversation_id_str": "1756119498178928932", + "display_text_range": [ + 0, + 276 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 2469, + "favorited": false, + "full_text": "64-19, Senate approves motion to proceed to foreign aid package. Needed simple majority.\n\nMany of the opponents did not stay in town to vote against this motion since it was going to pass anyway.\n\nTonight: Schumer files cloture\n\nTomorrow: intervening day\n\nSunday: cloture vote", + "is_quote_status": false, + "lang": "en", + "quote_count": 23, + "reply_count": 39, + "retweet_count": 605, + "retweeted": false, + "user_id_str": "427630477", + "id_str": "1756119498178928932" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756240699236798843", + "sortIndex": "1756309211907620784", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756240699236798843", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1Nzk3NDc1NjQ=", + "rest_id": "579747564", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon May 14 08:03:59 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "presidentilves.ee", + "expanded_url": "http://www.presidentilves.ee", + "url": "https://t.co/lnQ9ajxxvK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 21032, + "followers_count": 195736, + "friends_count": 1925, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2118, + "location": "Estonia", + "media_count": 1112, + "name": "toomas ilves, ex-verif", + "normal_followers_count": 195736, + "pinned_tweet_ids_str": [ + "1597508496828006401" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "IlvesToomas", + "statuses_count": 207297, + "translator_type": "none", + "url": "https://t.co/lnQ9ajxxvK", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756240699236798843" + ], + "editable_until_msecs": "1707558986000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "8595", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756239532200989085", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1MDI5NTE1Ng==", + "rest_id": "50295156", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Jun 24 12:49:53 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Foreign policy analyst & strategist. Columnist NZZ. DGAP-Zeitenwende group. Ex Carnegie, Elcano Brussels, Transat Academy DC, GMF Berlin, RFE Prague, PhDhistory", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 7430, + "followers_count": 56927, + "friends_count": 654, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1232, + "location": "Heidelberg/Berlin", + "media_count": 1002, + "name": "Ulrich Speck", + "normal_followers_count": 56927, + "pinned_tweet_ids_str": [ + "1754180307509526569" + ], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/593716457420251136/XhKCLIps_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ulrichspeck", + "statuses_count": 78036, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756239532200989085" + ], + "editable_until_msecs": "1707558708000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "count": "9525", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 08:51:48 +0000 2024", + "conversation_id_str": "1756238476641513615", + "display_text_range": [ + 0, + 235 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 59, + "favorited": false, + "full_text": "Umgekehrt würde ein Sieg Russlands -- das de facto-Ende der Ukraine als unabhängige Nation und Staat und die de facto-Eingliederung in die russische Dominanzsphäre wie Belarus -- den weiteren Eroberungswillen Putins erheblich erhöhen.", + "in_reply_to_screen_name": "ulrichspeck", + "in_reply_to_status_id_str": "1756239231612080213", + "in_reply_to_user_id_str": "50295156", + "is_quote_status": false, + "lang": "de", + "quote_count": 1, + "reply_count": 3, + "retweet_count": 6, + "retweeted": false, + "user_id_str": "50295156", + "id_str": "1756239532200989085" + } + } + }, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 08:56:26 +0000 2024", + "conversation_id_str": "1756240699236798843", + "display_text_range": [ + 0, + 243 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 119, + "favorited": false, + "full_text": "Conversely, a Russian victory -- the de facto end of Ukraine as an independent nation and state and the de facto incorporation into the Russian sphere of dominance like Belarus -- would significantly increase Putin's further desire to conquer.", + "is_quote_status": true, + "lang": "en", + "quote_count": 1, + "quoted_status_id_str": "1756239532200989085", + "quoted_status_permalink": { + "url": "https://t.co/PGd9prnM1E", + "expanded": "https://twitter.com/ulrichspeck/status/1756239532200989085", + "display": "twitter.com/ulrichspeck/st…" + }, + "reply_count": 7, + "retweet_count": 30, + "retweeted": false, + "user_id_str": "579747564", + "id_str": "1756240699236798843" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756240542780866606", + "sortIndex": "1756309211907620783", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756240542780866606", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1Nzk3NDc1NjQ=", + "rest_id": "579747564", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon May 14 08:03:59 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "presidentilves.ee", + "expanded_url": "http://www.presidentilves.ee", + "url": "https://t.co/lnQ9ajxxvK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 21032, + "followers_count": 195736, + "friends_count": 1925, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2118, + "location": "Estonia", + "media_count": 1112, + "name": "toomas ilves, ex-verif", + "normal_followers_count": 195736, + "pinned_tweet_ids_str": [ + "1597508496828006401" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "IlvesToomas", + "statuses_count": 207297, + "translator_type": "none", + "url": "https://t.co/lnQ9ajxxvK", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756240542780866606" + ], + "editable_until_msecs": "1707558949000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "6670", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756239231612080213", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1MDI5NTE1Ng==", + "rest_id": "50295156", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Jun 24 12:49:53 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Foreign policy analyst & strategist. Columnist NZZ. DGAP-Zeitenwende group. Ex Carnegie, Elcano Brussels, Transat Academy DC, GMF Berlin, RFE Prague, PhDhistory", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 7430, + "followers_count": 56927, + "friends_count": 654, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1232, + "location": "Heidelberg/Berlin", + "media_count": 1002, + "name": "Ulrich Speck", + "normal_followers_count": 56927, + "pinned_tweet_ids_str": [ + "1754180307509526569" + ], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/593716457420251136/XhKCLIps_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ulrichspeck", + "statuses_count": 78036, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756239231612080213" + ], + "editable_until_msecs": "1707558636000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "count": "7740", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 08:50:36 +0000 2024", + "conversation_id_str": "1756238476641513615", + "display_text_range": [ + 0, + 269 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 80, + "favorited": false, + "full_text": "Was fehlt beim Kanzler ist die Einsicht, dass es nicht um Almosen geht, sondern um deutsche Sicherheitsinteressen: je besser die Ukraine in der Lage ist, Russland zurückzuschlagen, desto geringer die Bedrohung für die Nato, die unmittelbar deutsche Sicherheit bedeutet.", + "in_reply_to_screen_name": "ulrichspeck", + "in_reply_to_status_id_str": "1756238699354808349", + "in_reply_to_user_id_str": "50295156", + "is_quote_status": false, + "lang": "de", + "quote_count": 1, + "reply_count": 6, + "retweet_count": 11, + "retweeted": false, + "user_id_str": "50295156", + "id_str": "1756239231612080213" + } + } + }, + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "created_at": "Sat Feb 10 08:55:49 +0000 2024", + "conversation_id_str": "1756240542780866606", + "display_text_range": [ + 0, + 244 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 82, + "favorited": false, + "full_text": "\"What is missing from the Chancellor is the insight that it is not about handouts, but about German security interests: the better Ukraine is in a position to hit back Russia, the lower the threat to NATO, which directly means German security.\"", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1756239231612080213", + "quoted_status_permalink": { + "url": "https://t.co/SDMx4CdhCb", + "expanded": "https://twitter.com/ulrichspeck/status/1756239231612080213", + "display": "twitter.com/ulrichspeck/st…" + }, + "reply_count": 3, + "retweet_count": 22, + "retweeted": false, + "user_id_str": "579747564", + "id_str": "1756240542780866606" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756240123279134830", + "sortIndex": "1756309211907620782", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756240123279134830", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo1Nzk3NDc1NjQ=", + "rest_id": "579747564", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon May 14 08:03:59 +0000 2012", + "default_profile": true, + "default_profile_image": false, + "description": "Toomas Hendrik Ilves, (formerly v\n\nFrom Estonia. Where Digital is Native. And come in at #2 in the world in internet freedom.\n@toomas_ilves@mastodon.social", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "presidentilves.ee", + "expanded_url": "http://www.presidentilves.ee", + "url": "https://t.co/lnQ9ajxxvK", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 21032, + "followers_count": 195736, + "friends_count": 1925, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2118, + "location": "Estonia", + "media_count": 1112, + "name": "toomas ilves, ex-verif", + "normal_followers_count": 195736, + "pinned_tweet_ids_str": [ + "1597508496828006401" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/579747564/1536101799", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1630211196442779655/sx2b2hv9_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "IlvesToomas", + "statuses_count": 207297, + "translator_type": "none", + "url": "https://t.co/lnQ9ajxxvK", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756240123279134830" + ], + "editable_until_msecs": "1707558849410", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 08:54:09 +0000 2024", + "conversation_id_str": "1756240123279134830", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "413413847", + "name": "Sylvie Kauffmann", + "screen_name": "SylvieKauffmann", + "indices": [ + 3, + 19 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @SylvieKauffmann: Le tweet de la semaine et sa profondeur historique, de la part d’un premier ministre polonais - de centre-droit, qui p…", + "is_quote_status": true, + "lang": "fr", + "quote_count": 0, + "quoted_status_id_str": "1755487973997457772", + "quoted_status_permalink": { + "url": "https://t.co/qetxhhgh6H", + "expanded": "https://twitter.com/donaldtusk/status/1755487973997457772", + "display": "twitter.com/donaldtusk/sta…" + }, + "reply_count": 0, + "retweet_count": 15, + "retweeted": false, + "user_id_str": "579747564", + "id_str": "1756240123279134830", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756239740561502402", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo0MTM0MTM4NDc=", + "rest_id": "413413847", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Nov 15 21:20:02 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Editorialiste au Monde. Auteur de \"Les Aveuglés\" (Ed.Stock)\nLe Monde, editorial director & columnist", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "lemonde.fr", + "expanded_url": "http://lemonde.fr", + "url": "https://t.co/D95bAqYWcG", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 5627, + "followers_count": 27901, + "friends_count": 2360, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 565, + "location": "Paris", + "media_count": 450, + "name": "Sylvie Kauffmann", + "normal_followers_count": 27901, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/413413847/1359674650", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000581356299/4c4b36c352fe07817cddc9cbfa656866_normal.jpeg", + "profile_interstitial_type": "", + "screen_name": "SylvieKauffmann", + "statuses_count": 14902, + "translator_type": "none", + "url": "https://t.co/D95bAqYWcG", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756239740561502402" + ], + "editable_until_msecs": "1707558758000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "count": "10369", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1755487973997457772", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozNzUxNDY5MDE=", + "rest_id": "375146901", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Sep 17 15:51:48 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "Premier Rzeczypospolitej Polskiej 🇵🇱 Prime Minister of Poland 🇵🇱", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 0, + "followers_count": 1872376, + "friends_count": 575, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2565, + "location": "Warszawa, Polska", + "media_count": 221, + "name": "Donald Tusk", + "normal_followers_count": 1872376, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/375146901/1686038999", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/990605878993793024/7uuCR4hP_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "donaldtusk", + "statuses_count": 1194, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1480492732988727296", + "professional_type": "Creator", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1755487973997457772" + ], + "editable_until_msecs": "1707379523000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "7595497", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 986, + "bookmarked": false, + "created_at": "Thu Feb 08 07:05:23 +0000 2024", + "conversation_id_str": "1755487973997457772", + "display_text_range": [ + 0, + 169 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 61503, + "favorited": false, + "full_text": "Dear Republican Senators of America. Ronald Reagan, who helped millions of us to win back our freedom and independence, must be turning in his grave today. Shame on you.", + "is_quote_status": false, + "lang": "en", + "quote_count": 1770, + "reply_count": 6499, + "retweet_count": 12541, + "retweeted": false, + "user_id_str": "375146901", + "id_str": "1755487973997457772" + } + } + }, + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "created_at": "Sat Feb 10 08:52:38 +0000 2024", + "conversation_id_str": "1756239740561502402", + "display_text_range": [ + 0, + 125 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 35, + "favorited": false, + "full_text": "Le tweet de la semaine et sa profondeur historique, de la part d’un premier ministre polonais - de centre-droit, qui plus est", + "is_quote_status": true, + "lang": "fr", + "quote_count": 0, + "quoted_status_id_str": "1755487973997457772", + "quoted_status_permalink": { + "url": "https://t.co/qetxhhgh6H", + "expanded": "https://twitter.com/donaldtusk/status/1755487973997457772", + "display": "twitter.com/donaldtusk/sta…" + }, + "reply_count": 0, + "retweet_count": 15, + "retweeted": false, + "user_id_str": "413413847", + "id_str": "1756239740561502402" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756239068319367258", + "sortIndex": "1756309211907620781", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756239068319367258", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDEwNjQ3Ng==", + "rest_id": "14106476", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Mar 09 08:15:00 +0000 2008", + "default_profile": false, + "default_profile_image": false, + "description": "The award-winning Kyiv Post is the top international source of English-language news about Ukraine since 1995.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kyivpost.com", + "expanded_url": "http://kyivpost.com/", + "url": "https://t.co/lHlutZvoAu", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 4958, + "followers_count": 393738, + "friends_count": 1635, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 6678, + "location": "#Kyiv, #Ukraine", + "media_count": 31362, + "name": "KyivPost", + "normal_followers_count": 393738, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14106476/1707314610", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1592474120477982720/cLYnDbg1_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivPost", + "statuses_count": 74456, + "translator_type": "none", + "url": "https://t.co/lHlutZvoAu", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756239068319367258" + ], + "editable_until_msecs": "1707558597000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "7567", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756238797400834559", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDEwNjQ3Ng==", + "rest_id": "14106476", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Mar 09 08:15:00 +0000 2008", + "default_profile": false, + "default_profile_image": false, + "description": "The award-winning Kyiv Post is the top international source of English-language news about Ukraine since 1995.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kyivpost.com", + "expanded_url": "http://kyivpost.com/", + "url": "https://t.co/lHlutZvoAu", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 4958, + "followers_count": 393738, + "friends_count": 1635, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 6678, + "location": "#Kyiv, #Ukraine", + "media_count": 31362, + "name": "KyivPost", + "normal_followers_count": 393738, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14106476/1707314610", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1592474120477982720/cLYnDbg1_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivPost", + "statuses_count": 74456, + "translator_type": "none", + "url": "https://t.co/lHlutZvoAu", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756238797400834559" + ], + "editable_until_msecs": "1707558533000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "14001", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 08:48:53 +0000 2024", + "conversation_id_str": "1756238797400834559", + "display_text_range": [ + 0, + 227 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 31, + 39 + ], + "text": "Kharkiv" + } + ], + "media": [ + { + "display_url": "pic.twitter.com/LDV84IMrI3", + "expanded_url": "https://twitter.com/KyivPost/status/1756238797400834559/photo/1", + "id_str": "1756238792833339392", + "indices": [ + 228, + 251 + ], + "media_key": "3_1756238792833339392", + "media_url_https": "https://pbs.twimg.com/media/GF9p4IuXkAABdcS.jpg", + "type": "photo", + "url": "https://t.co/LDV84IMrI3", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 960, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 900, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 510, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 960, + "width": 1280, + "focus_rects": [ + { + "x": 0, + "y": 58, + "w": 1280, + "h": 717 + }, + { + "x": 0, + "y": 0, + "w": 960, + "h": 960 + }, + { + "x": 0, + "y": 0, + "w": 842, + "h": 960 + }, + { + "x": 0, + "y": 0, + "w": 480, + "h": 960 + }, + { + "x": 0, + "y": 0, + "w": 1280, + "h": 960 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/LDV84IMrI3", + "expanded_url": "https://twitter.com/KyivPost/status/1756238797400834559/photo/1", + "id_str": "1756238792833339392", + "indices": [ + 228, + 251 + ], + "media_key": "3_1756238792833339392", + "media_url_https": "https://pbs.twimg.com/media/GF9p4IuXkAABdcS.jpg", + "type": "photo", + "url": "https://t.co/LDV84IMrI3", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 960, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 900, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 510, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 960, + "width": 1280, + "focus_rects": [ + { + "x": 0, + "y": 58, + "w": 1280, + "h": 717 + }, + { + "x": 0, + "y": 0, + "w": 960, + "h": 960 + }, + { + "x": 0, + "y": 0, + "w": 842, + "h": 960 + }, + { + "x": 0, + "y": 0, + "w": 480, + "h": 960 + }, + { + "x": 0, + "y": 0, + "w": 1280, + "h": 960 + } + ] + } + } + ] + }, + "favorite_count": 35, + "favorited": false, + "full_text": "❗️5 out of the 7 killed in the #Kharkiv region as a result of the Russian drone attack were members of one family.\n\nThe body of a man was found in the hallway, while the mother and kids attempted to seek refuge in the bathroom. https://t.co/LDV84IMrI3", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 3, + "reply_count": 1, + "retweet_count": 17, + "retweeted": false, + "user_id_str": "14106476", + "id_str": "1756238797400834559" + } + } + }, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 08:49:57 +0000 2024", + "conversation_id_str": "1756239068319367258", + "display_text_range": [ + 0, + 117 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 37, + "favorited": false, + "full_text": "❗️In another house, a 66-year-old man and his 65-year-old were killed, the Regional Military Administration reported.", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1756238797400834559", + "quoted_status_permalink": { + "url": "https://t.co/doFwWQGpl8", + "expanded": "https://twitter.com/kyivpost/status/1756238797400834559", + "display": "twitter.com/kyivpost/statu…" + }, + "reply_count": 1, + "retweet_count": 17, + "retweeted": false, + "user_id_str": "14106476", + "id_str": "1756239068319367258" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756238797400834559", + "sortIndex": "1756309211907620780", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756238797400834559", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNDEwNjQ3Ng==", + "rest_id": "14106476", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Mar 09 08:15:00 +0000 2008", + "default_profile": false, + "default_profile_image": false, + "description": "The award-winning Kyiv Post is the top international source of English-language news about Ukraine since 1995.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "kyivpost.com", + "expanded_url": "http://kyivpost.com/", + "url": "https://t.co/lHlutZvoAu", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 4958, + "followers_count": 393738, + "friends_count": 1635, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 6678, + "location": "#Kyiv, #Ukraine", + "media_count": 31362, + "name": "KyivPost", + "normal_followers_count": 393738, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/14106476/1707314610", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1592474120477982720/cLYnDbg1_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KyivPost", + "statuses_count": 74456, + "translator_type": "none", + "url": "https://t.co/lHlutZvoAu", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756238797400834559" + ], + "editable_until_msecs": "1707558533000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "14001", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 08:48:53 +0000 2024", + "conversation_id_str": "1756238797400834559", + "display_text_range": [ + 0, + 227 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 31, + 39 + ], + "text": "Kharkiv" + } + ], + "media": [ + { + "display_url": "pic.twitter.com/LDV84IMrI3", + "expanded_url": "https://twitter.com/KyivPost/status/1756238797400834559/photo/1", + "id_str": "1756238792833339392", + "indices": [ + 228, + 251 + ], + "media_key": "3_1756238792833339392", + "media_url_https": "https://pbs.twimg.com/media/GF9p4IuXkAABdcS.jpg", + "type": "photo", + "url": "https://t.co/LDV84IMrI3", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 960, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 900, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 510, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 960, + "width": 1280, + "focus_rects": [ + { + "x": 0, + "y": 58, + "w": 1280, + "h": 717 + }, + { + "x": 0, + "y": 0, + "w": 960, + "h": 960 + }, + { + "x": 0, + "y": 0, + "w": 842, + "h": 960 + }, + { + "x": 0, + "y": 0, + "w": 480, + "h": 960 + }, + { + "x": 0, + "y": 0, + "w": 1280, + "h": 960 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/LDV84IMrI3", + "expanded_url": "https://twitter.com/KyivPost/status/1756238797400834559/photo/1", + "id_str": "1756238792833339392", + "indices": [ + 228, + 251 + ], + "media_key": "3_1756238792833339392", + "media_url_https": "https://pbs.twimg.com/media/GF9p4IuXkAABdcS.jpg", + "type": "photo", + "url": "https://t.co/LDV84IMrI3", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 960, + "w": 1280, + "resize": "fit" + }, + "medium": { + "h": 900, + "w": 1200, + "resize": "fit" + }, + "small": { + "h": 510, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 960, + "width": 1280, + "focus_rects": [ + { + "x": 0, + "y": 58, + "w": 1280, + "h": 717 + }, + { + "x": 0, + "y": 0, + "w": 960, + "h": 960 + }, + { + "x": 0, + "y": 0, + "w": 842, + "h": 960 + }, + { + "x": 0, + "y": 0, + "w": 480, + "h": 960 + }, + { + "x": 0, + "y": 0, + "w": 1280, + "h": 960 + } + ] + } + } + ] + }, + "favorite_count": 35, + "favorited": false, + "full_text": "❗️5 out of the 7 killed in the #Kharkiv region as a result of the Russian drone attack were members of one family.\n\nThe body of a man was found in the hallway, while the mother and kids attempted to seek refuge in the bathroom. https://t.co/LDV84IMrI3", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 3, + "reply_count": 1, + "retweet_count": 17, + "retweeted": false, + "user_id_str": "14106476", + "id_str": "1756238797400834559" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756238641460859383", + "sortIndex": "1756309211907620779", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756238641460859383", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMTQ5MjcxMDI4MzkwMTQ2MDQ4", + "rest_id": "1149271028390146048", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Jul 11 10:55:40 +0000 2019", + "default_profile": true, + "default_profile_image": false, + "description": "Керівник Офісу Президента України / Head of the Office of the President of Ukraine", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "president.gov.ua", + "expanded_url": "https://www.president.gov.ua/", + "url": "https://t.co/zBq1PkNaWq", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 1, + "followers_count": 226979, + "friends_count": 263, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 1587, + "location": "", + "media_count": 2059, + "name": "Andriy Yermak", + "normal_followers_count": 226979, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1149271028390146048/1692035661", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590753975116128263/qRaHh4xy_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "AndriyYermak", + "statuses_count": 5071, + "translator_type": "none", + "url": "https://t.co/zBq1PkNaWq", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756238641460859383" + ], + "editable_until_msecs": "1707558496000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "5259", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "created_at": "Sat Feb 10 08:48:16 +0000 2024", + "conversation_id_str": "1756238641460859383", + "display_text_range": [ + 0, + 229 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/0nh84hIEbq", + "expanded_url": "https://twitter.com/AndriyYermak/status/1756238641460859383/photo/1", + "id_str": "1756238636473835520", + "indices": [ + 230, + 253 + ], + "media_key": "3_1756238636473835520", + "media_url_https": "https://pbs.twimg.com/media/GF9pvCPW4AAKgRT.jpg", + "type": "photo", + "url": "https://t.co/0nh84hIEbq", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 924, + "y": 200, + "h": 34, + "w": 34 + }, + { + "x": 582, + "y": 263, + "h": 35, + "w": 35 + }, + { + "x": 346, + "y": 269, + "h": 33, + "w": 33 + } + ] + }, + "medium": { + "faces": [ + { + "x": 924, + "y": 200, + "h": 34, + "w": 34 + }, + { + "x": 582, + "y": 263, + "h": 35, + "w": 35 + }, + { + "x": 346, + "y": 269, + "h": 33, + "w": 33 + } + ] + }, + "small": { + "faces": [ + { + "x": 602, + "y": 130, + "h": 22, + "w": 22 + }, + { + "x": 379, + "y": 171, + "h": 22, + "w": 22 + }, + { + "x": 225, + "y": 175, + "h": 21, + "w": 21 + } + ] + }, + "orig": { + "faces": [ + { + "x": 924, + "y": 200, + "h": 34, + "w": 34 + }, + { + "x": 582, + "y": 263, + "h": 35, + "w": 35 + }, + { + "x": 346, + "y": 269, + "h": 33, + "w": 33 + } + ] + } + }, + "sizes": { + "large": { + "h": 695, + "w": 1043, + "resize": "fit" + }, + "medium": { + "h": 695, + "w": 1043, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 695, + "width": 1043, + "focus_rects": [ + { + "x": 0, + "y": 111, + "w": 1043, + "h": 584 + }, + { + "x": 0, + "y": 0, + "w": 695, + "h": 695 + }, + { + "x": 0, + "y": 0, + "w": 610, + "h": 695 + }, + { + "x": 0, + "y": 0, + "w": 348, + "h": 695 + }, + { + "x": 0, + "y": 0, + "w": 1043, + "h": 695 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/0nh84hIEbq", + "expanded_url": "https://twitter.com/AndriyYermak/status/1756238641460859383/photo/1", + "id_str": "1756238636473835520", + "indices": [ + 230, + 253 + ], + "media_key": "3_1756238636473835520", + "media_url_https": "https://pbs.twimg.com/media/GF9pvCPW4AAKgRT.jpg", + "type": "photo", + "url": "https://t.co/0nh84hIEbq", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 924, + "y": 200, + "h": 34, + "w": 34 + }, + { + "x": 582, + "y": 263, + "h": 35, + "w": 35 + }, + { + "x": 346, + "y": 269, + "h": 33, + "w": 33 + } + ] + }, + "medium": { + "faces": [ + { + "x": 924, + "y": 200, + "h": 34, + "w": 34 + }, + { + "x": 582, + "y": 263, + "h": 35, + "w": 35 + }, + { + "x": 346, + "y": 269, + "h": 33, + "w": 33 + } + ] + }, + "small": { + "faces": [ + { + "x": 602, + "y": 130, + "h": 22, + "w": 22 + }, + { + "x": 379, + "y": 171, + "h": 22, + "w": 22 + }, + { + "x": 225, + "y": 175, + "h": 21, + "w": 21 + } + ] + }, + "orig": { + "faces": [ + { + "x": 924, + "y": 200, + "h": 34, + "w": 34 + }, + { + "x": 582, + "y": 263, + "h": 35, + "w": 35 + }, + { + "x": 346, + "y": 269, + "h": 33, + "w": 33 + } + ] + } + }, + "sizes": { + "large": { + "h": 695, + "w": 1043, + "resize": "fit" + }, + "medium": { + "h": 695, + "w": 1043, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 695, + "width": 1043, + "focus_rects": [ + { + "x": 0, + "y": 111, + "w": 1043, + "h": 584 + }, + { + "x": 0, + "y": 0, + "w": 695, + "h": 695 + }, + { + "x": 0, + "y": 0, + "w": 610, + "h": 695 + }, + { + "x": 0, + "y": 0, + "w": 348, + "h": 695 + }, + { + "x": 0, + "y": 0, + "w": 1043, + "h": 695 + } + ] + } + } + ] + }, + "favorite_count": 126, + "favorited": false, + "full_text": "An Environmental Compact for 🇺🇦, developed by the International Working Group on the Environmental Consequences of War, is an unprecedented document that will make 🇺🇦 an example for the world in terms of environmental protection. https://t.co/0nh84hIEbq", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1, + "reply_count": 8, + "retweet_count": 21, + "retweeted": false, + "user_id_str": "1149271028390146048", + "id_str": "1756238641460859383" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756238564499612132", + "sortIndex": "1756309211907620778", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756238564499612132", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzE3NTIxMw==", + "rest_id": "17175213", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Wed Nov 05 00:59:16 +0000 2008", + "default_profile": true, + "default_profile_image": false, + "description": "Defence editor at @TheEconomist, Visiting fellow at @warstudies King's College London.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "shashankjoshi.wordpress.com", + "expanded_url": "http://shashankjoshi.wordpress.com", + "url": "https://t.co/euRjbnk3WT", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 36543, + "followers_count": 196202, + "friends_count": 1797, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 5902, + "location": "London", + "media_count": 4230, + "name": "Shashank Joshi", + "normal_followers_count": 196202, + "pinned_tweet_ids_str": [ + "1755564450831093939" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/17175213/1688649354", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1509894709770076168/uNk9W2IH_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "shashj", + "statuses_count": 50638, + "translator_type": "none", + "url": "https://t.co/euRjbnk3WT", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756238564499612132" + ], + "editable_until_msecs": "1707558477768", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 08:47:57 +0000 2024", + "conversation_id_str": "1756238564499612132", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "185306056", + "name": "Michael Crick", + "screen_name": "MichaelLCrick", + "indices": [ + 3, + 17 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @MichaelLCrick: New peerage list is an outrage - as always - verging on corrupt. None of these appointments have had any public scrutin…", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 682, + "retweeted": false, + "user_id_str": "17175213", + "id_str": "1756238564499612132", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756238337482920037", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxODUzMDYwNTY=", + "rest_id": "185306056", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Tue Aug 31 17:41:24 +0000 2010", + "default_profile": true, + "default_profile_image": false, + "description": "Journalist/Writer; RTS Spec Jrnst of Year 2014+18. C Wheeler/BJR award 2018; Farage biography, 2022. Council, Univ of Kent. Also @tomorrowsMPs", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 31, + "followers_count": 195816, + "friends_count": 989, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2485, + "location": "London", + "media_count": 1163, + "name": "Michael Crick", + "normal_followers_count": 195816, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/185306056/1682638518", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1149408774005907456/nRwOEYAf_normal.png", + "profile_interstitial_type": "", + "screen_name": "MichaelLCrick", + "statuses_count": 28354, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756238337482920037" + ], + "editable_until_msecs": "1707558423000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "171410", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 22, + "bookmarked": false, + "created_at": "Sat Feb 10 08:47:03 +0000 2024", + "conversation_id_str": "1756238337482920037", + "display_text_range": [ + 0, + 279 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 2190, + "favorited": false, + "full_text": "New peerage list is an outrage - as always - verging on corrupt. None of these appointments have had any public scrutiny, yet they'll be in Lords for life. 27-year-old Plaid nominee Carmen Smith could be there for 70 years, on allowances of £40,000 pa. A mockery of democracy.", + "is_quote_status": false, + "lang": "en", + "quote_count": 51, + "reply_count": 96, + "retweet_count": 682, + "retweeted": false, + "user_id_str": "185306056", + "id_str": "1756238337482920037" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756238316897243314", + "sortIndex": "1756309211907620777", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756238316897243314", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMTQ5MjcxMDI4MzkwMTQ2MDQ4", + "rest_id": "1149271028390146048", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Jul 11 10:55:40 +0000 2019", + "default_profile": true, + "default_profile_image": false, + "description": "Керівник Офісу Президента України / Head of the Office of the President of Ukraine", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "president.gov.ua", + "expanded_url": "https://www.president.gov.ua/", + "url": "https://t.co/zBq1PkNaWq", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 1, + "followers_count": 226979, + "friends_count": 263, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 1587, + "location": "", + "media_count": 2059, + "name": "Andriy Yermak", + "normal_followers_count": 226979, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1149271028390146048/1692035661", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1590753975116128263/qRaHh4xy_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "AndriyYermak", + "statuses_count": 5071, + "translator_type": "none", + "url": "https://t.co/zBq1PkNaWq", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756238316897243314" + ], + "editable_until_msecs": "1707558418000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "count": "5252", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 1, + "bookmarked": false, + "created_at": "Sat Feb 10 08:46:58 +0000 2024", + "conversation_id_str": "1756238316897243314", + "display_text_range": [ + 0, + 252 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/E5u4wZX5Ux", + "expanded_url": "https://twitter.com/AndriyYermak/status/1756238316897243314/photo/1", + "id_str": "1756238308554817536", + "indices": [ + 253, + 276 + ], + "media_key": "3_1756238308554817536", + "media_url_https": "https://pbs.twimg.com/media/GF9pb8pXwAAwVnG.jpg", + "type": "photo", + "url": "https://t.co/E5u4wZX5Ux", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 924, + "y": 200, + "h": 34, + "w": 34 + }, + { + "x": 582, + "y": 263, + "h": 35, + "w": 35 + }, + { + "x": 346, + "y": 269, + "h": 33, + "w": 33 + } + ] + }, + "medium": { + "faces": [ + { + "x": 924, + "y": 200, + "h": 34, + "w": 34 + }, + { + "x": 582, + "y": 263, + "h": 35, + "w": 35 + }, + { + "x": 346, + "y": 269, + "h": 33, + "w": 33 + } + ] + }, + "small": { + "faces": [ + { + "x": 602, + "y": 130, + "h": 22, + "w": 22 + }, + { + "x": 379, + "y": 171, + "h": 22, + "w": 22 + }, + { + "x": 225, + "y": 175, + "h": 21, + "w": 21 + } + ] + }, + "orig": { + "faces": [ + { + "x": 924, + "y": 200, + "h": 34, + "w": 34 + }, + { + "x": 582, + "y": 263, + "h": 35, + "w": 35 + }, + { + "x": 346, + "y": 269, + "h": 33, + "w": 33 + } + ] + } + }, + "sizes": { + "large": { + "h": 695, + "w": 1043, + "resize": "fit" + }, + "medium": { + "h": 695, + "w": 1043, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 695, + "width": 1043, + "focus_rects": [ + { + "x": 0, + "y": 111, + "w": 1043, + "h": 584 + }, + { + "x": 0, + "y": 0, + "w": 695, + "h": 695 + }, + { + "x": 0, + "y": 0, + "w": 610, + "h": 695 + }, + { + "x": 0, + "y": 0, + "w": 348, + "h": 695 + }, + { + "x": 0, + "y": 0, + "w": 1043, + "h": 695 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/E5u4wZX5Ux", + "expanded_url": "https://twitter.com/AndriyYermak/status/1756238316897243314/photo/1", + "id_str": "1756238308554817536", + "indices": [ + 253, + 276 + ], + "media_key": "3_1756238308554817536", + "media_url_https": "https://pbs.twimg.com/media/GF9pb8pXwAAwVnG.jpg", + "type": "photo", + "url": "https://t.co/E5u4wZX5Ux", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 924, + "y": 200, + "h": 34, + "w": 34 + }, + { + "x": 582, + "y": 263, + "h": 35, + "w": 35 + }, + { + "x": 346, + "y": 269, + "h": 33, + "w": 33 + } + ] + }, + "medium": { + "faces": [ + { + "x": 924, + "y": 200, + "h": 34, + "w": 34 + }, + { + "x": 582, + "y": 263, + "h": 35, + "w": 35 + }, + { + "x": 346, + "y": 269, + "h": 33, + "w": 33 + } + ] + }, + "small": { + "faces": [ + { + "x": 602, + "y": 130, + "h": 22, + "w": 22 + }, + { + "x": 379, + "y": 171, + "h": 22, + "w": 22 + }, + { + "x": 225, + "y": 175, + "h": 21, + "w": 21 + } + ] + }, + "orig": { + "faces": [ + { + "x": 924, + "y": 200, + "h": 34, + "w": 34 + }, + { + "x": 582, + "y": 263, + "h": 35, + "w": 35 + }, + { + "x": 346, + "y": 269, + "h": 33, + "w": 33 + } + ] + } + }, + "sizes": { + "large": { + "h": 695, + "w": 1043, + "resize": "fit" + }, + "medium": { + "h": 695, + "w": 1043, + "resize": "fit" + }, + "small": { + "h": 453, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 695, + "width": 1043, + "focus_rects": [ + { + "x": 0, + "y": 111, + "w": 1043, + "h": 584 + }, + { + "x": 0, + "y": 0, + "w": 695, + "h": 695 + }, + { + "x": 0, + "y": 0, + "w": 610, + "h": 695 + }, + { + "x": 0, + "y": 0, + "w": 348, + "h": 695 + }, + { + "x": 0, + "y": 0, + "w": 1043, + "h": 695 + } + ] + } + } + ] + }, + "favorite_count": 124, + "favorited": false, + "full_text": "Екологічний договір для 🇺🇦, розроблений Міжнародною робочою групою щодо екологічних наслідків війни, є безпрецедентним документом, який зробить 🇺🇦 прикладом для світу в питанні захисту довкілля. Про це заявив під час брифінгу за результатами засідання. https://t.co/E5u4wZX5Ux", + "is_quote_status": false, + "lang": "uk", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 3, + "reply_count": 22, + "retweet_count": 22, + "retweeted": false, + "user_id_str": "1149271028390146048", + "id_str": "1756238316897243314" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756237422252470377", + "sortIndex": "1756309211907620776", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756237422252470377", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMjYyODQ1NTc1MTQ3NDU4NTYw", + "rest_id": "1262845575147458560", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Tue May 19 20:40:40 +0000 2020", + "default_profile": true, + "default_profile_image": false, + "description": "Senior Fellow, Carnegie Endowment. Defense analysis with a focus on the Russian and Ukrainian militaries.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "carnegieendowment.org/experts/2362", + "expanded_url": "https://carnegieendowment.org/experts/2362", + "url": "https://t.co/FzObMDSRjE", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 904, + "followers_count": 450414, + "friends_count": 310, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 12219, + "location": "Washington, D.C. area", + "media_count": 224, + "name": "Michael Kofman", + "normal_followers_count": 450414, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1262845575147458560/1700056990", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1724790094589263872/F9JvyDbg_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "KofmanMichael", + "statuses_count": 5469, + "translator_type": "none", + "url": "https://t.co/FzObMDSRjE", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/n5AoQJf7pW", + "legacy": { + "binding_values": [ + { + "key": "photo_image_full_size_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1755153112405250048/OmoQoGjN?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image", + "value": { + "image_value": { + "height": 150, + "width": 225, + "url": "https://pbs.twimg.com/card_img/1755153112405250048/OmoQoGjN?format=jpg&name=280x150" + }, + "type": "IMAGE" + } + }, + { + "key": "description", + "value": { + "string_value": "In June 2022, I travelled with a Ukrainian reconnaissance unit that was seeking to get an uncrewed aerial system with a camera over a series of Russian", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "warontherocks.com", + "type": "STRING" + } + }, + { + "key": "thumbnail_image_large", + "value": { + "image_value": { + "height": 320, + "width": 480, + "url": "https://pbs.twimg.com/card_img/1755153112405250048/OmoQoGjN?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755153112405250048/OmoQoGjN?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_original", + "value": { + "image_value": { + "height": 1707, + "width": 2560, + "url": "https://pbs.twimg.com/card_img/1755153112405250048/OmoQoGjN?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_small", + "value": { + "image_value": { + "height": 202, + "width": 386, + "url": "https://pbs.twimg.com/card_img/1755153112405250048/OmoQoGjN?format=jpg&name=386x202" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image_large", + "value": { + "image_value": { + "height": 419, + "width": 800, + "url": "https://pbs.twimg.com/card_img/1755153112405250048/OmoQoGjN?format=jpg&name=800x419" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_small", + "value": { + "image_value": { + "height": 67, + "width": 100, + "url": "https://pbs.twimg.com/card_img/1755153112405250048/OmoQoGjN?format=jpg&name=100x100" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_x_large", + "value": { + "image_value": { + "height": 1366, + "width": 2048, + "url": "https://pbs.twimg.com/card_img/1755153112405250048/OmoQoGjN?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_original", + "value": { + "image_value": { + "height": 1707, + "width": 2560, + "url": "https://pbs.twimg.com/card_img/1755153112405250048/OmoQoGjN?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "warontherocks.com", + "type": "STRING" + } + }, + { + "key": "photo_image_full_size", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755153112405250048/OmoQoGjN?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "thumbnail_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 195, + "green": 191, + "red": 192 + }, + "percentage": 62.57 + }, + { + "rgb": { + "blue": 54, + "green": 54, + "red": 56 + }, + "percentage": 16.97 + }, + { + "rgb": { + "blue": 131, + "green": 146, + "red": 178 + }, + "percentage": 9.97 + }, + { + "rgb": { + "blue": 121, + "green": 125, + "red": 118 + }, + "percentage": 4.82 + }, + { + "rgb": { + "blue": 188, + "green": 162, + "red": 140 + }, + "percentage": 0.48 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "title", + "value": { + "string_value": "Automation Does Not Lead to Leaner Land Forces - War on the Rocks", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 195, + "green": 191, + "red": 192 + }, + "percentage": 62.57 + }, + { + "rgb": { + "blue": 54, + "green": 54, + "red": 56 + }, + "percentage": 16.97 + }, + { + "rgb": { + "blue": 131, + "green": 146, + "red": 178 + }, + "percentage": 9.97 + }, + { + "rgb": { + "blue": 121, + "green": 125, + "red": 118 + }, + "percentage": 4.82 + }, + { + "rgb": { + "blue": 188, + "green": 162, + "red": 140 + }, + "percentage": 0.48 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "summary_photo_image_x_large", + "value": { + "image_value": { + "height": 1366, + "width": 2048, + "url": "https://pbs.twimg.com/card_img/1755153112405250048/OmoQoGjN?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "summary_photo_image", + "value": { + "image_value": { + "height": 314, + "width": 600, + "url": "https://pbs.twimg.com/card_img/1755153112405250048/OmoQoGjN?format=jpg&name=600x314" + }, + "type": "IMAGE" + } + }, + { + "key": "photo_image_full_size_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 195, + "green": 191, + "red": 192 + }, + "percentage": 62.57 + }, + { + "rgb": { + "blue": 54, + "green": 54, + "red": 56 + }, + "percentage": 16.97 + }, + { + "rgb": { + "blue": 131, + "green": 146, + "red": 178 + }, + "percentage": 9.97 + }, + { + "rgb": { + "blue": 121, + "green": 125, + "red": 118 + }, + "percentage": 4.82 + }, + { + "rgb": { + "blue": 188, + "green": 162, + "red": 140 + }, + "percentage": 0.48 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "photo_image_full_size_x_large", + "value": { + "image_value": { + "height": 1366, + "width": 2048, + "url": "https://pbs.twimg.com/card_img/1755153112405250048/OmoQoGjN?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/n5AoQJf7pW", + "type": "STRING" + } + }, + { + "key": "summary_photo_image_original", + "value": { + "image_value": { + "height": 1707, + "width": 2560, + "url": "https://pbs.twimg.com/card_img/1755153112405250048/OmoQoGjN?format=jpg&name=orig" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "summary_large_image", + "url": "https://t.co/n5AoQJf7pW", + "user_refs_results": [] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756237422252470377" + ], + "editable_until_msecs": "1707558205000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "30551", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 31, + "bookmarked": false, + "created_at": "Sat Feb 10 08:43:25 +0000 2024", + "conversation_id_str": "1756237422252470377", + "display_text_range": [ + 0, + 51 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "warontherocks.com/2024/02/automa…", + "expanded_url": "https://warontherocks.com/2024/02/automation-does-not-lead-to-leaner-land-forces/", + "url": "https://t.co/n5AoQJf7pW", + "indices": [ + 28, + 51 + ] + } + ], + "user_mentions": [ + { + "id_str": "303092314", + "name": "Jack Watling", + "screen_name": "Jack_Watling", + "indices": [ + 14, + 27 + ] + } + ] + }, + "favorite_count": 114, + "favorited": false, + "full_text": "Good piece by @Jack_Watling https://t.co/n5AoQJf7pW", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 2, + "reply_count": 6, + "retweet_count": 16, + "retweeted": false, + "user_id_str": "1262845575147458560", + "id_str": "1756237422252470377" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756237223916110126", + "sortIndex": "1756309211907620775", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756237223916110126", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyODg3NTUyMzQ=", + "rest_id": "288755234", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Wed Apr 27 12:18:25 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Founder and creative director of @Bellingcat and director of Bellingcat Productions BV. Author of We Are Bellingcat. Tonal Whiplash Zone.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bellingcat.com", + "expanded_url": "http://www.bellingcat.com", + "url": "https://t.co/ZoOPpVAJcd", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 17301, + "followers_count": 308635, + "friends_count": 3424, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 6362, + "location": "In front of a laptop.", + "media_count": 11269, + "name": "Eliot Higgins", + "normal_followers_count": 308635, + "pinned_tweet_ids_str": [ + "1756247409812771302" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/288755234/1703281459", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1638547444098015233/8N2MPkax_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "EliotHiggins", + "statuses_count": 296845, + "translator_type": "none", + "url": "https://t.co/ZoOPpVAJcd", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756237223916110126" + ], + "editable_until_msecs": "1707558158148", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 08:42:38 +0000 2024", + "conversation_id_str": "1756237223916110126", + "display_text_range": [ + 0, + 140 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "219189088", + "name": "Mike Eckel (@mikeeckel.bsky.social)", + "screen_name": "Mike_Eckel", + "indices": [ + 3, + 14 + ] + }, + { + "id_str": "2834511", + "name": "DER SPIEGEL", + "screen_name": "derspiegel", + "indices": [ + 17, + 28 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @Mike_Eckel: .@derSpiegel's Moscow correspondent says Russian authorities are threatening reporters -- foreign and Russian -- not to c…", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1756210447362019760", + "quoted_status_permalink": { + "url": "https://t.co/KibgdNEFum", + "expanded": "https://twitter.com/hebelowski/status/1756210447362019760", + "display": "twitter.com/hebelowski/sta…" + }, + "reply_count": 0, + "retweet_count": 90, + "retweeted": false, + "user_id_str": "288755234", + "id_str": "1756237223916110126", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756232225899610372", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyMTkxODkwODg=", + "rest_id": "219189088", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Wed Nov 24 04:57:49 +0000 2010", + "default_profile": false, + "default_profile_image": false, + "description": "Opponent of Quiet Desperation. Contains Multitudes. In Search Of Meanness Or Sublimity. Former Nigeria-With-Snow Correspondent. @RFERL", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "muckrack.com/mike-eckel-2", + "expanded_url": "https://muckrack.com/mike-eckel-2", + "url": "https://t.co/GP77ryEum3", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 13451, + "followers_count": 17316, + "friends_count": 7409, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 770, + "location": "Prague, Czech Republic", + "media_count": 4374, + "name": "Mike Eckel (@mikeeckel.bsky.social)", + "normal_followers_count": 17316, + "pinned_tweet_ids_str": [ + "1106754750777831424" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/219189088/1644333047", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1490421285515579392/dt7pyfBx_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "Mike_Eckel", + "statuses_count": 25409, + "translator_type": "none", + "url": "https://t.co/GP77ryEum3", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756232225899610372" + ], + "editable_until_msecs": "1707556966000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "37230", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756210447362019760", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozNjEzNTA0NTY=", + "rest_id": "361350456", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Wed Aug 24 17:10:52 +0000 2011", + "default_profile": false, + "default_profile_image": false, + "description": "Moscow Bureau Chief @DERSPIEGEL - Reporting on Russia, Ukraine, Belarus, Caucasus and Central Asia", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "spiegel.de", + "expanded_url": "https://www.spiegel.de/", + "url": "https://t.co/arkRG5PjnS", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 2548, + "followers_count": 4543, + "friends_count": 1767, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 181, + "location": "", + "media_count": 730, + "name": "Christina Hebel", + "normal_followers_count": 4543, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/361350456/1657047010", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1090009075587469313/0-eEuG3e_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "hebelowski", + "statuses_count": 3527, + "translator_type": "none", + "url": "https://t.co/arkRG5PjnS", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756210447362019760" + ], + "editable_until_msecs": "1707551774000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": true, + "views": { + "count": "65907", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 19, + "bookmarked": false, + "created_at": "Sat Feb 10 06:56:14 +0000 2024", + "conversation_id_str": "1756210447362019760", + "display_text_range": [ + 0, + 278 + ], + "entities": { + "hashtags": [ + { + "indices": [ + 62, + 69 + ], + "text": "Moskau" + } + ], + "media": [ + { + "display_url": "pic.twitter.com/KzKXqASlic", + "expanded_url": "https://twitter.com/hebelowski/status/1756210447362019760/video/1", + "id_str": "1756210383579213824", + "indices": [ + 279, + 302 + ], + "media_key": "7_1756210383579213824", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1756210383579213824/pu/img/uwcTb5TAIC9OzY-7.jpg", + "type": "video", + "url": "https://t.co/KzKXqASlic", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1280, + "w": 720, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 675, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 383, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1280, + "width": 720, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 6738, + "variants": [ + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756210383579213824/pu/vid/avc1/720x1280/f530CX_0RA0Bm2Y9.mp4?tag=12" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1756210383579213824/pu/pl/qvXyL5xyNhMfGP0q.m3u8?tag=12&container=cmaf" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756210383579213824/pu/vid/avc1/320x568/3NGBVDIjeIBkafT2.mp4?tag=12" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756210383579213824/pu/vid/avc1/480x852/jrimCbSxrugLEsRC.mp4?tag=12" + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "shorturl.at/arsOP", + "expanded_url": "https://shorturl.at/arsOP", + "url": "https://t.co/FoCRsTrAC1", + "indices": [ + 255, + 278 + ] + } + ], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/KzKXqASlic", + "expanded_url": "https://twitter.com/hebelowski/status/1756210447362019760/video/1", + "id_str": "1756210383579213824", + "indices": [ + 279, + 302 + ], + "media_key": "7_1756210383579213824", + "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1756210383579213824/pu/img/uwcTb5TAIC9OzY-7.jpg", + "type": "video", + "url": "https://t.co/KzKXqASlic", + "additional_media_info": { + "monetizable": false + }, + "ext_media_availability": { + "status": "Available" + }, + "sizes": { + "large": { + "h": 1280, + "w": 720, + "resize": "fit" + }, + "medium": { + "h": 1200, + "w": 675, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 383, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 1280, + "width": 720, + "focus_rects": [] + }, + "video_info": { + "aspect_ratio": [ + 9, + 16 + ], + "duration_millis": 6738, + "variants": [ + { + "bitrate": 2176000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756210383579213824/pu/vid/avc1/720x1280/f530CX_0RA0Bm2Y9.mp4?tag=12" + }, + { + "content_type": "application/x-mpegURL", + "url": "https://video.twimg.com/ext_tw_video/1756210383579213824/pu/pl/qvXyL5xyNhMfGP0q.m3u8?tag=12&container=cmaf" + }, + { + "bitrate": 632000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756210383579213824/pu/vid/avc1/320x568/3NGBVDIjeIBkafT2.mp4?tag=12" + }, + { + "bitrate": 950000, + "content_type": "video/mp4", + "url": "https://video.twimg.com/ext_tw_video/1756210383579213824/pu/vid/avc1/480x852/jrimCbSxrugLEsRC.mp4?tag=12" + } + ] + } + } + ] + }, + "favorite_count": 816, + "favorited": false, + "full_text": "Heute wollen Frauen eingezogener Männer wieder Blumen ablegen #Moskau Sie fordern d Rückkehr ihrer Angehörigen von der Front. Im Vorfeld der Aktion bekamen Journalisten zu Hause nun Besuch der Sicherheitsbehörden, die warnten dorthin zu gehen - auch ich. https://t.co/FoCRsTrAC1 https://t.co/KzKXqASlic", + "is_quote_status": false, + "lang": "de", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 20, + "reply_count": 41, + "retweet_count": 264, + "retweeted": false, + "user_id_str": "361350456", + "id_str": "1756210447362019760" + } + } + }, + "legacy": { + "bookmark_count": 7, + "bookmarked": false, + "created_at": "Sat Feb 10 08:22:46 +0000 2024", + "conversation_id_str": "1756232225899610372", + "display_text_range": [ + 0, + 272 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "2834511", + "name": "DER SPIEGEL", + "screen_name": "derspiegel", + "indices": [ + 1, + 12 + ] + } + ] + }, + "favorite_count": 155, + "favorited": false, + "full_text": ".@derSpiegel's Moscow correspondent says Russian authorities are threatening reporters -- foreign and Russian -- not to cover today's planned flower-laying event by women from The Way Home (the group advocating for rotations/demobilization of husbands/sons from Ukraine)", + "is_quote_status": true, + "lang": "en", + "quote_count": 8, + "quoted_status_id_str": "1756210447362019760", + "quoted_status_permalink": { + "url": "https://t.co/KibgdNEFum", + "expanded": "https://twitter.com/hebelowski/status/1756210447362019760", + "display": "twitter.com/hebelowski/sta…" + }, + "reply_count": 4, + "retweet_count": 90, + "retweeted": false, + "user_id_str": "219189088", + "id_str": "1756232225899610372" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "tweet-1756237204035129371", + "sortIndex": "1756309211907620774", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756237204035129371", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoyODg3NTUyMzQ=", + "rest_id": "288755234", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Wed Apr 27 12:18:25 +0000 2011", + "default_profile": true, + "default_profile_image": false, + "description": "Founder and creative director of @Bellingcat and director of Bellingcat Productions BV. Author of We Are Bellingcat. Tonal Whiplash Zone.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "bellingcat.com", + "expanded_url": "http://www.bellingcat.com", + "url": "https://t.co/ZoOPpVAJcd", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 17301, + "followers_count": 308635, + "friends_count": 3424, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 6362, + "location": "In front of a laptop.", + "media_count": 11269, + "name": "Eliot Higgins", + "normal_followers_count": 308635, + "pinned_tweet_ids_str": [ + "1756247409812771302" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/288755234/1703281459", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1638547444098015233/8N2MPkax_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "EliotHiggins", + "statuses_count": 296845, + "translator_type": "none", + "url": "https://t.co/ZoOPpVAJcd", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/TEeR2N9Ijb", + "legacy": { + "binding_values": [ + { + "key": "player_url", + "value": { + "string_value": "https://www.youtube.com/embed/h_YzuXQlIXI", + "type": "STRING" + } + }, + { + "key": "player_image_large", + "value": { + "image_value": { + "height": 320, + "width": 569, + "url": "https://pbs.twimg.com/card_img/1755197797991600128/pVMp4Bfi?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "player_image", + "value": { + "image_value": { + "height": 158, + "width": 280, + "url": "https://pbs.twimg.com/card_img/1755197797991600128/pVMp4Bfi?format=jpg&name=280x280" + }, + "type": "IMAGE" + } + }, + { + "key": "app_star_rating", + "value": { + "string_value": "4.67713", + "type": "STRING" + } + }, + { + "key": "description", + "value": { + "string_value": "Welcome to this deep dive into the world of AI-generated images - a realm where technology blurs the lines between reality and fabrication.In this video, I u...", + "type": "STRING" + } + }, + { + "key": "player_width", + "value": { + "string_value": "1280", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.youtube.com", + "type": "STRING" + } + }, + { + "key": "app_is_free", + "value": { + "string_value": "true", + "type": "STRING" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "10228272", + "path": [] + } + } + }, + { + "key": "player_image_original", + "value": { + "image_value": { + "height": 720, + "width": 1280, + "url": "https://pbs.twimg.com/card_img/1755197797991600128/pVMp4Bfi?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "app_num_ratings", + "value": { + "string_value": "34,709,878", + "type": "STRING" + } + }, + { + "key": "app_price_amount", + "value": { + "string_value": "0.0", + "type": "STRING" + } + }, + { + "key": "player_height", + "value": { + "string_value": "720", + "type": "STRING" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "youtube.com", + "type": "STRING" + } + }, + { + "key": "app_name", + "value": { + "string_value": "YouTube: Watch, Listen, Stream", + "type": "STRING" + } + }, + { + "key": "player_image_small", + "value": { + "image_value": { + "height": 81, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1755197797991600128/pVMp4Bfi?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "title", + "value": { + "string_value": "AI-Generated Fakes: How to spot them, how they're made and how they...", + "type": "STRING" + } + }, + { + "key": "app_price_currency", + "value": { + "string_value": "USD", + "type": "STRING" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/TEeR2N9Ijb", + "type": "STRING" + } + }, + { + "key": "player_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 40, + "green": 23, + "red": 26 + }, + "percentage": 57.57 + }, + { + "rgb": { + "blue": 114, + "green": 119, + "red": 118 + }, + "percentage": 26.99 + }, + { + "rgb": { + "blue": 226, + "green": 226, + "red": 226 + }, + "percentage": 12.63 + }, + { + "rgb": { + "blue": 27, + "green": 15, + "red": 78 + }, + "percentage": 2.67 + }, + { + "rgb": { + "blue": 57, + "green": 62, + "red": 69 + }, + "percentage": 1.55 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "player_image_x_large", + "value": { + "image_value": { + "height": 720, + "width": 1280, + "url": "https://pbs.twimg.com/card_img/1755197797991600128/pVMp4Bfi?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "player", + "url": "https://t.co/TEeR2N9Ijb", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoxMDIyODI3Mg==", + "rest_id": "10228272", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Nov 13 21:43:46 +0000 2007", + "default_profile": false, + "default_profile_image": false, + "description": "like and subscribe.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "youtube.com", + "expanded_url": "http://youtube.com", + "url": "https://t.co/bUisN3Y1A6", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 6189, + "followers_count": 79755986, + "friends_count": 1173, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 79777, + "location": "San Bruno, CA", + "media_count": 15778, + "name": "YouTube", + "normal_followers_count": 79755986, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10228272/1706796151", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "YouTube", + "statuses_count": 57697, + "translator_type": "regular", + "url": "https://t.co/bUisN3Y1A6", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756237204035129371" + ], + "editable_until_msecs": "1707558153408", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 08:42:33 +0000 2024", + "conversation_id_str": "1756237204035129371", + "display_text_range": [ + 0, + 99 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "youtu.be/h_YzuXQlIXI?fe…", + "expanded_url": "https://youtu.be/h_YzuXQlIXI?feature=shared", + "url": "https://t.co/TEeR2N9Ijb", + "indices": [ + 76, + 99 + ] + } + ], + "user_mentions": [ + { + "id_str": "70947578", + "name": "Paul Myers", + "screen_name": "PaulMyersBBC", + "indices": [ + 3, + 16 + ] + }, + { + "id_str": "915895342532583424", + "name": "Benjamin Strick", + "screen_name": "BenDoBrown", + "indices": [ + 29, + 40 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "RT @PaulMyersBBC: Ben Strick @BenDoBrown on how to spot AI generated images https://t.co/TEeR2N9Ijb", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 16, + "retweeted": false, + "user_id_str": "288755234", + "id_str": "1756237204035129371", + "retweeted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756231875561959821", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo3MDk0NzU3OA==", + "rest_id": "70947578", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Wed Sep 02 12:09:01 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "BBC Verify / BBC Academy trainer and journalist. Opinions are my own. Link/RT is not an endorsement. Find me at paulmyersbbc on Bluesky, Instagram, Facebook etc", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "linktr.ee/paulmyersbbc", + "expanded_url": "https://linktr.ee/paulmyersbbc", + "url": "https://t.co/Vu4c0GOtG2", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 5004, + "followers_count": 10006, + "friends_count": 2660, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 444, + "location": "London, England", + "media_count": 239, + "name": "Paul Myers", + "normal_followers_count": 10006, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/70947578/1691659720", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1080151443896782848/x2wQWWP3_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "PaulMyersBBC", + "statuses_count": 5240, + "translator_type": "none", + "url": "https://t.co/Vu4c0GOtG2", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/TEeR2N9Ijb", + "legacy": { + "binding_values": [ + { + "key": "player_url", + "value": { + "string_value": "https://www.youtube.com/embed/h_YzuXQlIXI", + "type": "STRING" + } + }, + { + "key": "player_image_large", + "value": { + "image_value": { + "height": 320, + "width": 569, + "url": "https://pbs.twimg.com/card_img/1755197797991600128/pVMp4Bfi?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "player_image", + "value": { + "image_value": { + "height": 158, + "width": 280, + "url": "https://pbs.twimg.com/card_img/1755197797991600128/pVMp4Bfi?format=jpg&name=280x280" + }, + "type": "IMAGE" + } + }, + { + "key": "app_star_rating", + "value": { + "string_value": "4.67713", + "type": "STRING" + } + }, + { + "key": "description", + "value": { + "string_value": "Welcome to this deep dive into the world of AI-generated images - a realm where technology blurs the lines between reality and fabrication.In this video, I u...", + "type": "STRING" + } + }, + { + "key": "player_width", + "value": { + "string_value": "1280", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.youtube.com", + "type": "STRING" + } + }, + { + "key": "app_is_free", + "value": { + "string_value": "true", + "type": "STRING" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "10228272", + "path": [] + } + } + }, + { + "key": "player_image_original", + "value": { + "image_value": { + "height": 720, + "width": 1280, + "url": "https://pbs.twimg.com/card_img/1755197797991600128/pVMp4Bfi?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "app_num_ratings", + "value": { + "string_value": "34,709,878", + "type": "STRING" + } + }, + { + "key": "app_price_amount", + "value": { + "string_value": "0.0", + "type": "STRING" + } + }, + { + "key": "player_height", + "value": { + "string_value": "720", + "type": "STRING" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "youtube.com", + "type": "STRING" + } + }, + { + "key": "app_name", + "value": { + "string_value": "YouTube: Watch, Listen, Stream", + "type": "STRING" + } + }, + { + "key": "player_image_small", + "value": { + "image_value": { + "height": 81, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1755197797991600128/pVMp4Bfi?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "title", + "value": { + "string_value": "AI-Generated Fakes: How to spot them, how they're made and how they...", + "type": "STRING" + } + }, + { + "key": "app_price_currency", + "value": { + "string_value": "USD", + "type": "STRING" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/TEeR2N9Ijb", + "type": "STRING" + } + }, + { + "key": "player_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 40, + "green": 23, + "red": 26 + }, + "percentage": 57.57 + }, + { + "rgb": { + "blue": 114, + "green": 119, + "red": 118 + }, + "percentage": 26.99 + }, + { + "rgb": { + "blue": 226, + "green": 226, + "red": 226 + }, + "percentage": 12.63 + }, + { + "rgb": { + "blue": 27, + "green": 15, + "red": 78 + }, + "percentage": 2.67 + }, + { + "rgb": { + "blue": 57, + "green": 62, + "red": 69 + }, + "percentage": 1.55 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "player_image_x_large", + "value": { + "image_value": { + "height": 720, + "width": 1280, + "url": "https://pbs.twimg.com/card_img/1755197797991600128/pVMp4Bfi?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "player", + "url": "https://t.co/TEeR2N9Ijb", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoxMDIyODI3Mg==", + "rest_id": "10228272", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Nov 13 21:43:46 +0000 2007", + "default_profile": false, + "default_profile_image": false, + "description": "like and subscribe.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "youtube.com", + "expanded_url": "http://youtube.com", + "url": "https://t.co/bUisN3Y1A6", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 6189, + "followers_count": 79755987, + "friends_count": 1173, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 79777, + "location": "San Bruno, CA", + "media_count": 15778, + "name": "YouTube", + "normal_followers_count": 79755987, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10228272/1706796151", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "YouTube", + "statuses_count": 57697, + "translator_type": "regular", + "url": "https://t.co/bUisN3Y1A6", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756231875561959821" + ], + "editable_until_msecs": "1707556883000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "11609", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 17, + "bookmarked": false, + "created_at": "Sat Feb 10 08:21:23 +0000 2024", + "conversation_id_str": "1756231875561959821", + "display_text_range": [ + 0, + 81 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "youtu.be/h_YzuXQlIXI?fe…", + "expanded_url": "https://youtu.be/h_YzuXQlIXI?feature=shared", + "url": "https://t.co/TEeR2N9Ijb", + "indices": [ + 58, + 81 + ] + } + ], + "user_mentions": [ + { + "id_str": "915895342532583424", + "name": "Benjamin Strick", + "screen_name": "BenDoBrown", + "indices": [ + 11, + 22 + ] + } + ] + }, + "favorite_count": 39, + "favorited": false, + "full_text": "Ben Strick @BenDoBrown on how to spot AI generated images https://t.co/TEeR2N9Ijb", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 1, + "reply_count": 2, + "retweet_count": 16, + "retweeted": false, + "user_id_str": "70947578", + "id_str": "1756231875561959821" + } + } + } + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "component": "suggest_organic_list_tweet", + "element": "tweet", + "details": { + "timelinesDetails": { + "injectionType": "OrganicListTweet" + } + } + } + } + }, + { + "entryId": "cursor-top-1756309211907620865", + "sortIndex": "1756309211907620865", "content": { "entryType": "TimelineTimelineCursor", "__typename": "TimelineTimelineCursor", - "value": "DAABCgABGCUUxFkAJxEKAAIYJRIXZFfQ6AgAAwAAAAEAAA", + "value": "DAABCgABGF-p7EOAJxEKAAIYX6kYHhdAKwgAAwAAAAEAAA", "cursorType": "Top" } }, { - "entryId": "cursor-bottom-1739819664587882407", - "sortIndex": "1739819664587882407", + "entryId": "cursor-bottom-1756309211907620773", + "sortIndex": "1756309211907620773", "content": { "entryType": "TimelineTimelineCursor", "__typename": "TimelineTimelineCursor", - "value": "DAABCgABGCUUxFj__6UKAAIYJLL6PtfAwwgAAwAAAAIAAA", + "value": "DAABCgABGF-p7EN__6MKAAIYX2hun9bQGwgAAwAAAAIAAA", "cursorType": "Bottom" } } diff --git a/tests/mocked-data/retweeters_raw.json b/tests/mocked-data/raw_retweeters.json similarity index 76% rename from tests/mocked-data/retweeters_raw.json rename to tests/mocked-data/raw_retweeters.json index 5bcbae2..d86992a 100644 --- a/tests/mocked-data/retweeters_raw.json +++ b/tests/mocked-data/raw_retweeters.json @@ -6,9 +6,484 @@ { "type": "TimelineAddEntries", "entries": [ + { + "entryId": "user-1750876558745907200", + "sortIndex": "1789887534942965099", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzUwODc2NTU4NzQ1OTA3MjAw", + "rest_id": "1750876558745907200", + "affiliates_highlighted_label": {}, + "has_graduated_access": false, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Fri Jan 26 13:41:51 +0000 2024", + "default_profile": true, + "default_profile_image": false, + "description": "@X\n@TV\n@ElonMusk \n@XBusiness \n@XData \n@XCareers \n@Sports \n@Marketing\n@XCreators \n@Safety\n@XDevelopers \n@Movies \n@Music \n@News \n@Live", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 697, + "followers_count": 28, + "friends_count": 17, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "amanshivamanupam", + "normal_followers_count": 28, + "pinned_tweet_ids_str": [ + "1755481487674101951" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1750876558745907200/1707370789", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1750876707949850624/8mImnF3l_normal.png", + "profile_interstitial_type": "", + "screen_name": "X_User_ASA", + "statuses_count": 698, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-1706929807328706560", + "sortIndex": "1789531183850347197", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzA2OTI5ODA3MzI4NzA2NTYw", + "rest_id": "1706929807328706560", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed Sep 27 07:14:02 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "Byte by byte, I'm decoding the language of computers. Let's explore the syntax and semantics of the digital world together! 🤖💬 #DigitalExplorer", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 15, + "followers_count": 22, + "friends_count": 32, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "Christopher Cameron", + "normal_followers_count": 22, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1706929807328706560/1705679588", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1748373013148446720/xDqxtCUx_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ChristCamerons", + "statuses_count": 48, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-1706876370268422144", + "sortIndex": "1789528920218777434", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzA2ODc2MzcwMjY4NDIyMTQ0", + "rest_id": "1706876370268422144", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Wed Sep 27 03:40:35 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "Compiler of dreams, debugger of reality. Passionate about programming and the endless potential it brings to life. 🚀💻 #DreamCompiler #ProgrammingDreamer", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 22, + "followers_count": 5, + "friends_count": 49, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "Elijah Montgomery", + "normal_followers_count": 5, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1706876370268422144/1705678757", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1748369534061281280/Uq7kCY_m_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ElijahMontgome", + "statuses_count": 45, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-1706571709682503680", + "sortIndex": "1789525086122709595", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzA2NTcxNzA5NjgyNTAzNjgw", + "rest_id": "1706571709682503680", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Sep 26 07:29:49 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "From algorithms to syntax, I love the poetry of programming. Embracing the digital dance of logic and creativity. 💃🖥️ #CodePoet #ProgrammingEnthusiast", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 15, + "followers_count": 8, + "friends_count": 29, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 0, + "name": "Joseph Griffin", + "normal_followers_count": 8, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1706571709682503680/1705673806", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1748348766296432640/MS1VwyMf_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "JosephGriffins", + "statuses_count": 44, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-1672593779545763840", + "sortIndex": "1789308884519346573", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjcyNTkzNzc5NTQ1NzYzODQw", + "rest_id": "1672593779545763840", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Jun 24 13:13:34 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 83, + "followers_count": 24, + "friends_count": 29, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 8, + "name": "Dong Regn", + "normal_followers_count": 24, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1672593859107233792/H3qlwWDJ_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "DongRegn42047", + "statuses_count": 52, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-1516009073937891340", + "sortIndex": "1788688242830170342", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTE2MDA5MDczOTM3ODkxMzQw", + "rest_id": "1516009073937891340", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": false, + "created_at": "Mon Apr 18 11:01:49 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "probably nothing. BAYC#5142", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 41, + "followers_count": 309, + "friends_count": 221, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 1, + "location": "", + "media_count": 2, + "name": "teny.eth", + "normal_followers_count": 309, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1516009073937891340/1651568998", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1698246883183919104/fXzqis6u_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "tinkyb_", + "statuses_count": 123, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-1720674052715790336", + "sortIndex": "1788539976664731927", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzIwNjc0MDUyNzE1NzkwMzM2", + "rest_id": "1720674052715790336", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Nov 04 05:27:22 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "Art|Fashion|Design🎓Marketing/Advertising 📜 nPhoto|Gunpla|Graffiti enthusiastnn@BadInfluence0xn@ColonyNFTn@augmintedlabs Scientist", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 9, + "followers_count": 23, + "friends_count": 34, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": " Glenview, IL ", + "media_count": 0, + "name": "The Wolf of Memes Street 🚀", + "normal_followers_count": 23, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1720674052715790336/1699561883", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1734356958675685376/HpcVGQYJ_normal.png", + "profile_interstitial_type": "", + "screen_name": "0xSmartSloth", + "statuses_count": 56, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, + { + "entryId": "user-901892598259953668", + "sortIndex": "1788117037484101639", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo5MDE4OTI1OTgyNTk5NTM2Njg=", + "rest_id": "901892598259953668", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sun Aug 27 19:42:06 +0000 2017", + "default_profile": true, + "default_profile_image": false, + "description": "Supernatural, Paranormal, Cyber Security #Researcher, Gamer, #Freelancer & learner.\n\n#Nfts #ContentMaking\n\n~\n\nReal right wing and not Zionist slave.\n\nGod First.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 6392, + "followers_count": 737, + "friends_count": 4980, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 8, + "location": "Other Universe.", + "media_count": 74, + "name": "98𝕰𝖑𝖎𝖙𝖊𝕸𝕲𝖍𝖔𝖘𝖙~59~𝕺𝖛𝖊𝖗𝕷𝖔𝖗𝖉54", + "normal_followers_count": 737, + "pinned_tweet_ids_str": [ + "1746638470255157399" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/901892598259953668/1645313084", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1495177537554550787/zcSSAA3D_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "ARMGI9854WXZ59M", + "statuses_count": 7332, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + } + } + }, { "entryId": "user-2534108054", - "sortIndex": "1785992523155505152", + "sortIndex": "1785992523155570443", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -21,7 +496,7 @@ "id": "VXNlcjoyNTM0MTA4MDU0", "rest_id": "2534108054", "affiliates_highlighted_label": {}, - "has_graduated_access": false, + "has_graduated_access": true, "is_blue_verified": false, "profile_image_shape": "Circle", "legacy": { @@ -30,29 +505,30 @@ "created_at": "Fri May 30 04:15:49 +0000 2014", "default_profile": true, "default_profile_image": false, - "description": "", + "description": "I never wanted luxury, I just wanted to be understood and trusted.", "entities": { "description": { "urls": [] } }, "fast_followers_count": 0, - "favourites_count": 63, - "followers_count": 41, - "friends_count": 46, + "favourites_count": 270, + "followers_count": 130, + "friends_count": 573, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, - "location": "USA", - "media_count": 0, - "name": "Lia Herawati", - "normal_followers_count": 41, + "location": "New Jersey.USA", + "media_count": 1, + "name": "Elena", + "normal_followers_count": 130, "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1737568100705570816/ZCRNKUQF_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2534108054/1704819706", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1748388392092725250/t2hltup7_normal.jpg", "profile_interstitial_type": "", "screen_name": "liaherawati705", - "statuses_count": 43, + "statuses_count": 224, "translator_type": "none", "verified": false, "want_retweets": false, @@ -66,7 +542,7 @@ }, { "entryId": "user-2843756880", - "sortIndex": "1785992006055493632", + "sortIndex": "1785992006056533331", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -79,7 +555,7 @@ "id": "VXNlcjoyODQzNzU2ODgw", "rest_id": "2843756880", "affiliates_highlighted_label": {}, - "has_graduated_access": false, + "has_graduated_access": true, "is_blue_verified": false, "profile_image_shape": "Circle", "legacy": { @@ -95,22 +571,23 @@ } }, "fast_followers_count": 0, - "favourites_count": 178, - "followers_count": 59, - "friends_count": 61, + "favourites_count": 476, + "followers_count": 90, + "friends_count": 341, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "๊USA", - "media_count": 0, + "media_count": 1, "name": "rajibelena", - "normal_followers_count": 59, + "normal_followers_count": 90, "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1737570804228108288/LacIQmA9_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2843756880/1705349988", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1754322894971375616/SeZHYdt0_normal.jpg", "profile_interstitial_type": "", "screen_name": "rajib6373", - "statuses_count": 50, + "statuses_count": 223, "translator_type": "none", "verified": false, "want_retweets": false, @@ -124,7 +601,7 @@ }, { "entryId": "user-1712380698982543360", - "sortIndex": "1784958083477274624", + "sortIndex": "1784958083477872278", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -153,39 +630,29 @@ } }, "fast_followers_count": 0, - "favourites_count": 1336, - "followers_count": 84, - "friends_count": 582, + "favourites_count": 258, + "followers_count": 151, + "friends_count": 1627, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", - "media_count": 12, + "media_count": 18, "name": "deepak kumar", - "normal_followers_count": 84, + "normal_followers_count": 151, "pinned_tweet_ids_str": [ "1712957054028005406" ], "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1712380698982543360/1704024770", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1733686592621903872/2ne3L5lX_normal.jpg", "profile_interstitial_type": "", "screen_name": "deepakk64777565", - "statuses_count": 404, + "statuses_count": 524, "translator_type": "none", "verified": false, "want_retweets": false, "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1730914904113111190", - "professional_type": "Business", - "category": [ - { - "id": 53, - "name": "Automotive", - "icon_name": "IconBriefcaseStroke" - } - ] } } }, @@ -225,15 +692,15 @@ }, "fast_followers_count": 0, "favourites_count": 19, - "followers_count": 9, - "friends_count": 60, + "followers_count": 12, + "friends_count": 61, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 0, "name": "Allison Simmons", - "normal_followers_count": 9, + "normal_followers_count": 12, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1698255639015727104/1702111228", @@ -283,23 +750,23 @@ } }, "fast_followers_count": 0, - "favourites_count": 17, - "followers_count": 16, - "friends_count": 30, + "favourites_count": 18, + "followers_count": 15, + "friends_count": 32, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 0, "name": "Stephanie Mitchell", - "normal_followers_count": 16, + "normal_followers_count": 15, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1698206963614547968/1702059199", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1733187996885700608/3U18y-35_normal.jpg", "profile_interstitial_type": "", "screen_name": "StephanieM35847", - "statuses_count": 20, + "statuses_count": 21, "translator_type": "none", "verified": false, "want_retweets": false, @@ -342,23 +809,23 @@ } }, "fast_followers_count": 0, - "favourites_count": 45, - "followers_count": 173, - "friends_count": 87, + "favourites_count": 46, + "followers_count": 144, + "friends_count": 88, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 0, "name": "Love Poglin🧡", - "normal_followers_count": 173, + "normal_followers_count": 144, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1698190145453785089/1697830592", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1715451645759197184/yELXrbDF_normal.jpg", "profile_interstitial_type": "", "screen_name": "mangch1nance", - "statuses_count": 57, + "statuses_count": 58, "translator_type": "none", "verified": false, "want_retweets": false, @@ -444,7 +911,7 @@ "id": "VXNlcjoxNDU4MTI3NTUyMzUxMDIzMTEz", "rest_id": "1458127552351023113", "affiliates_highlighted_label": {}, - "has_graduated_access": true, + "has_graduated_access": false, "is_blue_verified": false, "profile_image_shape": "Circle", "legacy": { @@ -483,16 +950,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 3094, - "followers_count": 220, - "friends_count": 1206, + "favourites_count": 3448, + "followers_count": 232, + "friends_count": 1221, "has_custom_timelines": false, "is_translator": false, "listed_count": 8, "location": "everywhere and nowhere", - "media_count": 345, + "media_count": 360, "name": "The Whole E Bubble", - "normal_followers_count": 220, + "normal_followers_count": 232, "pinned_tweet_ids_str": [ "1620094485261869059" ], @@ -501,7 +968,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1458139026653913097/_g_iVgA3_normal.jpg", "profile_interstitial_type": "", "screen_name": "Whole_e_Bubble", - "statuses_count": 1515, + "statuses_count": 1778, "translator_type": "none", "url": "https://t.co/rmpkFCvG9r", "verified": false, @@ -593,65 +1060,7 @@ "itemContent": { "itemType": "TimelineUser", "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo5MTk2NTE4Mzg=", - "rest_id": "919651838", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Thu Nov 01 18:58:07 +0000 2012", - "default_profile": true, - "default_profile_image": false, - "description": "alem", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 174842, - "followers_count": 176, - "friends_count": 230, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 32, - "location": "", - "media_count": 80799, - "name": "alem sail izquierdo", - "normal_followers_count": 176, - "pinned_tweet_ids_str": [ - "1688172094184476672" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/919651838/1400963559", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/470301131726258176/jDvpLhS1_normal.jpeg", - "profile_interstitial_type": "", - "screen_name": "AlemSail", - "statuses_count": 436378, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1636054380506955776", - "professional_type": "Creator", - "category": [ - { - "id": 15, - "name": "Entertainment & Recreation", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, + "user_results": {}, "userDisplayType": "User" } } @@ -675,7 +1084,7 @@ "is_blue_verified": false, "profile_image_shape": "Circle", "legacy": { - "can_dm": false, + "can_dm": true, "can_media_tag": false, "created_at": "Thu Feb 08 14:49:22 +0000 2018", "default_profile": true, @@ -700,23 +1109,23 @@ } }, "fast_followers_count": 0, - "favourites_count": 6487, - "followers_count": 517, + "favourites_count": 6792, + "followers_count": 523, "friends_count": 4998, "has_custom_timelines": true, "is_translator": false, - "listed_count": 3, + "listed_count": 4, "location": "California", - "media_count": 718, + "media_count": 812, "name": "Yogi Vedd", - "normal_followers_count": 517, + "normal_followers_count": 523, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/961612928532275200/1518108233", "profile_image_url_https": "https://pbs.twimg.com/profile_images/961618203209228288/c_H53G3j_normal.jpg", "profile_interstitial_type": "", "screen_name": "Yogi39Yogi", - "statuses_count": 8239, + "statuses_count": 8704, "translator_type": "none", "url": "https://t.co/FkxeNl3zwQ", "verified": false, @@ -784,8 +1193,8 @@ } }, "fast_followers_count": 0, - "favourites_count": 663, - "followers_count": 8, + "favourites_count": 662, + "followers_count": 4, "friends_count": 1, "has_custom_timelines": false, "is_translator": false, @@ -793,14 +1202,14 @@ "location": "Illinois", "media_count": 18, "name": "Caroline-B💘", - "normal_followers_count": 8, + "normal_followers_count": 4, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1338241798674628608/1696394577", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1709428865737838592/RVsSC9-X_normal.jpg", "profile_interstitial_type": "", "screen_name": "SSookparsert", - "statuses_count": 638, + "statuses_count": 637, "translator_type": "none", "url": "https://t.co/7LinEYs4oR", "verified": false, @@ -825,513 +1234,22 @@ } }, { - "entryId": "user-3068516278", - "sortIndex": "1776242831014883601", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": {}, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1647526256831787009", - "sortIndex": "1771863597721837233", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjQ3NTI2MjU2ODMxNzg3MDA5", - "rest_id": "1647526256831787009", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Apr 16 09:04:28 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 220, - "followers_count": 108, - "friends_count": 388, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 2, - "location": "", - "media_count": 1, - "name": "Marik Marakesh", - "normal_followers_count": 108, - "pinned_tweet_ids_str": [], - "possibly_sensitive": true, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1647526604346671105/QtPvr52X_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "stepadmitrij76", - "statuses_count": 24, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-269941330", - "sortIndex": "1768654313616779183", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNjk5NDEzMzA=", - "rest_id": "269941330", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Mon Mar 21 18:44:52 +0000 2011", - "default_profile": false, - "default_profile_image": false, - "description": "|| Techies || Respect IndianArmy & Honest Officials || Humanitarian Social Activist || Fighting Against Crime and Corruption || RT≠ Endorsement|| Views Personal", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "linkedin.com/in/sachinragha…", - "expanded_url": "https://www.linkedin.com/in/sachinraghav/", - "url": "https://t.co/UUC9fG9xhC", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 192830, - "followers_count": 1960, - "friends_count": 2075, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1, - "location": "India", - "media_count": 1338, - "name": "𝙎𝙖𝙘𝙝𝙞𝙣 𝙍𝙖𝙜𝙝𝙖𝙫 | 🇮🇳 | सचिन राघव |", - "normal_followers_count": 1960, - "pinned_tweet_ids_str": [ - "1346128867824599041" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/269941330/1588228432", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1708104470687526912/6X8FodJf_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "TheSachinR", - "statuses_count": 149769, - "translator_type": "none", - "url": "https://t.co/UUC9fG9xhC", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1471764807682457602", - "professional_type": "Creator", - "category": [ - { - "id": 934, - "name": "Social Media Influencer", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1564827719367806981", - "sortIndex": "1768282042391799094", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTY0ODI3NzE5MzY3ODA2OTgx", - "rest_id": "1564827719367806981", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed Aug 31 04:10:29 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 804, - "followers_count": 51, - "friends_count": 735, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 2, - "location": "Calabarzon, Republic of the Ph", - "media_count": 18, - "name": "Maximo Zarsuelo", - "normal_followers_count": 51, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1564827719367806981/1664200434", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1574398278648860673/MF8hZZLo_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "ZarsueloMaximo", - "statuses_count": 548, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1542389327711420416", - "sortIndex": "1767269228528188648", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTQyMzg5MzI3NzExNDIwNDE2", - "rest_id": "1542389327711420416", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Thu Jun 30 06:07:39 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 2719, - "followers_count": 474, - "friends_count": 4980, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 3, - "location": "", - "media_count": 261, - "name": "NANmor", - "normal_followers_count": 474, - "pinned_tweet_ids_str": [ - "1689999190641049600" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1542389327711420416/1683606648", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1695808933439651840/C8TqOl18_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "NA_N_NEW", - "statuses_count": 56087, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1607160520670416896", - "sortIndex": "1767131386662722041", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjA3MTYwNTIwNjcwNDE2ODk2", - "rest_id": "1607160520670416896", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sun Dec 25 23:45:20 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Let Him that tasty come and i feed him,those are not the cry of babies for hunger are made for stronger men who are desperate of writing to there lovers,come Be", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "ogbonnaChristian.com", - "expanded_url": "http://ogbonnaChristian.com", - "url": "https://t.co/uizzoMYcEs", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 849, - "followers_count": 388, - "friends_count": 2835, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 5, - "location": "Lagos, Nigeria", - "media_count": 1134, - "name": "MAKOCHUKWU Ogbonna", - "normal_followers_count": 388, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1607160599904919552/NR9xwaDx_normal.png", - "profile_interstitial_type": "", - "screen_name": "MakochukwuO", - "statuses_count": 3752, - "translator_type": "none", - "url": "https://t.co/uizzoMYcEs", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1672656166533431299", - "professional_type": "Creator", - "category": [ - { - "id": 53, - "name": "Automotive", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1594850010436452356", - "sortIndex": "1767114048589938299", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTk0ODUwMDEwNDM2NDUyMzU2", - "rest_id": "1594850010436452356", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Nov 22 00:30:25 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "no es justo lo que an echo con todo mi vida personal 💻 no es posible qué está leyes de norte américa, no puedan hacer algo. todo esto es una injusticia.", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 2789, - "followers_count": 305, - "friends_count": 3414, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 6, - "location": "Gainesville, GA", - "media_count": 377, - "name": "Alexander Antonio Velasquez", - "normal_followers_count": 305, - "pinned_tweet_ids_str": [ - "1614696753583751170" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1594850010436452356/1691014064", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1669369737397035010/eNEO0s6J_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Alexand68866652", - "statuses_count": 3235, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1601141858901626880", - "professional_type": "Creator", - "category": [ - { - "id": 920, - "name": "Other", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "user-1515388836754432002", - "sortIndex": "1764906564436676199", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTE1Mzg4ODM2NzU0NDMyMDAy", - "rest_id": "1515388836754432002", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sat Apr 16 17:58:18 +0000 2022", - "default_profile": true, - "default_profile_image": true, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 33043, - "followers_count": 57, - "friends_count": 45, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 2, - "location": "", - "media_count": 0, - "name": "Maricel Imeno Guerra", - "normal_followers_count": 57, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", - "profile_interstitial_type": "", - "screen_name": "ImenoGuerra", - "statuses_count": 33270, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - } - } - }, - { - "entryId": "cursor-top-1785992523155505153", - "sortIndex": "1785992523155505153", + "entryId": "cursor-top-1789887534942965100", + "sortIndex": "1789887534942965100", "content": { "entryType": "TimelineTimelineCursor", "__typename": "TimelineTimelineCursor", - "value": "HCaAgICjl6+PyTEAAA==", + "value": "HCbWtebC2s761jEAAA==", "cursorType": "Top" } }, { - "entryId": "cursor-bottom-1764906564436676198", - "sortIndex": "1764906564436676198", + "entryId": "cursor-bottom-1776846771279252864", + "sortIndex": "1776846771279252864", "content": { "entryType": "TimelineTimelineCursor", "__typename": "TimelineTimelineCursor", - "value": "HBbOuYaw7Mqa/jAAAA==", + "value": "HBaCtrLmra7QqDEAAA==", "cursorType": "Bottom", "stopOnEmptyResponse": true } diff --git a/tests/mocked-data/raw_search.json b/tests/mocked-data/raw_search.json new file mode 100644 index 0000000..0782af9 --- /dev/null +++ b/tests/mocked-data/raw_search.json @@ -0,0 +1,3070 @@ +{ + "data": { + "search_by_raw_query": { + "search_timeline": { + "timeline": { + "instructions": [ + { + "type": "TimelineAddEntries", + "entries": [ + { + "entryId": "tweet-1756309197933715546", + "sortIndex": "1756309206182395904", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756309197933715546", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTg2NzAzNzA4OTY4MDY3MDcz", + "rest_id": "1586703708968067073", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Oct 30 12:57:44 +0000 2022", + "default_profile": true, + "default_profile_image": true, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 5533, + "followers_count": 36, + "friends_count": 371, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 7, + "name": "WitnessProtection", + "normal_followers_count": 36, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", + "profile_interstitial_type": "", + "screen_name": "WtnsPrtc16", + "statuses_count": 81, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756309197933715546" + ], + "editable_until_msecs": "1707575318000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for Android", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:28:38 +0000 2024", + "conversation_id_str": "1756098811498201333", + "display_text_range": [ + 38, + 303 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 0, + 9 + ] + }, + { + "id_str": "1267841066335682562", + "name": "Rep. Tom Tiffany", + "screen_name": "RepTiffany", + "indices": [ + 10, + 21 + ] + }, + { + "id_str": "16989178", + "name": "James O'Keefe", + "screen_name": "JamesOKeefeIII", + "indices": [ + 22, + 37 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@elonmusk @RepTiffany @JamesOKeefeIII Remember when congressmen tried to visit J6 prisoners at the DC Central Corrections Facility and were not only turned away, but the warden snuck out the door right behind them? You don't remember because despite threatening hearings, nothing was ever done. Again.", + "in_reply_to_screen_name": "elonmusk", + "in_reply_to_status_id_str": "1756138009647313103", + "in_reply_to_user_id_str": "44196397", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1586703708968067073", + "id_str": "1756309197933715546" + } + } + }, + "tweetDisplayType": "Tweet", + "highlights": { + "textHighlights": [ + { + "startIndex": 1, + "endIndex": 9 + } + ] + } + }, + "clientEventInfo": { + "component": "result", + "element": "tweet", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6j6UdKAaXloLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAVZJAhycmdglwgABgAAAAEKAAfJCmJ71QCGOQAAAAAA" + } + } + } + } + }, + { + "entryId": "tweet-1756309196184703199", + "sortIndex": "1756309206182395903", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756309196184703199", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzAxMzM3MTQzNjEwNjg3NDg4", + "rest_id": "1701337143610687488", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Mon Sep 11 20:49:28 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "christian orthodox / vidya Games / cant give a slightest fuck / something else so twitter thinks this is relatable and puts me higher in recommended /", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 14, + "followers_count": 5, + "friends_count": 5, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "Church of Jesus Christ", + "media_count": 53, + "name": "heko", + "normal_followers_count": 5, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1701337143610687488/1694465618", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1734524456683397120/0AwMOBn6_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "hekozellig", + "statuses_count": 210, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756309196184703199" + ], + "editable_until_msecs": "1707575317000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:28:37 +0000 2024", + "conversation_id_str": "1755961236657701337", + "display_text_range": [ + 45, + 92 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1048229681273741312", + "name": "StopAntisemitism", + "screen_name": "StopAntisemites", + "indices": [ + 0, + 16 + ] + }, + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 17, + 26 + ] + }, + { + "id_str": "548263294", + "name": "Linda Yaccarino", + "screen_name": "lindayaX", + "indices": [ + 27, + 36 + ] + }, + { + "id_str": "95731075", + "name": "Safety", + "screen_name": "Safety", + "indices": [ + 37, + 44 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@StopAntisemites @elonmusk @lindayaX @Safety i mean can you elaborate on the picture itself?", + "in_reply_to_screen_name": "StopAntisemites", + "in_reply_to_status_id_str": "1755961236657701337", + "in_reply_to_user_id_str": "1048229681273741312", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1701337143610687488", + "id_str": "1756309196184703199" + } + } + }, + "tweetDisplayType": "Tweet", + "highlights": { + "textHighlights": [ + { + "startIndex": 18, + "endIndex": 26 + } + ] + } + }, + "clientEventInfo": { + "component": "result", + "element": "tweet", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6j6UdKAaXloLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAVZJAhycmdglwgABgAAAAEKAAfJCmJ71QCGOQAAAAAA" + } + } + } + } + }, + { + "entryId": "tweet-1756309191663526335", + "sortIndex": "1756309206182395902", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756309191663526335", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTE5NDEzODQxMDU4MDk1MTA0", + "rest_id": "1519413841058095104", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Wed Apr 27 20:31:16 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 8024, + "followers_count": 337, + "friends_count": 97, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 2, + "location": "A place near you", + "media_count": 186, + "name": "Lilian_ard", + "normal_followers_count": 337, + "pinned_tweet_ids_str": [ + "1629957319802097665" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1519413841058095104/1694369143", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1688806894176223232/rclJvspk_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "lilian_ard", + "statuses_count": 3157, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1690609967408239078", + "professional_type": "Business", + "category": [ + { + "id": 958, + "name": "Entrepreneur", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756309191663526335" + ], + "editable_until_msecs": "1707575316000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for Android", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:28:36 +0000 2024", + "conversation_id_str": "1756140099555696811", + "display_text_range": [ + 20, + 44 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 0, + 9 + ] + }, + { + "id_str": "1330170106501079041", + "name": "Starlink", + "screen_name": "Starlink", + "indices": [ + 10, + 19 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@elonmusk @Starlink Really??? That's awesome", + "in_reply_to_screen_name": "elonmusk", + "in_reply_to_status_id_str": "1756140099555696811", + "in_reply_to_user_id_str": "44196397", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1519413841058095104", + "id_str": "1756309191663526335" + }, + "superFollowsReplyUserResult": { + "result": { + "__typename": "User", + "legacy": { + "screen_name": "elonmusk" + } + } + } + } + }, + "tweetDisplayType": "Tweet", + "highlights": { + "textHighlights": [ + { + "startIndex": 1, + "endIndex": 9 + } + ] + } + }, + "clientEventInfo": { + "component": "result", + "element": "tweet", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6j6UdKAaXloLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAVZJAhycmdglwgABgAAAAEKAAfJCmJ71QCGOQAAAAAA" + } + } + } + } + }, + { + "entryId": "tweet-1756309189713183045", + "sortIndex": "1756309206182395901", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756309189713183045", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjYxMTczMjIxNDY5ODgwMzIw", + "rest_id": "1661173221469880320", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed May 24 00:52:49 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "Former: 1) Comp Support Spec for 2 Mort Bankrs; 2) Qlty Cntrl Anlyst, 7th largest fin software USA; Degree: BSSA (BS/Sec Admin); Convention of State, Member", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 382, + "followers_count": 192, + "friends_count": 190, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "WA", + "media_count": 4422, + "name": "RemyParrott-a Spiritual Christian Warrior", + "normal_followers_count": 192, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1661173221469880320/1707452388", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1690431649199353856/uzSm2k4__normal.jpg", + "profile_interstitial_type": "", + "screen_name": "RemyParrot3455", + "statuses_count": 16004, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "card": { + "rest_id": "https://t.co/ZiHpmy4aoH", + "legacy": { + "binding_values": [ + { + "key": "player_url", + "value": { + "string_value": "https://www.youtube.com/embed/JN3KPFbWCy8", + "type": "STRING" + } + }, + { + "key": "player_image_large", + "value": { + "image_value": { + "height": 320, + "width": 569, + "url": "https://pbs.twimg.com/card_img/1753714336302784512/H-L2w7ov?format=jpg&name=800x320_1" + }, + "type": "IMAGE" + } + }, + { + "key": "player_image", + "value": { + "image_value": { + "height": 158, + "width": 280, + "url": "https://pbs.twimg.com/card_img/1753714336302784512/H-L2w7ov?format=jpg&name=280x280" + }, + "type": "IMAGE" + } + }, + { + "key": "app_star_rating", + "value": { + "string_value": "4.67713", + "type": "STRING" + } + }, + { + "key": "description", + "value": { + "string_value": "Elon Musk is CEO of X, xAI, SpaceX, Tesla, Neuralink, and The Boring Company.Thank you for listening ❤ Please support this podcast by checking out our sponso...", + "type": "STRING" + } + }, + { + "key": "player_width", + "value": { + "string_value": "1280", + "type": "STRING" + } + }, + { + "key": "domain", + "value": { + "string_value": "www.youtube.com", + "type": "STRING" + } + }, + { + "key": "app_is_free", + "value": { + "string_value": "true", + "type": "STRING" + } + }, + { + "key": "site", + "value": { + "scribe_key": "publisher_id", + "type": "USER", + "user_value": { + "id_str": "10228272", + "path": [] + } + } + }, + { + "key": "player_image_original", + "value": { + "image_value": { + "height": 720, + "width": 1280, + "url": "https://pbs.twimg.com/card_img/1753714336302784512/H-L2w7ov?format=jpg&name=orig" + }, + "type": "IMAGE" + } + }, + { + "key": "app_num_ratings", + "value": { + "string_value": "34,709,878", + "type": "STRING" + } + }, + { + "key": "app_price_amount", + "value": { + "string_value": "0.0", + "type": "STRING" + } + }, + { + "key": "player_height", + "value": { + "string_value": "720", + "type": "STRING" + } + }, + { + "key": "vanity_url", + "value": { + "scribe_key": "vanity_url", + "string_value": "youtube.com", + "type": "STRING" + } + }, + { + "key": "app_name", + "value": { + "string_value": "YouTube: Watch, Listen, Stream", + "type": "STRING" + } + }, + { + "key": "player_image_small", + "value": { + "image_value": { + "height": 81, + "width": 144, + "url": "https://pbs.twimg.com/card_img/1753714336302784512/H-L2w7ov?format=jpg&name=144x144" + }, + "type": "IMAGE" + } + }, + { + "key": "title", + "value": { + "string_value": "Elon Musk: War, AI, Aliens, Politics, Physics, Video Games, and...", + "type": "STRING" + } + }, + { + "key": "app_price_currency", + "value": { + "string_value": "USD", + "type": "STRING" + } + }, + { + "key": "card_url", + "value": { + "scribe_key": "card_url", + "string_value": "https://t.co/ZiHpmy4aoH", + "type": "STRING" + } + }, + { + "key": "player_image_color", + "value": { + "image_color_value": { + "palette": [ + { + "rgb": { + "blue": 0, + "green": 0, + "red": 0 + }, + "percentage": 77.79 + }, + { + "rgb": { + "blue": 181, + "green": 191, + "red": 223 + }, + "percentage": 8.43 + }, + { + "rgb": { + "blue": 24, + "green": 44, + "red": 79 + }, + "percentage": 2.27 + }, + { + "rgb": { + "blue": 55, + "green": 42, + "red": 4 + }, + "percentage": 1.97 + }, + { + "rgb": { + "blue": 8, + "green": 180, + "red": 7 + }, + "percentage": 0.82 + } + ] + }, + "type": "IMAGE_COLOR" + } + }, + { + "key": "player_image_x_large", + "value": { + "image_value": { + "height": 720, + "width": 1280, + "url": "https://pbs.twimg.com/card_img/1753714336302784512/H-L2w7ov?format=png&name=2048x2048_2_exp" + }, + "type": "IMAGE" + } + } + ], + "card_platform": { + "platform": { + "audience": { + "name": "production" + }, + "device": { + "name": "Swift", + "version": "12" + } + } + }, + "name": "player", + "url": "https://t.co/ZiHpmy4aoH", + "user_refs_results": [ + { + "result": { + "__typename": "User", + "id": "VXNlcjoxMDIyODI3Mg==", + "rest_id": "10228272", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Nov 13 21:43:46 +0000 2007", + "default_profile": false, + "default_profile_image": false, + "description": "like and subscribe.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "youtube.com", + "expanded_url": "http://youtube.com", + "url": "https://t.co/bUisN3Y1A6", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 6189, + "followers_count": 79755985, + "friends_count": 1173, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 79777, + "location": "San Bruno, CA", + "media_count": 15778, + "name": "YouTube", + "normal_followers_count": 79755985, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/10228272/1706796151", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "YouTube", + "statuses_count": 57697, + "translator_type": "regular", + "url": "https://t.co/bUisN3Y1A6", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + ] + } + }, + "unmention_data": {}, + "unified_card": { + "card_fetch_state": "NoCard" + }, + "edit_control": { + "edit_tweet_ids": [ + "1756309189713183045" + ], + "editable_until_msecs": "1707575316000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:28:36 +0000 2024", + "conversation_id_str": "1756309189713183045", + "display_text_range": [ + 0, + 144 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [ + { + "display_url": "youtube.com/watch?v=JN3KPF…", + "expanded_url": "https://www.youtube.com/watch?v=JN3KPFbWCy8", + "url": "https://t.co/ZiHpmy4aoH", + "indices": [ + 121, + 144 + ] + } + ], + "user_mentions": [] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "War and human nature\nElon Musk: War, AI, Aliens, Politics, Physics, Video Games, and Humanity | Lex Fridman Podcast #400\nhttps://t.co/ZiHpmy4aoH", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1661173221469880320", + "id_str": "1756309189713183045" + } + } + }, + "tweetDisplayType": "Tweet", + "highlights": { + "textHighlights": [ + { + "startIndex": 21, + "endIndex": 30 + } + ] + } + }, + "clientEventInfo": { + "component": "result", + "element": "tweet", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAAAAAAAwAAgoAAQAAAAAAAAABCgAC6j6UdKAaXloLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAVZJAhycmdglwgABgAAAAEKAAfJCmJ71QCGOQAAAAAA" + } + } + } + } + }, + { + "entryId": "tweet-1756309186667835529", + "sortIndex": "1756309206182395900", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756309186667835529", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNzMwNzE1MzYyNzM4NDc5MTA0", + "rest_id": "1730715362738479104", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Fri Dec 01 22:28:14 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 1880, + "followers_count": 30, + "friends_count": 36, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 1, + "name": "Oliver Hart II", + "normal_followers_count": 30, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1733216996676775936/mrpwmwoT_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OliverHartII", + "statuses_count": 95, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756309186667835529" + ], + "editable_until_msecs": "1707575315000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:28:35 +0000 2024", + "conversation_id_str": "1756231616454676734", + "display_text_range": [ + 68, + 100 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "1402474657425465344", + "name": "Adlie Hassan", + "screen_name": "therealadlie", + "indices": [ + 0, + 13 + ] + }, + { + "id_str": "1446231057259433988", + "name": "Dr. Anastasia Maria Loupis", + "screen_name": "DrLoupis", + "indices": [ + 14, + 23 + ] + }, + { + "id_str": "1048229681273741312", + "name": "StopAntisemitism", + "screen_name": "StopAntisemites", + "indices": [ + 24, + 40 + ] + }, + { + "id_str": "1723180960546717696", + "name": "Defund Israel Now", + "screen_name": "DefundIsraelNow", + "indices": [ + 41, + 57 + ] + }, + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 58, + 67 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@therealadlie @DrLoupis @StopAntisemites @DefundIsraelNow @elonmusk Well, what role did you violate?", + "in_reply_to_screen_name": "therealadlie", + "in_reply_to_status_id_str": "1756307577607208973", + "in_reply_to_user_id_str": "1402474657425465344", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1730715362738479104", + "id_str": "1756309186667835529" + } + } + }, + "tweetDisplayType": "Tweet", + "highlights": { + "textHighlights": [ + { + "startIndex": 59, + "endIndex": 67 + } + ] + } + }, + "clientEventInfo": { + "component": "result", + "element": "tweet", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6j6UdKAaXloLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAVZJAhycmdglwgABgAAAAEKAAfJCmJ71QCGOQAAAAAA" + } + } + } + } + }, + { + "entryId": "tweet-1756309179633897916", + "sortIndex": "1756309206182395899", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756309179633897916", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTY2NDQyMjcwOTYxOTMwMjQx", + "rest_id": "1566442270961930241", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sun Sep 04 15:05:49 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "Believe in God....\nThis page is all about news on politics,movies, music,sport and so on...so you are welcome.😎🇳🇬🌟💫", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 4646, + "followers_count": 545, + "friends_count": 863, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "hoping for a good place ", + "media_count": 1827, + "name": "v.i.c.t.o.r.m.a.n", + "normal_followers_count": 545, + "pinned_tweet_ids_str": [ + "1733402842650624295" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1566442270961930241/1703252620", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1609677280351076353/PT9ryeLT_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "victormanonly1", + "statuses_count": 8017, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756309179633897916" + ], + "editable_until_msecs": "1707575313000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for Android", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:28:33 +0000 2024", + "conversation_id_str": "1756309179633897916", + "display_text_range": [ + 0, + 58 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/Po1TCxgoxQ", + "expanded_url": "https://twitter.com/victormanonly1/status/1756309179633897916/photo/1", + "id_str": "1756309172428107776", + "indices": [ + 59, + 82 + ], + "media_key": "3_1756309172428107776", + "media_url_https": "https://pbs.twimg.com/media/GF-p4xJWcAAN0v6.jpg", + "type": "photo", + "url": "https://t.co/Po1TCxgoxQ", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 175, + "y": 185, + "h": 80, + "w": 80 + } + ] + }, + "medium": { + "faces": [ + { + "x": 175, + "y": 185, + "h": 80, + "w": 80 + } + ] + }, + "small": { + "faces": [ + { + "x": 170, + "y": 179, + "h": 77, + "w": 77 + } + ] + }, + "orig": { + "faces": [ + { + "x": 175, + "y": 185, + "h": 80, + "w": 80 + } + ] + } + }, + "sizes": { + "large": { + "h": 699, + "w": 393, + "resize": "fit" + }, + "medium": { + "h": 699, + "w": 393, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 382, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 699, + "width": 393, + "focus_rects": [ + { + "x": 0, + "y": 152, + "w": 393, + "h": 220 + }, + { + "x": 0, + "y": 66, + "w": 393, + "h": 393 + }, + { + "x": 0, + "y": 38, + "w": 393, + "h": 448 + }, + { + "x": 43, + "y": 0, + "w": 350, + "h": 699 + }, + { + "x": 0, + "y": 0, + "w": 393, + "h": 699 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/Po1TCxgoxQ", + "expanded_url": "https://twitter.com/victormanonly1/status/1756309179633897916/photo/1", + "id_str": "1756309172428107776", + "indices": [ + 59, + 82 + ], + "media_key": "3_1756309172428107776", + "media_url_https": "https://pbs.twimg.com/media/GF-p4xJWcAAN0v6.jpg", + "type": "photo", + "url": "https://t.co/Po1TCxgoxQ", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [ + { + "x": 175, + "y": 185, + "h": 80, + "w": 80 + } + ] + }, + "medium": { + "faces": [ + { + "x": 175, + "y": 185, + "h": 80, + "w": 80 + } + ] + }, + "small": { + "faces": [ + { + "x": 170, + "y": 179, + "h": 77, + "w": 77 + } + ] + }, + "orig": { + "faces": [ + { + "x": 175, + "y": 185, + "h": 80, + "w": 80 + } + ] + } + }, + "sizes": { + "large": { + "h": 699, + "w": 393, + "resize": "fit" + }, + "medium": { + "h": 699, + "w": 393, + "resize": "fit" + }, + "small": { + "h": 680, + "w": 382, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 699, + "width": 393, + "focus_rects": [ + { + "x": 0, + "y": 152, + "w": 393, + "h": 220 + }, + { + "x": 0, + "y": 66, + "w": 393, + "h": 393 + }, + { + "x": 0, + "y": 38, + "w": 393, + "h": 448 + }, + { + "x": 43, + "y": 0, + "w": 350, + "h": 699 + }, + { + "x": 0, + "y": 0, + "w": 393, + "h": 699 + } + ] + } + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "Mbah charging rate😂\n\nUna Cha wan turn low budget Elon musk https://t.co/Po1TCxgoxQ", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1566442270961930241", + "id_str": "1756309179633897916" + } + } + }, + "tweetDisplayType": "Tweet", + "highlights": { + "textHighlights": [ + { + "startIndex": 49, + "endIndex": 58 + } + ] + } + }, + "clientEventInfo": { + "component": "result", + "element": "tweet", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAAEAAAAwAAgoAAQAAAAAAAAABCgAC6j6UdKAaXloLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAVZJAhycmdglwgABgAAAAEKAAfJCmJ71QCGOQAAAAAA" + } + } + } + } + }, + { + "entryId": "tweet-1756309179474583711", + "sortIndex": "1756309206182395898", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756309179474583711", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjg4NTE3MTA1MTI4MTgxNzYx", + "rest_id": "1688517105128181761", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Mon Aug 07 11:59:37 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "God❤️🚫DM DeOppressoLiber 🇮🇱🇺🇦♠️NEVER QUIT TRUMP MAGA🧬35.3🇳🇴🇸🇪🇩🇰23.6🏴󠁧󠁢󠁳󠁣󠁴󠁿🇨🇮🏴󠁧󠁢󠁷󠁬󠁳󠁿4.5🇬🇧13.8🇺🇾12.3Sardinia🇮🇹9🇸🇰🇵🇱1.5🇧🇬", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "gkllc4.com/nathan-white-w…", + "expanded_url": "https://www.gkllc4.com/nathan-white-wilson-founder-chairman-chief-executive-officer", + "url": "https://t.co/eaOu2kt4yl", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 14264, + "followers_count": 4596, + "friends_count": 3673, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 1, + "location": "⛳️🚤⛵🏄 Jensen Beach Florida🌴", + "media_count": 1608, + "name": "NATHAN🦅SME Trafficked HT AF Honorably Discharged", + "normal_followers_count": 4596, + "pinned_tweet_ids_str": [ + "1751630856647512459" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1688517105128181761/1702070264", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1750915665203019783/h-diHDTA_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "white_vet", + "statuses_count": 11771, + "translator_type": "none", + "url": "https://t.co/eaOu2kt4yl", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1750963244640960554", + "professional_type": "Business", + "category": [ + { + "id": 921, + "name": "Defense Company", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756309179474583711" + ], + "editable_until_msecs": "1707575313000", + "is_edit_eligible": true, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "quoted_status_result": { + "result": { + "__typename": "Tweet", + "rest_id": "1756277520540807239", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjUwMTEzMzg3MzIwMjA5NDEz", + "rest_id": "1650113387320209413", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sun Apr 23 12:24:34 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "Military theorist and OSINT || Covering developments in Ukraine, the Middle East, and the Asia-Pacific.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "t.me/astraiaintel", + "expanded_url": "https://t.me/astraiaintel", + "url": "https://t.co/Q7VNlOQQfH", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 24831, + "followers_count": 25094, + "friends_count": 437, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 683, + "location": "", + "media_count": 3768, + "name": "Astraia Intel", + "normal_followers_count": 25094, + "pinned_tweet_ids_str": [ + "1699380358276374878" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1650113387320209413/1706299242", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1730509791708028928/xQ7Oifli_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "astraiaintel", + "statuses_count": 11647, + "translator_type": "none", + "url": "https://t.co/Q7VNlOQQfH", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1667931154857574401", + "professional_type": "Creator", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756277520540807239" + ], + "editable_until_msecs": "1707567765000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "7187", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 8, + "bookmarked": false, + "created_at": "Sat Feb 10 11:22:45 +0000 2024", + "conversation_id_str": "1756277520540807239", + "display_text_range": [ + 0, + 135 + ], + "entities": { + "hashtags": [], + "media": [ + { + "display_url": "pic.twitter.com/YILNYgAF3W", + "expanded_url": "https://twitter.com/astraiaintel/status/1756277520540807239/photo/1", + "id_str": "1756276919828459520", + "indices": [ + 136, + 159 + ], + "media_key": "3_1756276919828459520", + "media_url_https": "https://pbs.twimg.com/media/GF-Mja2XsAAOabP.png", + "type": "photo", + "url": "https://t.co/YILNYgAF3W", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 394, + "w": 860, + "resize": "fit" + }, + "medium": { + "h": 394, + "w": 860, + "resize": "fit" + }, + "small": { + "h": 312, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 394, + "width": 860, + "focus_rects": [ + { + "x": 98, + "y": 0, + "w": 704, + "h": 394 + }, + { + "x": 253, + "y": 0, + "w": 394, + "h": 394 + }, + { + "x": 277, + "y": 0, + "w": 346, + "h": 394 + }, + { + "x": 352, + "y": 0, + "w": 197, + "h": 394 + }, + { + "x": 0, + "y": 0, + "w": 860, + "h": 394 + } + ] + } + } + ], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "extended_entities": { + "media": [ + { + "display_url": "pic.twitter.com/YILNYgAF3W", + "expanded_url": "https://twitter.com/astraiaintel/status/1756277520540807239/photo/1", + "id_str": "1756276919828459520", + "indices": [ + 136, + 159 + ], + "media_key": "3_1756276919828459520", + "media_url_https": "https://pbs.twimg.com/media/GF-Mja2XsAAOabP.png", + "type": "photo", + "url": "https://t.co/YILNYgAF3W", + "ext_media_availability": { + "status": "Available" + }, + "features": { + "large": { + "faces": [] + }, + "medium": { + "faces": [] + }, + "small": { + "faces": [] + }, + "orig": { + "faces": [] + } + }, + "sizes": { + "large": { + "h": 394, + "w": 860, + "resize": "fit" + }, + "medium": { + "h": 394, + "w": 860, + "resize": "fit" + }, + "small": { + "h": 312, + "w": 680, + "resize": "fit" + }, + "thumb": { + "h": 150, + "w": 150, + "resize": "crop" + } + }, + "original_info": { + "height": 394, + "width": 860, + "focus_rects": [ + { + "x": 98, + "y": 0, + "w": 704, + "h": 394 + }, + { + "x": 253, + "y": 0, + "w": 394, + "h": 394 + }, + { + "x": 277, + "y": 0, + "w": 346, + "h": 394 + }, + { + "x": 352, + "y": 0, + "w": 197, + "h": 394 + }, + { + "x": 0, + "y": 0, + "w": 860, + "h": 394 + } + ] + } + } + ] + }, + "favorite_count": 205, + "favorited": false, + "full_text": "🇺🇦⚔️🇷🇺 Ukrainian reconnaissance identified an American SpaceX Starlink terminal in a Russian position. The Russians are using Starlink. https://t.co/YILNYgAF3W", + "is_quote_status": false, + "lang": "en", + "possibly_sensitive": false, + "possibly_sensitive_editable": true, + "quote_count": 8, + "reply_count": 16, + "retweet_count": 54, + "retweeted": false, + "user_id_str": "1650113387320209413", + "id_str": "1756277520540807239" + } + } + }, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:28:33 +0000 2024", + "conversation_id_str": "1756309179474583711", + "display_text_range": [ + 0, + 94 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 0, + 9 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@elonmusk when are you going to shut down Starlin terminal that’s positioned for the Russians.", + "in_reply_to_screen_name": "elonmusk", + "in_reply_to_user_id_str": "44196397", + "is_quote_status": true, + "lang": "en", + "quote_count": 0, + "quoted_status_id_str": "1756277520540807239", + "quoted_status_permalink": { + "url": "https://t.co/P0iSZ6pJf4", + "expanded": "https://twitter.com/astraiaintel/status/1756277520540807239", + "display": "twitter.com/astraiaintel/s…" + }, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1688517105128181761", + "id_str": "1756309179474583711" + } + } + }, + "tweetDisplayType": "Tweet", + "highlights": { + "textHighlights": [ + { + "startIndex": 1, + "endIndex": 9 + } + ] + } + }, + "clientEventInfo": { + "component": "result", + "element": "tweet", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6j6UdKAaXloLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAVZJAhycmdglwgABgAAAAEKAAfJCmJ71QCGOQAAAAAA" + } + } + } + } + }, + { + "entryId": "tweet-1756309174877564974", + "sortIndex": "1756309206182395897", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756309174877564974", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTE0MzA4MTI=", + "rest_id": "151430812", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Thu Jun 03 11:44:15 +0000 2010", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 11591, + "followers_count": 62, + "friends_count": 76, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 1, + "location": "", + "media_count": 4, + "name": "HF", + "normal_followers_count": 62, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000335279251/30a36a99e4c2fa495147b25ab4247ca9_normal.jpeg", + "profile_interstitial_type": "", + "screen_name": "henrikfork", + "statuses_count": 6579, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756309174877564974" + ], + "editable_until_msecs": "1707575312000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:28:32 +0000 2024", + "conversation_id_str": "1755851825054433784", + "display_text_range": [ + 10, + 131 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 0, + 9 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@elonmusk Good that he Interviewed him but Jesus that was bad journalism. No follow up questions on all the obviously false claims.", + "in_reply_to_screen_name": "elonmusk", + "in_reply_to_status_id_str": "1755851825054433784", + "in_reply_to_user_id_str": "44196397", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "151430812", + "id_str": "1756309174877564974" + } + } + }, + "tweetDisplayType": "Tweet", + "highlights": { + "textHighlights": [ + { + "startIndex": 1, + "endIndex": 9 + } + ] + } + }, + "clientEventInfo": { + "component": "result", + "element": "tweet", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6j6UdKAaXloLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAVZJAhycmdglwgABgAAAAEKAAfJCmJ71QCGOQAAAAAA" + } + } + } + } + }, + { + "entryId": "tweet-1756309174428766225", + "sortIndex": "1756309206182395896", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756309174428766225", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTA3NjYzOTA4MjI3NzE5MTcz", + "rest_id": "1507663908227719173", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Sat Mar 26 10:21:18 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "I believe that Afrika will wake up one day.", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 506, + "followers_count": 55, + "friends_count": 34, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 94, + "name": "Ntja-Ea-Lapa", + "normal_followers_count": 55, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1507663908227719173/1648291065", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1507668116700073984/edWDfMti_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "OneT57017184", + "statuses_count": 2259, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756309174428766225" + ], + "editable_until_msecs": "1707575312000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for Android", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:28:32 +0000 2024", + "conversation_id_str": "1756306185802706982", + "display_text_range": [ + 10, + 189 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "959039318718402563", + "name": "Goolam", + "screen_name": "goolammv", + "indices": [ + 0, + 9 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@goolammv Wena you must watch Malema whether you like it or not otherwise you'll run out of content. Elon Musk's negative comments aren't doing anything to him what do you think you can do.", + "in_reply_to_screen_name": "goolammv", + "in_reply_to_status_id_str": "1756306185802706982", + "in_reply_to_user_id_str": "959039318718402563", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1507663908227719173", + "id_str": "1756309174428766225" + } + } + }, + "tweetDisplayType": "Tweet", + "highlights": { + "textHighlights": [ + { + "startIndex": 101, + "endIndex": 110 + } + ] + } + }, + "clientEventInfo": { + "component": "result", + "element": "tweet", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6j6UdKAaXloLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAVZJAhycmdglwgABgAAAAEKAAfJCmJ71QCGOQAAAAAA" + } + } + } + } + }, + { + "entryId": "tweet-1756309171132309627", + "sortIndex": "1756309206182395895", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756309171132309627", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjo2NzgyNzg1NQ==", + "rest_id": "67827855", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Sat Aug 22 05:59:22 +0000 2009", + "default_profile": false, + "default_profile_image": false, + "description": "Apolitical | Outspoken | No Nonsense | Highlight Civic Apathies | Bengaluru | Content Creator | Tweets Are Completely Personal |", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 9136, + "followers_count": 209, + "friends_count": 61, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 2, + "location": "Bengaluru, India", + "media_count": 178, + "name": "Mr.Ravan", + "normal_followers_count": 209, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/67827855/1456744675", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1398605461981564931/PcPjAtJD_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "thereal_ravan", + "statuses_count": 8712, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756309171132309627" + ], + "editable_until_msecs": "1707575311000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for iPhone", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:28:31 +0000 2024", + "conversation_id_str": "1756255353015021599", + "display_text_range": [ + 10, + 274 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "935142655213703168", + "name": "Mohammed Zubair", + "screen_name": "zoo_bear", + "indices": [ + 0, + 9 + ] + }, + { + "id_str": "783214", + "name": "X", + "screen_name": "X", + "indices": [ + 35, + 37 + ] + }, + { + "id_str": "17874544", + "name": "Support", + "screen_name": "Support", + "indices": [ + 38, + 46 + ] + }, + { + "id_str": "920488039", + "name": "Ministry of Information and Broadcasting", + "screen_name": "MIB_India", + "indices": [ + 47, + 57 + ] + }, + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 194, + 203 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@zoo_bear I stil wonder what stops @X @Support @MIB_India from suspending his account & chucking him out!\n\nExplore his account and u wil find 1000 reasons y his acc shud b banned forever!\n\n@elonmusk pls look into this issue! He is the biggest hatemonger in this country", + "in_reply_to_screen_name": "zoo_bear", + "in_reply_to_status_id_str": "1756255353015021599", + "in_reply_to_user_id_str": "935142655213703168", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "67827855", + "id_str": "1756309171132309627" + } + } + }, + "tweetDisplayType": "Tweet", + "highlights": { + "textHighlights": [ + { + "startIndex": 195, + "endIndex": 203 + } + ] + } + }, + "clientEventInfo": { + "component": "result", + "element": "tweet", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6j6UdKAaXloLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAVZJAhycmdglwgABgAAAAEKAAfJCmJ71QCGOQAAAAAA" + } + } + } + } + }, + { + "entryId": "tweet-1756309168666067062", + "sortIndex": "1756309206182395894", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756309168666067062", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTg1OTQ3OTU3OTA3ODQ1MTIw", + "rest_id": "1585947957907845120", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Fri Oct 28 10:54:01 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 189, + "followers_count": 13, + "friends_count": 297, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "", + "media_count": 7, + "name": "Doniproo", + "normal_followers_count": 13, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1749306700187009024/r2lrM00B_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "Doniprooo", + "statuses_count": 435, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756309168666067062" + ], + "editable_until_msecs": "1707575311000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:28:31 +0000 2024", + "conversation_id_str": "1756043720082763992", + "display_text_range": [ + 10, + 32 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 0, + 9 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@elonmusk The year of the Dragon", + "in_reply_to_screen_name": "elonmusk", + "in_reply_to_status_id_str": "1756043720082763992", + "in_reply_to_user_id_str": "44196397", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1585947957907845120", + "id_str": "1756309168666067062" + } + } + }, + "tweetDisplayType": "Tweet", + "highlights": { + "textHighlights": [ + { + "startIndex": 1, + "endIndex": 9 + } + ] + } + }, + "clientEventInfo": { + "component": "result", + "element": "tweet", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6j6UdKAaXloLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAVZJAhycmdglwgABgAAAAEKAAfJCmJ71QCGOQAAAAAA" + } + } + } + } + }, + { + "entryId": "tweet-1756309167667626363", + "sortIndex": "1756309206182395893", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756309167667626363", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMjk4NDMxMzczNTQwMzA2OTQ0", + "rest_id": "1298431373540306944", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed Aug 26 01:27:21 +0000 2020", + "default_profile": true, + "default_profile_image": false, + "description": "I see your true color\n\nhow do you tell the truth to someone who don't want to hear the truth?", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 3253, + "followers_count": 51, + "friends_count": 160, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 3, + "location": "", + "media_count": 508, + "name": "TheUTruth", + "normal_followers_count": 51, + "pinned_tweet_ids_str": [ + "1723460760930566289" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1298431373540306944/1696377131", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1709356003068710912/LRZmh_kB_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "XKANXHAN", + "statuses_count": 7960, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756309167667626363" + ], + "editable_until_msecs": "1707575310000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:28:30 +0000 2024", + "conversation_id_str": "1756290259824861524", + "display_text_range": [ + 22, + 161 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "801203059359678464", + "name": "Dr. Eli David", + "screen_name": "DrEliDavid", + "indices": [ + 0, + 11 + ] + }, + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 12, + 21 + ] + }, + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 119, + 128 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@DrEliDavid @elonmusk Zionist are trying to silence everyone they can so the truth don't get out\n\nThis is pathetic and @elonmusk need to reevaluate those motives", + "in_reply_to_screen_name": "DrEliDavid", + "in_reply_to_status_id_str": "1756290259824861524", + "in_reply_to_user_id_str": "801203059359678464", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1298431373540306944", + "id_str": "1756309167667626363" + } + } + }, + "tweetDisplayType": "Tweet", + "highlights": { + "textHighlights": [ + { + "startIndex": 13, + "endIndex": 21 + }, + { + "startIndex": 120, + "endIndex": 128 + } + ] + } + }, + "clientEventInfo": { + "component": "result", + "element": "tweet", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6j6UdKAaXloLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAVZJAhycmdglwgABgAAAAEKAAfJCmJ71QCGOQAAAAAA" + } + } + } + } + }, + { + "entryId": "tweet-1756309164303782242", + "sortIndex": "1756309206182395892", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756309164303782242", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozMjIxNjk0OTU2", + "rest_id": "3221694956", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed May 20 18:07:25 +0000 2015", + "default_profile": false, + "default_profile_image": false, + "description": "Writer/director for https://t.co/dR3mgH9t2t", + "entities": { + "description": { + "urls": [ + { + "display_url": "laughtertalks.com", + "expanded_url": "http://laughtertalks.com", + "url": "https://t.co/dR3mgH9t2t", + "indices": [ + 20, + 43 + ] + } + ] + }, + "url": { + "urls": [ + { + "display_url": "laughtertalks.com", + "expanded_url": "http://www.laughtertalks.com", + "url": "https://t.co/Ea13bvwsI5", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 8431, + "followers_count": 2316, + "friends_count": 4960, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 26, + "location": "Not California", + "media_count": 3532, + "name": "Marguerite Fair Talk Show Artist", + "normal_followers_count": 2316, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/3221694956/1625494457", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1412052730554634247/opg2D0ai_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "marguerite_fair", + "statuses_count": 12788, + "translator_type": "none", + "url": "https://t.co/Ea13bvwsI5", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756309164303782242" + ], + "editable_until_msecs": "1707575310000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:28:30 +0000 2024", + "conversation_id_str": "1755263112834675025", + "display_text_range": [ + 10, + 123 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 0, + 9 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@elonmusk Giving refined sugar products to children should be illegal. It is addictive and bad for their brains and bodies.", + "in_reply_to_screen_name": "elonmusk", + "in_reply_to_status_id_str": "1755263112834675025", + "in_reply_to_user_id_str": "44196397", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "3221694956", + "id_str": "1756309164303782242" + } + } + }, + "tweetDisplayType": "Tweet", + "highlights": { + "textHighlights": [ + { + "startIndex": 1, + "endIndex": 9 + } + ] + } + }, + "clientEventInfo": { + "component": "result", + "element": "tweet", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6j6UdKAaXloLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAVZJAhycmdglwgABgAAAAEKAAfJCmJ71QCGOQAAAAAA" + } + } + } + } + }, + { + "entryId": "tweet-1756309164073357397", + "sortIndex": "1756309206182395891", + "content": { + "entryType": "TimelineTimelineItem", + "__typename": "TimelineTimelineItem", + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1756309164073357397", + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNTE5NDEzODQxMDU4MDk1MTA0", + "rest_id": "1519413841058095104", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": true, + "created_at": "Wed Apr 27 20:31:16 +0000 2022", + "default_profile": true, + "default_profile_image": false, + "description": "", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 8024, + "followers_count": 337, + "friends_count": 97, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 2, + "location": "A place near you", + "media_count": 186, + "name": "Lilian_ard", + "normal_followers_count": 337, + "pinned_tweet_ids_str": [ + "1629957319802097665" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1519413841058095104/1694369143", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1688806894176223232/rclJvspk_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "lilian_ard", + "statuses_count": 3157, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1690609967408239078", + "professional_type": "Business", + "category": [ + { + "id": 958, + "name": "Entrepreneur", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1756309164073357397" + ], + "editable_until_msecs": "1707575310000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "state": "Enabled" + }, + "source": "Twitter for Android", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Feb 10 13:28:30 +0000 2024", + "conversation_id_str": "1756137580012388844", + "display_text_range": [ + 28, + 44 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "34743251", + "name": "SpaceX", + "screen_name": "SpaceX", + "indices": [ + 0, + 7 + ] + }, + { + "id_str": "44196397", + "name": "Elon Musk", + "screen_name": "elonmusk", + "indices": [ + 8, + 17 + ] + }, + { + "id_str": "1330170106501079041", + "name": "Starlink", + "screen_name": "Starlink", + "indices": [ + 18, + 27 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@SpaceX @elonmusk @Starlink Success 🙌 always", + "in_reply_to_screen_name": "SpaceX", + "in_reply_to_status_id_str": "1756137580012388844", + "in_reply_to_user_id_str": "34743251", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1519413841058095104", + "id_str": "1756309164073357397" + } + } + }, + "tweetDisplayType": "Tweet", + "highlights": { + "textHighlights": [ + { + "startIndex": 9, + "endIndex": 17 + } + ] + } + }, + "clientEventInfo": { + "component": "result", + "element": "tweet", + "details": { + "timelinesDetails": { + "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6j6UdKAaXloLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAVZJAhycmdglwgABgAAAAEKAAfJCmJ71QCGOQAAAAAA" + } + } + } + } + }, + { + "entryId": "cursor-top-9223372036854775807", + "sortIndex": "9223372036854775807", + "content": { + "entryType": "TimelineTimelineCursor", + "__typename": "TimelineTimelineCursor", + "value": "DAADDAABCgABGF-p6QKXIFoKAAIYX6nhIFsQVQAIAAIAAAABCAADAAAAAAgABAAAAAAKAAUYX6nq7kAnEAoABhhfqeruP9jwAAA", + "cursorType": "Top" + } + }, + { + "entryId": "cursor-bottom-0", + "sortIndex": "0", + "content": { + "entryType": "TimelineTimelineCursor", + "__typename": "TimelineTimelineCursor", + "value": "DAADDAABCgABGF-p6QKXIFoKAAIYX6nhIFsQVQAIAAIAAAACCAADAAAAAAgABAAAAAAKAAUYX6nq7kAnEAoABhhfqeruP9jwAAA", + "cursorType": "Bottom" + } + } + ] + } + ] + } + } + } + } +} diff --git a/tests/mocked-data/tweet_details_raw.json b/tests/mocked-data/raw_tweet_details.json similarity index 70% rename from tests/mocked-data/tweet_details_raw.json rename to tests/mocked-data/raw_tweet_details.json index 9cfa406..b3d5468 100644 --- a/tests/mocked-data/tweet_details_raw.json +++ b/tests/mocked-data/raw_tweet_details.json @@ -68,16 +68,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600384, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600384, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -86,7 +86,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -119,12 +119,12 @@ }, "is_translatable": false, "views": { - "count": "648826", + "count": "677119", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 67, + "bookmark_count": 69, "bookmarked": false, "created_at": "Thu Apr 20 23:21:13 +0000 2023", "conversation_id_str": "1649191520250245121", @@ -139,14 +139,14 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 433, + "favorite_count": 434, "favorited": false, "full_text": "Today, we are deprecating our Premium v1.1 API, including Premium Search and Account Activity API.", "is_quote_status": false, "lang": "en", - "quote_count": 113, - "reply_count": 98, - "retweet_count": 213, + "quote_count": 114, + "reply_count": 101, + "retweet_count": 221, "retweeted": false, "user_id_str": "2244994945", "id_str": "1649191520250245121" @@ -228,16 +228,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600384, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600384, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -246,7 +246,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -279,7 +279,7 @@ }, "is_translatable": false, "views": { - "count": "188068", + "count": "189229", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -299,7 +299,7 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 85, + "favorite_count": 81, "favorited": false, "full_text": "On 3/29 we announced that deprecations across our legacy Twitter API access tiers would be completed by 4/29. Unwinding Premium is one step closer to full deprecation of those legacy tiers.", "in_reply_to_screen_name": "XDevelopers", @@ -308,8 +308,8 @@ "is_quote_status": false, "lang": "en", "quote_count": 37, - "reply_count": 9, - "retweet_count": 50, + "reply_count": 8, + "retweet_count": 51, "retweeted": false, "user_id_str": "2244994945", "id_str": "1649191521323995138" @@ -327,7 +327,7 @@ "conversationSection": "HighQuality" }, "timelinesDetails": { - "controllerData": "DAACDAAEDAABCgABFSCBCCADg4UKAAIAAAAAGCAgCAAAAAA=" + "controllerData": "DAACDAAEDAABCgABFSABCCADg4UKAAIAAAAAGACgCAAAAAA=" } } } @@ -393,16 +393,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600384, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600384, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -411,7 +411,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -447,7 +447,7 @@ }, "is_translatable": false, "views": { - "count": "124231", + "count": "134381", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -477,7 +477,7 @@ ], "user_mentions": [] }, - "favorite_count": 128, + "favorite_count": 135, "favorited": false, "full_text": "If you are a Twitter developer with a commercial use case, we recommend that you apply for our Enterprise tier.\nEnterprise Search and Account Activity API continue to be available to developers on that Enterprise tier. \n\nApply here: https://t.co/A2FQP2DWuy", "in_reply_to_screen_name": "XDevelopers", @@ -489,7 +489,7 @@ "possibly_sensitive_editable": true, "quote_count": 14, "reply_count": 29, - "retweet_count": 37, + "retweet_count": 41, "retweeted": false, "user_id_str": "2244994945", "id_str": "1649191522485817345" @@ -507,7 +507,7 @@ "conversationSection": "HighQuality" }, "timelinesDetails": { - "controllerData": "DAACDAAEDAABCgABFSCBECADg4EKAAIAAAAAGCAgCAAAAAA=" + "controllerData": "DAACDAAEDAABCgABFSABECADg4EKAAIAAAAAGACgCAAAAAA=" } } } @@ -573,16 +573,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600384, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600384, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -591,7 +591,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -627,7 +627,7 @@ }, "is_translatable": false, "views": { - "count": "95010", + "count": "104459", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -657,7 +657,7 @@ ], "user_mentions": [] }, - "favorite_count": 125, + "favorite_count": 130, "favorited": false, "full_text": "Thank you to those who have already migrated to our new API offerings. We hope you can continue to seamlessly use the Twitter API via our new access tiers. \n\nLearn more: https://t.co/iGTdPXTp2D", "in_reply_to_screen_name": "XDevelopers", @@ -668,8 +668,8 @@ "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 3, - "reply_count": 36, - "retweet_count": 35, + "reply_count": 37, + "retweet_count": 41, "retweeted": false, "user_id_str": "2244994945", "id_str": "1649191523697979392" @@ -687,7 +687,7 @@ "conversationSection": "HighQuality" }, "timelinesDetails": { - "controllerData": "DAACDAAEDAABCgABFSCBICADg4EKAAIAAAAAGCAgCAAAAAA=" + "controllerData": "DAACDAAEDAABCgABFSABICADg4EKAAIAAAAAGACgCAAAAAA=" } } } @@ -786,16 +786,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 265799, - "followers_count": 7946, - "friends_count": 1090, + "favourites_count": 270412, + "followers_count": 7956, + "friends_count": 1095, "has_custom_timelines": true, "is_translator": false, - "listed_count": 227, + "listed_count": 228, "location": "Opinions expressed are my own.", - "media_count": 7122, + "media_count": 7339, "name": "Doug Ross", - "normal_followers_count": 7946, + "normal_followers_count": 7956, "pinned_tweet_ids_str": [ "1720528492213809456" ], @@ -804,7 +804,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1454854536548470787/U9Z4U3Wx_normal.jpg", "profile_interstitial_type": "", "screen_name": "directorblue", - "statuses_count": 274105, + "statuses_count": 278371, "translator_type": "none", "url": "https://t.co/SW6kSVYDf9", "verified": false, @@ -825,7 +825,7 @@ }, "is_translatable": false, "views": { - "count": "424", + "count": "559", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -855,7 +855,7 @@ } ] }, - "favorite_count": 2, + "favorite_count": 4, "favorited": false, "full_text": "@XDevelopers Turning off very modest search access for the free tier has really disrupted some devs. They (we) have no business case to pay $1,000 a month or whatever.\nThanks for listening.", "in_reply_to_screen_name": "XDevelopers", @@ -883,302 +883,7 @@ "conversationSection": "HighQuality" }, "timelinesDetails": { - "controllerData": "DAACDAAEDAABCgABFSKBCGAHgAUKAAIAAAAAGCBACAAAAAA=" - } - } - } - } - } - ], - "displayType": "VerticalConversation", - "clientEventInfo": { - "details": { - "conversationDetails": { - "conversationSection": "HighQuality" - } - } - } - } - }, - { - "entryId": "conversationthread-1698285353767936408-146fe47380793a52", - "sortIndex": "7574180516604530656", - "content": { - "entryType": "TimelineTimelineModule", - "__typename": "TimelineTimelineModule", - "items": [ - { - "entryId": "conversationthread-1698285353767936408-tweet-1698285353767936408-146fe47380793a52", - "item": { - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1698285353767936408", - "has_birdwatch_notes": true, - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMzkyNDA0OTI4ODg3NDk2NzA1", - "rest_id": "1392404928887496705", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Wed May 12 09:03:08 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Onze auteurs schrijven boeken over spiritualiteit, bewustwording, gezondheid, complementaire geneeswijzen, persoonlijke groei en nieuwe wetenschap.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "obeliskboeken.nl", - "expanded_url": "https://www.obeliskboeken.nl", - "url": "https://t.co/CmmSu7DdEU", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 388, - "followers_count": 1685, - "friends_count": 46, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 8, - "location": "Breda, Nederland", - "media_count": 219, - "name": "Obeliskboeken", - "normal_followers_count": 1685, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1392404928887496705/1693806855", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1392407272433885184/LaseB8S__normal.jpg", - "profile_interstitial_type": "", - "screen_name": "obeliskboeken", - "statuses_count": 269, - "translator_type": "none", - "url": "https://t.co/CmmSu7DdEU", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1666699794822361088", - "professional_type": "Business", - "category": [ - { - "id": 1100, - "name": "Book Publisher", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "card": { - "rest_id": "card://1698285351846998016", - "legacy": { - "binding_values": [ - { - "key": "unified_card", - "value": { - "string_value": "{\"type\":\"image_website\",\"component_objects\":{\"details_1\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"David Icke's 'De Droom' is nu verkrijgbaar bij de boekhandel\",\"is_rtl\":false},\"subtitle\":{\"content\":\"obeliskboeken.nl\",\"is_rtl\":false},\"destination\":\"browser_1\"}},\"media_1\":{\"type\":\"media\",\"data\":{\"id\":\"3_1701831660504064000\",\"destination\":\"browser_1\"}}},\"destination_objects\":{\"browser_1\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://obeliskboeken.nl/boek/de-droom\",\"vanity\":\"obeliskboeken.nl\"}}}},\"components\":[\"media_1\",\"details_1\"],\"media_entities\":{\"3_1701831660504064000\":{\"id\":1701831660504064000,\"id_str\":\"1701831660504064000\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/F54e4OfboAAClIi.png\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800,\"focus_rects\":[{\"x\":0,\"y\":36,\"h\":448,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":800},{\"x\":98,\"y\":0,\"h\":800,\"w\":702},{\"x\":380,\"y\":0,\"h\":800,\"w\":400},{\"x\":0,\"y\":0,\"h\":800,\"w\":800}]},\"sizes\":{\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}},\"source_user_id\":1392404928887496705,\"source_user_id_str\":\"1392404928887496705\",\"media_key\":\"3_1701831660504064000\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":0,\"green\":142,\"blue\":151},\"percentage\":55.94},{\"rgb\":{\"red\":216,\"green\":150,\"blue\":22},\"percentage\":21.78},{\"rgb\":{\"red\":217,\"green\":223,\"blue\":233},\"percentage\":12.41},{\"rgb\":{\"red\":220,\"green\":174,\"blue\":85},\"percentage\":5.57},{\"rgb\":{\"red\":133,\"green\":147,\"blue\":189},\"percentage\":1.7}]}},\"ttl\":-1}}}}}", - "type": "STRING" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://twitter.com", - "type": "STRING" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "unified_card", - "url": "card://1698285351846998016", - "user_refs_results": [] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1698285353767936408" - ], - "editable_until_msecs": "1693741355000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": true, - "views": { - "count": "1542289", - "state": "EnabledWithCount" - }, - "source": "advertiser-interface", - "legacy": { - "bookmark_count": 20, - "bookmarked": false, - "created_at": "Sun Sep 03 10:42:35 +0000 2023", - "conversation_id_str": "1698285353767936408", - "display_text_range": [ - 0, - 121 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 467, - "favorited": false, - "full_text": "David Icke doet in zijn nieuwe boek 'De Droom' wonderbaarlijke onthullingen die zelfs zijn grootste fans zullen verbazen.", - "is_quote_status": false, - "lang": "nl", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 1, - "reply_count": 50, - "retweet_count": 49, - "retweeted": false, - "scopes": { - "followers": false - }, - "user_id_str": "1392404928887496705", - "id_str": "1698285353767936408" - }, - "quick_promote_eligibility": { - "eligibility": "IneligibleNotProfessional" - } - } - }, - "tweetDisplayType": "Tweet", - "promotedMetadata": { - "advertiser_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMzkyNDA0OTI4ODg3NDk2NzA1", - "rest_id": "1392404928887496705", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Wed May 12 09:03:08 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Onze auteurs schrijven boeken over spiritualiteit, bewustwording, gezondheid, complementaire geneeswijzen, persoonlijke groei en nieuwe wetenschap.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "obeliskboeken.nl", - "expanded_url": "https://www.obeliskboeken.nl", - "url": "https://t.co/CmmSu7DdEU", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 388, - "followers_count": 1685, - "friends_count": 46, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 8, - "location": "Breda, Nederland", - "media_count": 219, - "name": "Obeliskboeken", - "normal_followers_count": 1685, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1392404928887496705/1693806855", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1392407272433885184/LaseB8S__normal.jpg", - "profile_interstitial_type": "", - "screen_name": "obeliskboeken", - "statuses_count": 269, - "translator_type": "none", - "url": "https://t.co/CmmSu7DdEU", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1666699794822361088", - "professional_type": "Business", - "category": [ - { - "id": 1100, - "name": "Book Publisher", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - }, - "disclosureType": "NoDisclosure", - "experimentValues": [ - { - "key": "website_card_variation", - "value": "0" - } - ], - "impressionId": "146fe47380793a52", - "impressionString": "146fe47380793a52", - "clickTrackingInfo": { - "urlParams": [ - { - "key": "twclid", - "value": "229g5xr727z1489okxtamxenki" - } - ] - } - } - }, - "clientEventInfo": { - "details": { - "conversationDetails": { - "conversationSection": "HighQuality" + "controllerData": "DAACDAAEDAABCgABFSABCGAHgAUKAAIAAAAAGADACAAAAAA=" } } } @@ -1197,7 +902,7 @@ }, { "entryId": "conversationthread-1649219645088624642", - "sortIndex": "7574180516604530646", + "sortIndex": "7574180516604530656", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", @@ -1259,16 +964,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 173558, - "followers_count": 2391, - "friends_count": 1364, + "favourites_count": 176458, + "followers_count": 2468, + "friends_count": 1386, "has_custom_timelines": true, "is_translator": false, "listed_count": 33, "location": "United States", - "media_count": 6779, + "media_count": 6859, "name": "Chad is Rad", - "normal_followers_count": 2391, + "normal_followers_count": 2468, "pinned_tweet_ids_str": [ "738816222226063361" ], @@ -1277,7 +982,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1565110693845540866/E2sWtAFH_normal.jpg", "profile_interstitial_type": "", "screen_name": "chadcluff", - "statuses_count": 110433, + "statuses_count": 111522, "translator_type": "none", "url": "https://t.co/KThTkTtAXv", "verified": false, @@ -1309,7 +1014,7 @@ }, "is_translatable": false, "views": { - "count": "6463", + "count": "6652", "state": "EnabledWithCount" }, "source": "Twitter for Android", @@ -1329,7 +1034,7 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 90, + "favorite_count": 92, "favorited": false, "full_text": "@TwitterDev The Twitter API program has experienced a rapid unscheduled disassembly.\n\nIt was fun using it and making Twitter better for others, but I'm not going to pay to make your site more fun.", "in_reply_to_screen_name": "XDevelopers", @@ -1357,467 +1062,7 @@ "conversationSection": "HighQuality" }, "timelinesDetails": { - "controllerData": "DAACDAAEDAABCgABFSGBCSQDgAUKAAIAAAAACCBACAAAAAA=" - } - } - } - } - } - ], - "displayType": "VerticalConversation", - "clientEventInfo": { - "details": { - "conversationDetails": { - "conversationSection": "HighQuality" - } - } - } - } - }, - { - "entryId": "conversationthread-1649204618902097920", - "sortIndex": "7574180516604530636", - "content": { - "entryType": "TimelineTimelineModule", - "__typename": "TimelineTimelineModule", - "items": [ - { - "entryId": "conversationthread-1649204618902097920-tweet-1649204618902097920", - "item": { - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1649204618902097920", - "has_birdwatch_notes": false, - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMzM5MDUwMDEwNTU4NzM4NDM0", - "rest_id": "1339050010558738434", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed Dec 16 03:29:58 +0000 2020", - "default_profile": true, - "default_profile_image": false, - "description": "Shitcoin Trader | Founder of https://t.co/biXGANXEW1 | Albina ❤️| 21 💞 12", - "entities": { - "description": { - "urls": [ - { - "display_url": "Degen2day.com", - "expanded_url": "http://Degen2day.com", - "url": "https://t.co/biXGANXEW1", - "indices": [ - 29, - 52 - ] - } - ] - }, - "url": { - "urls": [ - { - "display_url": "Degen2day.com", - "expanded_url": "http://Degen2day.com", - "url": "https://t.co/biXGANXEW1", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 618, - "followers_count": 423, - "friends_count": 2462, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1, - "location": "Moon", - "media_count": 70, - "name": "Ment❂r 🇹🇷 🇦🇱", - "normal_followers_count": 423, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1339050010558738434/1703073536", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1737646117314060288/xvAsXVUu_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Mentor_0x39", - "statuses_count": 279, - "translator_type": "none", - "url": "https://t.co/biXGANXEW1", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1576388819946971137", - "professional_type": "Creator", - "category": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1649204618902097920" - ], - "editable_until_msecs": "1682037796000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "2730", - "state": "EnabledWithCount" - }, - "source": "Twitter for Android", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Fri Apr 21 00:13:16 +0000 2023", - "conversation_id_str": "1649191520250245121", - "display_text_range": [ - 11, - 11 - ], - "entities": { - "hashtags": [], - "media": [ - { - "display_url": "pic.twitter.com/bmpJzs74Ug", - "expanded_url": "https://twitter.com/Mentor_0x39/status/1649204618902097920/video/1", - "id_str": "1649204608474968065", - "indices": [ - 12, - 35 - ], - "media_key": "7_1649204608474968065", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1649204608474968065/pu/img/MhcMpLdCec-NNFiY.jpg", - "type": "video", - "url": "https://t.co/bmpJzs74Ug", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 250, - "w": 320, - "resize": "fit" - }, - "medium": { - "h": 250, - "w": 320, - "resize": "fit" - }, - "small": { - "h": 250, - "w": 320, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 250, - "width": 320, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 32, - 25 - ], - "duration_millis": 1642, - "variants": [ - { - "bitrate": 256000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1649204608474968065/pu/vid/320x250/6n-tXHfUlyK6O4n0.mp4?tag=12" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1649204608474968065/pu/pl/5_BwLo1Z3LJoHvIz.m3u8?tag=12&container=fmp4" - } - ] - } - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "extended_entities": { - "media": [ - { - "display_url": "pic.twitter.com/bmpJzs74Ug", - "expanded_url": "https://twitter.com/Mentor_0x39/status/1649204618902097920/video/1", - "id_str": "1649204608474968065", - "indices": [ - 12, - 35 - ], - "media_key": "7_1649204608474968065", - "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1649204608474968065/pu/img/MhcMpLdCec-NNFiY.jpg", - "type": "video", - "url": "https://t.co/bmpJzs74Ug", - "additional_media_info": { - "monetizable": false - }, - "ext_media_availability": { - "status": "Available" - }, - "sizes": { - "large": { - "h": 250, - "w": 320, - "resize": "fit" - }, - "medium": { - "h": 250, - "w": 320, - "resize": "fit" - }, - "small": { - "h": 250, - "w": 320, - "resize": "fit" - }, - "thumb": { - "h": 150, - "w": 150, - "resize": "crop" - } - }, - "original_info": { - "height": 250, - "width": 320, - "focus_rects": [] - }, - "video_info": { - "aspect_ratio": [ - 32, - 25 - ], - "duration_millis": 1642, - "variants": [ - { - "bitrate": 256000, - "content_type": "video/mp4", - "url": "https://video.twimg.com/ext_tw_video/1649204608474968065/pu/vid/320x250/6n-tXHfUlyK6O4n0.mp4?tag=12" - }, - { - "content_type": "application/x-mpegURL", - "url": "https://video.twimg.com/ext_tw_video/1649204608474968065/pu/pl/5_BwLo1Z3LJoHvIz.m3u8?tag=12&container=fmp4" - } - ] - } - } - ] - }, - "favorite_count": 3, - "favorited": false, - "full_text": "@TwitterDev https://t.co/bmpJzs74Ug", - "in_reply_to_screen_name": "XDevelopers", - "in_reply_to_status_id_str": "1649191520250245121", - "in_reply_to_user_id_str": "2244994945", - "is_quote_status": false, - "lang": "qme", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 1, - "retweet_count": 0, - "retweeted": false, - "user_id_str": "1339050010558738434", - "id_str": "1649204618902097920" - }, - "quick_promote_eligibility": { - "eligibility": "IneligibleNotProfessional" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "details": { - "conversationDetails": { - "conversationSection": "HighQuality" - }, - "timelinesDetails": { - "controllerData": "DAACDAAEDAABCgABFSGBCigDgAUKAAIAAAAACCAgCAAAAAA=" - } - } - } - } - } - ], - "displayType": "VerticalConversation", - "clientEventInfo": { - "details": { - "conversationDetails": { - "conversationSection": "HighQuality" - } - } - } - } - }, - { - "entryId": "conversationthread-1649225698102636544", - "sortIndex": "7574180516604530626", - "content": { - "entryType": "TimelineTimelineModule", - "__typename": "TimelineTimelineModule", - "items": [ - { - "entryId": "conversationthread-1649225698102636544-tweet-1649225698102636544", - "item": { - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1649225698102636544", - "has_birdwatch_notes": false, - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjozMjYyODEwNjA0", - "rest_id": "3262810604", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Wed Jul 01 03:10:15 +0000 2015", - "default_profile": false, - "default_profile_image": false, - "description": "SNSを中心としたプロモーションの提案からBPO業務の進行リード、広告運用までやってます┃M大法学部卒⇝H通信⇝業務改善コンサル⇝Y/G/M広告運用⇝SNSマーケ支援┃ビジネスの根本は『誰のため、何のため』┃ウェルビーイング┃キャンプ🔰┃竜党🐉┃お仕事でもそれ以外でもピンときた人は✉️お待ちしてます", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 203133, - "followers_count": 12143, - "friends_count": 9836, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 2, - "location": "岐阜⛰️▶︎東京🗼", - "media_count": 131, - "name": "タグマサ", - "normal_followers_count": 12143, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/3262810604/1676467056", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1714069572075110401/82DT_ZJh_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Ma3kitagu", - "statuses_count": 7178, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1455890554005307393", - "professional_type": "Business", - "category": [ - { - "id": 478, - "name": "Advertising & Marketing Agency", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1649225698102636544" - ], - "editable_until_msecs": "1682042822000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": true, - "views": { - "count": "7766", - "state": "EnabledWithCount" - }, - "source": "TweetDeck Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Fri Apr 21 01:37:02 +0000 2023", - "conversation_id_str": "1649191520250245121", - "display_text_range": [ - 12, - 67 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 4, - "favorited": false, - "full_text": "@TwitterDev もはや彼らへの信用はない。でも裏返せばそれがプラットフォーマーであることの強みでもあるんだけど。解せないな。。", - "in_reply_to_screen_name": "XDevelopers", - "in_reply_to_status_id_str": "1649191520250245121", - "in_reply_to_user_id_str": "2244994945", - "is_quote_status": false, - "lang": "ja", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 0, - "retweeted": false, - "user_id_str": "3262810604", - "id_str": "1649225698102636544" - }, - "quick_promote_eligibility": { - "eligibility": "IneligibleNotProfessional" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "details": { - "conversationDetails": { - "conversationSection": "HighQuality" - }, - "timelinesDetails": { - "controllerData": "DAACDAAEDAABCgABFSGBDDADgAUKAAIAAAAAGCBACAAAAAA=" + "controllerData": "DAACDAAEDAABCgABFSABCKIDgAUKAAIAAAAACADACAAAAAA=" } } } @@ -1836,7 +1081,7 @@ }, { "entryId": "conversationthread-1649197403352727555", - "sortIndex": "7574180516604530616", + "sortIndex": "7574180516604530646", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", @@ -1888,16 +1133,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 1184, - "followers_count": 2053, - "friends_count": 1426, + "favourites_count": 1205, + "followers_count": 2130, + "friends_count": 1442, "has_custom_timelines": true, "is_translator": false, - "listed_count": 56, + "listed_count": 57, "location": " 𝕏 Spaces", - "media_count": 1557, + "media_count": 1628, "name": "Andrew", - "normal_followers_count": 2053, + "normal_followers_count": 2130, "pinned_tweet_ids_str": [ "1714035340980170953" ], @@ -1906,7 +1151,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1621228515981934593/Wvoc2qmf_normal.jpg", "profile_interstitial_type": "", "screen_name": "_andrewlyons", - "statuses_count": 5525, + "statuses_count": 5661, "translator_type": "none", "url": "https://t.co/IiYboXyNIP", "verified": false, @@ -1941,7 +1186,7 @@ }, "is_translatable": false, "views": { - "count": "4906", + "count": "4995", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -2009,7 +1254,7 @@ "conversationSection": "HighQuality" }, "timelinesDetails": { - "controllerData": "DAACDAAEDAABCgABFSGBCCADgAUKAAIAAAAAGCBACAAAAAA=" + "controllerData": "DAACDAAEDAABCgABFSABCSQDgAUKAAIAAAAAGADACAAAAAA=" } } } @@ -2028,7 +1273,7 @@ }, { "entryId": "conversationthread-1649205557440512001", - "sortIndex": "7574180516604530606", + "sortIndex": "7574180516604530636", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", @@ -2080,35 +1325,30 @@ } }, "fast_followers_count": 0, - "favourites_count": 109312, - "followers_count": 20265, - "friends_count": 7918, + "favourites_count": 110097, + "followers_count": 20267, + "friends_count": 7799, "has_custom_timelines": true, "is_translator": false, - "listed_count": 72, + "listed_count": 73, "location": " ", - "media_count": 1503, + "media_count": 1565, "name": "Cassandra", - "normal_followers_count": 20265, + "normal_followers_count": 20267, "pinned_tweet_ids_str": [ - "1730451659166458121" + "1755084215446544737" ], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/860871247/1691982305", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/860871247/1705466446", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1226616987498893312/LwUJeQ0N_normal.jpg", "profile_interstitial_type": "", "screen_name": "star95011", - "statuses_count": 154215, + "statuses_count": 155374, "translator_type": "none", "url": "https://t.co/Yd36L1miEe", "verified": false, "want_retweets": false, "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1458115924012277775", - "professional_type": "Creator", - "category": [] } } } @@ -2124,7 +1364,7 @@ }, "is_translatable": false, "views": { - "count": "5457", + "count": "5541", "state": "EnabledWithCount" }, "source": "Twitter for iPad", @@ -2172,7 +1412,7 @@ "conversationSection": "HighQuality" }, "timelinesDetails": { - "controllerData": "DAACDAAEDAABCgABFSGBCCADgAUKAAIAAAAAGCBACAAAAAA=" + "controllerData": "DAACDAAEDAABCgABFSABCigDgAUKAAIAAAAAGADACAAAAAA=" } } } @@ -2190,14 +1430,14 @@ } }, { - "entryId": "conversationthread-1649407172340482052", - "sortIndex": "7574180516604530596", + "entryId": "conversationthread-1649191583491805184", + "sortIndex": "7574180516604530626", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "conversationthread-1649407172340482052-tweet-1649407172340482052", + "entryId": "conversationthread-1649191583491805184-tweet-1649191583491805184", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -2205,45 +1445,35 @@ "tweet_results": { "result": { "__typename": "Tweet", - "rest_id": "1649407172340482052", + "rest_id": "1649191583491805184", "has_birdwatch_notes": false, "core": { "user_results": { "result": { "__typename": "User", - "id": "VXNlcjoxOTIzMjY5MTY=", - "rest_id": "192326916", + "id": "VXNlcjoxNjM2MDk3NDg4ODc1NTYwOTYy", + "rest_id": "1636097488875560962", "affiliates_highlighted_label": {}, "has_graduated_access": true, - "is_blue_verified": false, + "is_blue_verified": true, "profile_image_shape": "Circle", "legacy": { "can_dm": true, "can_media_tag": true, - "created_at": "Sat Sep 18 20:39:11 +0000 2010", - "default_profile": false, + "created_at": "Wed Mar 15 20:10:18 +0000 2023", + "default_profile": true, "default_profile_image": false, - "description": "Chief contributer to the B.O.F.A. Initiative , Admiral in the US Army Federal Reserve https://t.co/GvqaNO0pqZ", + "description": "Building Arasaka, PowerHouse, Self Taught, Self Funded, OSS Contributor | @stealthgpt @rapidresumeai", "entities": { "description": { - "urls": [ - { - "display_url": "youtu.be/f7IqAjnuc4c", - "expanded_url": "http://youtu.be/f7IqAjnuc4c", - "url": "https://t.co/GvqaNO0pqZ", - "indices": [ - 86, - 109 - ] - } - ] + "urls": [] }, "url": { "urls": [ { - "display_url": "scp-wiki.net/andariel-halo-…", - "expanded_url": "http://www.scp-wiki.net/andariel-halo-file", - "url": "https://t.co/4WnKh97ako", + "display_url": "jozefgherman.com", + "expanded_url": "http://jozefgherman.com", + "url": "https://t.co/9OxmhJbwHH", "indices": [ 0, 23 @@ -2253,30 +1483,41 @@ } }, "fast_followers_count": 0, - "favourites_count": 256567, - "followers_count": 642, - "friends_count": 735, + "favourites_count": 3904, + "followers_count": 403, + "friends_count": 148, "has_custom_timelines": true, "is_translator": false, - "listed_count": 16, - "location": "Bagabigna's Court", - "media_count": 4775, - "name": "Admiral Benghazi", - "normal_followers_count": 642, + "listed_count": 6, + "location": "W", + "media_count": 325, + "name": "Jozef Gherman", + "normal_followers_count": 403, "pinned_tweet_ids_str": [ - "1597994574559203329" + "1730286715909165295" ], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/192326916/1482786978", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1639067707625680898/rgNp476Y_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1636097488875560962/1682038841", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1723353949133004800/BLynE1dM_normal.jpg", "profile_interstitial_type": "", - "screen_name": "AdmiralHalo", - "statuses_count": 93545, + "screen_name": "gptjozef", + "statuses_count": 2068, "translator_type": "none", - "url": "https://t.co/4WnKh97ako", + "url": "https://t.co/9OxmhJbwHH", "verified": false, "want_retweets": false, "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1638520025131761665", + "professional_type": "Creator", + "category": [ + { + "id": 1055, + "name": "Software developer/Programmer/Software engineer", + "icon_name": "IconBriefcaseStroke" + } + ] } } } @@ -2284,26 +1525,26 @@ "unmention_data": {}, "edit_control": { "edit_tweet_ids": [ - "1649407172340482052" + "1649191583491805184" ], - "editable_until_msecs": "1682086089000", + "editable_until_msecs": "1682034688000", "is_edit_eligible": false, "edits_remaining": "5" }, "is_translatable": false, "views": { - "count": "3334", + "count": "3572", "state": "EnabledWithCount" }, - "source": "Twitter for Android", + "source": "Twitter for iPhone", "legacy": { - "bookmark_count": 1, + "bookmark_count": 0, "bookmarked": false, - "created_at": "Fri Apr 21 13:38:09 +0000 2023", + "created_at": "Thu Apr 20 23:21:28 +0000 2023", "conversation_id_str": "1649191520250245121", "display_text_range": [ 12, - 71 + 17 ], "entities": { "hashtags": [], @@ -2312,20 +1553,20 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 9, + "favorite_count": 2, "favorited": false, - "full_text": "@TwitterDev Fake account using Twitter blue to impersonate Twitter devs", + "full_text": "@TwitterDev No :(", "in_reply_to_screen_name": "XDevelopers", "in_reply_to_status_id_str": "1649191520250245121", "in_reply_to_user_id_str": "2244994945", "is_quote_status": false, - "lang": "en", + "lang": "und", "quote_count": 0, - "reply_count": 5, - "retweet_count": 1, + "reply_count": 1, + "retweet_count": 0, "retweeted": false, - "user_id_str": "192326916", - "id_str": "1649407172340482052" + "user_id_str": "1636097488875560962", + "id_str": "1649191583491805184" }, "quick_promote_eligibility": { "eligibility": "IneligibleNotProfessional" @@ -2340,7 +1581,7 @@ "conversationSection": "HighQuality" }, "timelinesDetails": { - "controllerData": "DAACDAAEDAABCgABFSGBCCADgAUKAAIAAAAACCBACAAAAAA=" + "controllerData": "DAACDAAEDAABCgABFKABDDADgAUKAAIAAAAAGADACAAAAAA=" } } } @@ -2358,15 +1599,371 @@ } }, { - "entryId": "cursor-bottom-2690922271848037118", - "sortIndex": "7574180516604530595", + "entryId": "conversationthread-1667373163150278657", + "sortIndex": "7574180516604530616", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "conversationthread-1667373163150278657-tweet-1667373163150278657", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1667373163150278657", + "has_birdwatch_notes": false, + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxNjM4MzgzMTExNTQwMDE1MTA1", + "rest_id": "1638383111540015105", + "affiliates_highlighted_label": { + "label": { + "url": { + "url": "https://twitter.com/outsider_supply", + "urlType": "DeepLink" + }, + "badge": { + "url": "https://pbs.twimg.com/profile_images/1753157760521265152/m0oXggGY_bigger.jpg" + }, + "description": "Outsider Supply", + "userLabelType": "BusinessLabel", + "userLabelDisplayType": "Badge" + } + }, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Wed Mar 22 03:32:46 +0000 2023", + "default_profile": true, + "default_profile_image": false, + "description": "Conceptual Artist with a philosophical undertone. Founder & CEO @outsider_supply art/acc", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "outsidersupply.com/pages/about", + "expanded_url": "https://www.outsidersupply.com/pages/about", + "url": "https://t.co/WdiVpNHzpq", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 12249, + "followers_count": 267, + "friends_count": 182, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 1, + "location": "The Art World", + "media_count": 295, + "name": "McKenzie Girl", + "normal_followers_count": 267, + "pinned_tweet_ids_str": [ + "1734425017474076707" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1638383111540015105/1691326339", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1730757276707803136/SGZZ5TxH_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "therealmck3nzie", + "statuses_count": 3899, + "translator_type": "none", + "url": "https://t.co/WdiVpNHzpq", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1729359557208441136", + "professional_type": "Business", + "category": [ + { + "id": 958, + "name": "Entrepreneur", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1667373163150278657" + ], + "editable_until_msecs": "1686371315000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "1240", + "state": "EnabledWithCount" + }, + "source": "Twitter for iPhone", + "note_tweet": { + "is_expandable": true, + "note_tweet_results": { + "result": { + "id": "Tm90ZVR3ZWV0OjE2NjczNzMxNjMwMzcwNTI5Mjk=", + "text": "Hey @TwitterDev 💕 not too sure how to give feedback, but in my ‘For You’ tab, I keep seeing tweets written by my self 🤷‍♀️ \n\nIt was also feeling easier to engage and grow a few weeks ago, but maybe I just haven’t been saying interesting things! 🤷‍♀️\n\nAnyhow, thanks! And yea. Id rather not see my own tweets in my ‘for you’ 💕", + "entity_set": { + "hashtags": [], + "symbols": [], + "urls": [], + "user_mentions": [] + } + } + } + }, + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sat Jun 10 03:28:35 +0000 2023", + "conversation_id_str": "1649191520250245121", + "display_text_range": [ + 12, + 292 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [] + }, + "favorite_count": 2, + "favorited": false, + "full_text": "@TwitterDev Hey @TwitterDev 💕 not too sure how to give feedback, but in my ‘For You’ tab, I keep seeing tweets written by my self 🤷‍♀️ \n\nIt was also feeling easier to engage and grow a few weeks ago, but maybe I just haven’t been saying interesting things! 🤷‍♀️\n\nAnyhow, thanks! And yea. Id…", + "in_reply_to_screen_name": "XDevelopers", + "in_reply_to_status_id_str": "1649191520250245121", + "in_reply_to_user_id_str": "2244994945", + "is_quote_status": false, + "lang": "en", + "quote_count": 1, + "reply_count": 1, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1638383111540015105", + "id_str": "1667373163150278657" + }, + "quick_promote_eligibility": { + "eligibility": "IneligibleNotProfessional" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "details": { + "conversationDetails": { + "conversationSection": "HighQuality" + }, + "timelinesDetails": { + "controllerData": "DAACDAAEDAABCgABFKABCCADgAUKAAIAAAAAGACICAAAAAA=" + } + } + } + } + } + ], + "displayType": "VerticalConversation", + "clientEventInfo": { + "details": { + "conversationDetails": { + "conversationSection": "HighQuality" + } + } + } + } + }, + { + "entryId": "conversationthread-1718645889391378558", + "sortIndex": "7574180516604530606", + "content": { + "entryType": "TimelineTimelineModule", + "__typename": "TimelineTimelineModule", + "items": [ + { + "entryId": "conversationthread-1718645889391378558-tweet-1718645889391378558", + "item": { + "itemContent": { + "itemType": "TimelineTweet", + "__typename": "TimelineTweet", + "tweet_results": { + "result": { + "__typename": "Tweet", + "rest_id": "1718645889391378558", + "has_birdwatch_notes": false, + "core": { + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMTMwNzY4NDI1MDY2Njk2NzA1", + "rest_id": "1130768425066696705", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue May 21 09:32:56 +0000 2019", + "default_profile": true, + "default_profile_image": false, + "description": "Diamond hand-Builder in #Crypto #BTC #ETH #X!\n#Mission: 1M X #Followers - 1000 #BTC", + "entities": { + "description": { + "urls": [] + } + }, + "fast_followers_count": 0, + "favourites_count": 372, + "followers_count": 45379, + "friends_count": 1984, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 0, + "location": "Mar", + "media_count": 18, + "name": "ChopBKHN", + "normal_followers_count": 45379, + "pinned_tweet_ids_str": [ + "1745408253088219481" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1130768425066696705/1698980704", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1708402530085195776/icOpNG9o_normal.png", + "profile_interstitial_type": "", + "screen_name": "tsuperprince", + "statuses_count": 156, + "translator_type": "none", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1721086070027362728", + "professional_type": "Creator", + "category": [] + } + } + } + }, + "unmention_data": {}, + "edit_control": { + "edit_tweet_ids": [ + "1718645889391378558" + ], + "editable_until_msecs": "1698595685000", + "is_edit_eligible": false, + "edits_remaining": "5" + }, + "is_translatable": false, + "views": { + "count": "42", + "state": "EnabledWithCount" + }, + "source": "Twitter Web App", + "legacy": { + "bookmark_count": 0, + "bookmarked": false, + "created_at": "Sun Oct 29 15:08:05 +0000 2023", + "conversation_id_str": "1649191520250245121", + "display_text_range": [ + 13, + 82 + ], + "entities": { + "hashtags": [], + "symbols": [], + "timestamps": [], + "urls": [], + "user_mentions": [ + { + "id_str": "2244994945", + "name": "Developers", + "screen_name": "XDevelopers", + "indices": [ + 0, + 12 + ] + } + ] + }, + "favorite_count": 0, + "favorited": false, + "full_text": "@XDevelopers I found some issue with password not hash how can I report the issue?", + "in_reply_to_screen_name": "XDevelopers", + "in_reply_to_status_id_str": "1649191520250245121", + "in_reply_to_user_id_str": "2244994945", + "is_quote_status": false, + "lang": "en", + "quote_count": 0, + "reply_count": 0, + "retweet_count": 0, + "retweeted": false, + "user_id_str": "1130768425066696705", + "id_str": "1718645889391378558" + }, + "quick_promote_eligibility": { + "eligibility": "IneligibleNotProfessional" + } + } + }, + "tweetDisplayType": "Tweet" + }, + "clientEventInfo": { + "details": { + "conversationDetails": { + "conversationSection": "HighQuality" + }, + "timelinesDetails": { + "controllerData": "DAACDAAEDAABCgABFKABCCADgAUKAAIAAAAAGACgCAAAAAA=" + } + } + } + } + } + ], + "displayType": "VerticalConversation", + "clientEventInfo": { + "details": { + "conversationDetails": { + "conversationSection": "HighQuality" + } + } + } + } + }, + { + "entryId": "cursor-bottom-6165625404519441252", + "sortIndex": "7574180516604530605", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", "itemContent": { "itemType": "TimelineTimelineCursor", "__typename": "TimelineTimelineCursor", - "value": "WwAAAPAxHBmWhMDT4e-hmuMtgoC8ze7tk-MthMDSse28jeMtgMC3ue2n4OQuiICw1bLF7-MtsIax6YDiwpEvhoCw9Z2TkCQAUL75nbeTCQDg052agp3jLSUCEhUEAAA", + "value": "UgAAAPEoHBmGhMDT4e-hmuMtgoC8ze7tk-MthMDSse28jeMtgMC3ue2n4OQugMC-ybzAjeMthoCw9Z2TkC0A8AeZ2cPZoy78gd69lNXt2S8lAhIVBAAA", "cursorType": "Bottom" } } diff --git a/tests/mocked-data/user_by_id_raw.json b/tests/mocked-data/raw_user_by_id.json similarity index 93% rename from tests/mocked-data/user_by_id_raw.json rename to tests/mocked-data/raw_user_by_id.json index 069f9dd..5e2afbe 100644 --- a/tests/mocked-data/user_by_id_raw.json +++ b/tests/mocked-data/raw_user_by_id.json @@ -48,16 +48,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -66,7 +66,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, diff --git a/tests/mocked-data/user_by_login_raw.json b/tests/mocked-data/raw_user_by_login.json similarity index 94% rename from tests/mocked-data/user_by_login_raw.json rename to tests/mocked-data/raw_user_by_login.json index 4a95cfe..dd4cbb3 100644 --- a/tests/mocked-data/user_by_login_raw.json +++ b/tests/mocked-data/raw_user_by_login.json @@ -48,16 +48,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -66,7 +66,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, diff --git a/tests/mocked-data/user_tweets_raw.json b/tests/mocked-data/raw_user_tweets.json similarity index 84% rename from tests/mocked-data/user_tweets_raw.json rename to tests/mocked-data/raw_user_tweets.json index 3400844..668ce99 100644 --- a/tests/mocked-data/user_tweets_raw.json +++ b/tests/mocked-data/raw_user_tweets.json @@ -13,7 +13,7 @@ "type": "TimelinePinEntry", "entry": { "entryId": "tweet-1661790253886177280", - "sortIndex": "1739819648242679808", + "sortIndex": "1756309194643865600", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -73,16 +73,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -91,7 +91,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -124,7 +124,7 @@ }, "is_translatable": false, "views": { - "count": "726001", + "count": "768636", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -160,7 +160,7 @@ } }, "legacy": { - "bookmark_count": 171, + "bookmark_count": 175, "bookmarked": false, "created_at": "Thu May 25 17:44:05 +0000 2023", "conversation_id_str": "1661790253886177280", @@ -175,14 +175,14 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 912, + "favorite_count": 1112, "favorited": false, "full_text": "📣 Calling all start-ups 📣\n\nToday we are launching our new access tier, Twitter API Pro!\n\nExperiment, build, and scale your business with 1M Tweets per month, including our powerful real-time Filtered/Stream and Full Archive Search endpoints. We look forward to seeing what you…", "is_quote_status": false, "lang": "en", - "quote_count": 192, - "reply_count": 440, - "retweet_count": 247, + "quote_count": 193, + "reply_count": 496, + "retweet_count": 330, "retweeted": false, "user_id_str": "2244994945", "id_str": "1661790253886177280" @@ -211,7 +211,7 @@ "entries": [ { "entryId": "tweet-1735357096777138304", - "sortIndex": "1739819648242679807", + "sortIndex": "1756309194643865599", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -271,16 +271,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -289,7 +289,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -321,7 +321,7 @@ "image_value": { "height": 144, "width": 144, - "url": "https://pbs.twimg.com/card_img/1735721389066178560/9I28EIMh?format=png&name=144x144_2" + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=144x144_2" }, "type": "IMAGE" } @@ -336,7 +336,7 @@ { "key": "domain", "value": { - "string_value": "twittercommunity.com", + "string_value": "devcommunity.x.com", "type": "STRING" } }, @@ -346,7 +346,7 @@ "image_value": { "height": 420, "width": 420, - "url": "https://pbs.twimg.com/card_img/1735721389066178560/9I28EIMh?format=png&name=420x420_2" + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=420x420_2" }, "type": "IMAGE" } @@ -357,7 +357,7 @@ "image_value": { "height": 2453, "width": 2400, - "url": "https://pbs.twimg.com/card_img/1735721389066178560/9I28EIMh?format=png&name=orig" + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=orig" }, "type": "IMAGE" } @@ -368,7 +368,7 @@ "image_value": { "height": 100, "width": 100, - "url": "https://pbs.twimg.com/card_img/1735721389066178560/9I28EIMh?format=png&name=100x100_2" + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=100x100_2" }, "type": "IMAGE" } @@ -379,7 +379,7 @@ "image_value": { "height": 2048, "width": 2004, - "url": "https://pbs.twimg.com/card_img/1735721389066178560/9I28EIMh?format=png&name=2048x2048_2_exp" + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=2048x2048_2_exp" }, "type": "IMAGE" } @@ -388,7 +388,7 @@ "key": "vanity_url", "value": { "scribe_key": "vanity_url", - "string_value": "twittercommunity.com", + "string_value": "devcommunity.x.com", "type": "STRING" } }, @@ -464,12 +464,12 @@ }, "is_translatable": false, "views": { - "count": "35490", + "count": "67511", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 23, + "bookmark_count": 28, "bookmarked": false, "created_at": "Thu Dec 14 17:52:27 +0000 2023", "conversation_id_str": "1735357096777138304", @@ -494,16 +494,16 @@ ], "user_mentions": [] }, - "favorite_count": 200, + "favorite_count": 323, "favorited": false, "full_text": "Users search and Trends lookup endpoints are now available in X API v2 -- exclusively on Pro & Enterprise! \n\nWant to learn more about what these endpoints can do, visit here: https://t.co/iWVHGMWojH", "is_quote_status": false, "lang": "en", "possibly_sensitive": false, "possibly_sensitive_editable": true, - "quote_count": 13, - "reply_count": 21, - "retweet_count": 73, + "quote_count": 16, + "reply_count": 56, + "retweet_count": 107, "retweeted": false, "user_id_str": "2244994945", "id_str": "1735357096777138304" @@ -521,257 +521,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" - } - } - } - } - }, - { - "entryId": "promoted-tweet-1738120943040450760-1470d1b8382a2e38", - "sortIndex": "1739819648242679806", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1738120943040450760", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDU2MDY3MjY=", - "rest_id": "145606726", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Square", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed May 19 11:27:05 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Al meer dan 135 jaar werken we bij Auping aan de beste manieren om uit te rusten. Wij geloven dat een uitgeruste wereld een betere wereld is. Auping, met liefde", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "auping.nl", - "expanded_url": "http://www.auping.nl", - "url": "https://t.co/SfjXDWhLqf", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 2214, - "followers_count": 2380, - "friends_count": 455, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 25, - "location": "Deventer, Holland", - "media_count": 275, - "name": "Koninklijke Auping", - "normal_followers_count": 2380, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/145606726/1536246575", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1037719591743574016/MeDbotyW_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "AupingNL", - "statuses_count": 2154, - "translator_type": "none", - "url": "https://t.co/SfjXDWhLqf", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "card://1738120633140101120", - "legacy": { - "binding_values": [ - { - "key": "unified_card", - "value": { - "string_value": "{\"type\":\"image_carousel_website\",\"component_objects\":{\"details_1\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"15% voordeel\",\"is_rtl\":false},\"subtitle\":{\"content\":\"auping.com\",\"is_rtl\":false},\"destination\":\"browser_1\"}},\"swipeable_media_1\":{\"type\":\"swipeable_media\",\"data\":{\"media_list\":[{\"id\":\"3_1737106444850429953\",\"destination\":\"browser_1\"},{\"id\":\"3_1737106427515486208\",\"destination\":\"browser_1\"},{\"id\":\"3_1737106407919656960\",\"destination\":\"browser_1\"},{\"id\":\"3_1737106389733117952\",\"destination\":\"browser_1\"},{\"id\":\"3_1737106372393914368\",\"destination\":\"browser_1\"},{\"id\":\"3_1737106351984398338\",\"destination\":\"browser_1\"}]}}},\"destination_objects\":{\"browser_1\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://www.auping.com/nl/beddengoed/dekbedovertrekken?utm_source=soc_pr_Twitter&utm_medium=smc&utm_campaign=au-nl-bd___twitter&utm_content=35178489_44782634&utm_id=28792\",\"vanity\":\"auping.com\"}}}},\"components\":[\"swipeable_media_1\",\"details_1\"],\"media_entities\":{\"3_1737106427515486208\":{\"id\":1737106427515486208,\"id_str\":\"1737106427515486208\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/GBtxF50bwAAUPdj.jpg\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800,\"focus_rects\":[{\"x\":0,\"y\":116,\"h\":448,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":800},{\"x\":98,\"y\":0,\"h\":800,\"w\":702},{\"x\":400,\"y\":0,\"h\":800,\"w\":400},{\"x\":0,\"y\":0,\"h\":800,\"w\":800}]},\"sizes\":{\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"}},\"source_user_id\":145606726,\"source_user_id_str\":\"145606726\",\"media_key\":\"3_1737106427515486208\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":185,\"green\":181,\"blue\":170},\"percentage\":55.63},{\"rgb\":{\"red\":200,\"green\":63,\"blue\":27},\"percentage\":11.08},{\"rgb\":{\"red\":168,\"green\":136,\"blue\":99},\"percentage\":7.37},{\"rgb\":{\"red\":226,\"green\":104,\"blue\":98},\"percentage\":6.97},{\"rgb\":{\"red\":22,\"green\":7,\"blue\":2},\"percentage\":3.18}]}},\"ttl\":-1}}},\"3_1737106372393914368\":{\"id\":1737106372393914368,\"id_str\":\"1737106372393914368\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/GBtxCsebUAAOikW.jpg\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800,\"focus_rects\":[{\"x\":0,\"y\":116,\"h\":448,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":800},{\"x\":98,\"y\":0,\"h\":800,\"w\":702},{\"x\":400,\"y\":0,\"h\":800,\"w\":400},{\"x\":0,\"y\":0,\"h\":800,\"w\":800}]},\"sizes\":{\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}},\"source_user_id\":145606726,\"source_user_id_str\":\"145606726\",\"media_key\":\"3_1737106372393914368\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":187,\"green\":186,\"blue\":177},\"percentage\":55.49},{\"rgb\":{\"red\":81,\"green\":116,\"blue\":200},\"percentage\":6.99},{\"rgb\":{\"red\":107,\"green\":84,\"blue\":61},\"percentage\":5.68},{\"rgb\":{\"red\":2,\"green\":34,\"blue\":53},\"percentage\":5.33},{\"rgb\":{\"red\":200,\"green\":63,\"blue\":27},\"percentage\":4.72}]}},\"ttl\":-1}}},\"3_1737106389733117952\":{\"id\":1737106389733117952,\"id_str\":\"1737106389733117952\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/GBtxDtEakAALuWr.jpg\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800,\"focus_rects\":[{\"x\":0,\"y\":116,\"h\":448,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":800},{\"x\":98,\"y\":0,\"h\":800,\"w\":702},{\"x\":400,\"y\":0,\"h\":800,\"w\":400},{\"x\":0,\"y\":0,\"h\":800,\"w\":800}]},\"sizes\":{\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}},\"source_user_id\":145606726,\"source_user_id_str\":\"145606726\",\"media_key\":\"3_1737106389733117952\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":178,\"green\":174,\"blue\":171},\"percentage\":60.44},{\"rgb\":{\"red\":44,\"green\":50,\"blue\":48},\"percentage\":26.2},{\"rgb\":{\"red\":200,\"green\":63,\"blue\":27},\"percentage\":4.72},{\"rgb\":{\"red\":253,\"green\":253,\"blue\":253},\"percentage\":1.39},{\"rgb\":{\"red\":100,\"green\":139,\"blue\":108},\"percentage\":0.93}]}},\"ttl\":-1}}},\"3_1737106444850429953\":{\"id\":1737106444850429953,\"id_str\":\"1737106444850429953\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/GBtxG6ZaAAECu_1.jpg\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800,\"focus_rects\":[{\"x\":0,\"y\":116,\"h\":448,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":800},{\"x\":98,\"y\":0,\"h\":800,\"w\":702},{\"x\":400,\"y\":0,\"h\":800,\"w\":400},{\"x\":0,\"y\":0,\"h\":800,\"w\":800}]},\"sizes\":{\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}},\"source_user_id\":145606726,\"source_user_id_str\":\"145606726\",\"media_key\":\"3_1737106444850429953\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":188,\"green\":187,\"blue\":185},\"percentage\":46.25},{\"rgb\":{\"red\":161,\"green\":87,\"blue\":43},\"percentage\":14.98},{\"rgb\":{\"red\":154,\"green\":123,\"blue\":102},\"percentage\":11.32},{\"rgb\":{\"red\":15,\"green\":27,\"blue\":54},\"percentage\":7.39},{\"rgb\":{\"red\":200,\"green\":63,\"blue\":27},\"percentage\":4.7}]}},\"ttl\":-1}}},\"3_1737106407919656960\":{\"id\":1737106407919656960,\"id_str\":\"1737106407919656960\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/GBtxEw0bIAAe-eG.jpg\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800,\"focus_rects\":[{\"x\":0,\"y\":116,\"h\":448,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":800},{\"x\":98,\"y\":0,\"h\":800,\"w\":702},{\"x\":400,\"y\":0,\"h\":800,\"w\":400},{\"x\":0,\"y\":0,\"h\":800,\"w\":800}]},\"sizes\":{\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}},\"source_user_id\":145606726,\"source_user_id_str\":\"145606726\",\"media_key\":\"3_1737106407919656960\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":182,\"green\":182,\"blue\":177},\"percentage\":32.85},{\"rgb\":{\"red\":73,\"green\":63,\"blue\":54},\"percentage\":18.76},{\"rgb\":{\"red\":166,\"green\":129,\"blue\":144},\"percentage\":13.7},{\"rgb\":{\"red\":118,\"green\":142,\"blue\":79},\"percentage\":7.2},{\"rgb\":{\"red\":200,\"green\":63,\"blue\":27},\"percentage\":4.7}]}},\"ttl\":-1}}},\"3_1737106351984398338\":{\"id\":1737106351984398338,\"id_str\":\"1737106351984398338\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/GBtxBgca0AIIAng.jpg\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800,\"focus_rects\":[{\"x\":0,\"y\":116,\"h\":448,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":800},{\"x\":98,\"y\":0,\"h\":800,\"w\":702},{\"x\":400,\"y\":0,\"h\":800,\"w\":400},{\"x\":0,\"y\":0,\"h\":800,\"w\":800}]},\"sizes\":{\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"}},\"source_user_id\":145606726,\"source_user_id_str\":\"145606726\",\"media_key\":\"3_1737106351984398338\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":204,\"green\":193,\"blue\":185},\"percentage\":69.45},{\"rgb\":{\"red\":182,\"green\":138,\"blue\":111},\"percentage\":6.25},{\"rgb\":{\"red\":200,\"green\":63,\"blue\":27},\"percentage\":4.69},{\"rgb\":{\"red\":50,\"green\":36,\"blue\":27},\"percentage\":4.15},{\"rgb\":{\"red\":208,\"green\":229,\"blue\":213},\"percentage\":4.13}]}},\"ttl\":-1}}}}}", - "type": "STRING" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://twitter.com", - "type": "STRING" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "unified_card", - "url": "card://1738120633140101120", - "user_refs_results": [] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1738120943040450760" - ], - "editable_until_msecs": "1703238900000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": true, - "views": { - "count": "537412", - "state": "EnabledWithCount" - }, - "source": "advertiser-interface", - "legacy": { - "bookmark_count": 3, - "bookmarked": false, - "created_at": "Fri Dec 22 08:55:00 +0000 2023", - "conversation_id_str": "1738120943040450760", - "display_text_range": [ - 0, - 59 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 25, - "favorited": false, - "full_text": "Het is Wintersale bij Auping! 15% voordeel op bijna alles 💙", - "is_quote_status": false, - "lang": "nl", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 1, - "reply_count": 5, - "retweet_count": 1, - "retweeted": false, - "scopes": { - "followers": false - }, - "user_id_str": "145606726", - "id_str": "1738120943040450760" - }, - "quick_promote_eligibility": { - "eligibility": "IneligibleNotProfessional" - } - } - }, - "tweetDisplayType": "Tweet", - "promotedMetadata": { - "advertiser_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDU2MDY3MjY=", - "rest_id": "145606726", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Square", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed May 19 11:27:05 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Al meer dan 135 jaar werken we bij Auping aan de beste manieren om uit te rusten. Wij geloven dat een uitgeruste wereld een betere wereld is. Auping, met liefde", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "auping.nl", - "expanded_url": "http://www.auping.nl", - "url": "https://t.co/SfjXDWhLqf", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 2214, - "followers_count": 2380, - "friends_count": 455, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 25, - "location": "Deventer, Holland", - "media_count": 275, - "name": "Koninklijke Auping", - "normal_followers_count": 2380, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/145606726/1536246575", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1037719591743574016/MeDbotyW_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "AupingNL", - "statuses_count": 2154, - "translator_type": "none", - "url": "https://t.co/SfjXDWhLqf", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "adMetadataContainer": { - "renderLegacyWebsiteCard": false - }, - "disclosureType": "NoDisclosure", - "experimentValues": [], - "impressionId": "1470d1b8382a2e38", - "impressionString": "1470d1b8382a2e38", - "clickTrackingInfo": { - "urlParams": [ - { - "key": "twclid", - "value": "2-4ol8e1ju3f8vj8j29u5ehr6dl" - } - ] + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -779,7 +529,7 @@ }, { "entryId": "tweet-1720506615714213927", - "sortIndex": "1739819648242679805", + "sortIndex": "1756309194643865598", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -839,16 +589,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -857,7 +607,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -889,7 +639,7 @@ "image_value": { "height": 144, "width": 144, - "url": "https://pbs.twimg.com/card_img/1736927397809680384/oCzqyq9R?format=png&name=144x144_2" + "url": "https://pbs.twimg.com/card_img/1756011018747056128/5ZwQwL1k?format=png&name=144x144_2" }, "type": "IMAGE" } @@ -904,7 +654,7 @@ { "key": "domain", "value": { - "string_value": "twittercommunity.com", + "string_value": "devcommunity.x.com", "type": "STRING" } }, @@ -914,7 +664,7 @@ "image_value": { "height": 356, "width": 356, - "url": "https://pbs.twimg.com/card_img/1736927397809680384/oCzqyq9R?format=png&name=420x420_2" + "url": "https://pbs.twimg.com/card_img/1756011018747056128/5ZwQwL1k?format=png&name=420x420_2" }, "type": "IMAGE" } @@ -925,7 +675,7 @@ "image_value": { "height": 356, "width": 1024, - "url": "https://pbs.twimg.com/card_img/1736927397809680384/oCzqyq9R?format=png&name=orig" + "url": "https://pbs.twimg.com/card_img/1756011018747056128/5ZwQwL1k?format=png&name=orig" }, "type": "IMAGE" } @@ -936,7 +686,7 @@ "image_value": { "height": 100, "width": 100, - "url": "https://pbs.twimg.com/card_img/1736927397809680384/oCzqyq9R?format=png&name=100x100_2" + "url": "https://pbs.twimg.com/card_img/1756011018747056128/5ZwQwL1k?format=png&name=100x100_2" }, "type": "IMAGE" } @@ -947,7 +697,7 @@ "image_value": { "height": 356, "width": 1024, - "url": "https://pbs.twimg.com/card_img/1736927397809680384/oCzqyq9R?format=png&name=2048x2048_2_exp" + "url": "https://pbs.twimg.com/card_img/1756011018747056128/5ZwQwL1k?format=png&name=2048x2048_2_exp" }, "type": "IMAGE" } @@ -956,7 +706,7 @@ "key": "vanity_url", "value": { "scribe_key": "vanity_url", - "string_value": "twittercommunity.com", + "string_value": "devcommunity.x.com", "type": "STRING" } }, @@ -1032,12 +782,12 @@ }, "is_translatable": false, "views": { - "count": "110270", + "count": "127103", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 57, + "bookmark_count": 58, "bookmarked": false, "created_at": "Fri Nov 03 18:21:57 +0000 2023", "conversation_id_str": "1720506615714213927", @@ -1062,7 +812,7 @@ ], "user_mentions": [] }, - "favorite_count": 381, + "favorite_count": 436, "favorited": false, "full_text": "You can now monitor your usage programmatically using the new Usage endpoint in the X API v2 🎉\n\nWe are working on new features that will be launched in the near future. Stay tuned! https://t.co/F3TbD440qA", "is_quote_status": false, @@ -1070,8 +820,8 @@ "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 18, - "reply_count": 58, - "retweet_count": 72, + "reply_count": 68, + "retweet_count": 90, "retweeted": false, "user_id_str": "2244994945", "id_str": "1720506615714213927" @@ -1089,7 +839,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -1097,7 +847,7 @@ }, { "entryId": "tweet-1693760896856920167", - "sortIndex": "1739819648242679804", + "sortIndex": "1756309194643865597", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1157,16 +907,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -1175,7 +925,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -1208,7 +958,7 @@ }, "is_translatable": false, "views": { - "count": "5", + "count": "7", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -1245,7 +995,7 @@ "lang": "en", "quote_count": 0, "reply_count": 0, - "retweet_count": 136, + "retweet_count": 156, "retweeted": false, "user_id_str": "2244994945", "id_str": "1693760896856920167", @@ -1303,15 +1053,15 @@ }, "fast_followers_count": 0, "favourites_count": 4, - "followers_count": 5950729, + "followers_count": 5942248, "friends_count": 31, "has_custom_timelines": false, "is_translator": false, - "listed_count": 12243, + "listed_count": 12235, "location": "", "media_count": 9, "name": "API", - "normal_followers_count": 5950729, + "normal_followers_count": 5942248, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6253282/1690212094", @@ -1340,7 +1090,7 @@ }, "is_translatable": false, "views": { - "count": "160141", + "count": "180397", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -1376,7 +1126,7 @@ } }, "legacy": { - "bookmark_count": 44, + "bookmark_count": 47, "bookmarked": false, "created_at": "Mon Aug 21 23:02:48 +0000 2023", "conversation_id_str": "1693760591503266165", @@ -1391,14 +1141,14 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 419, + "favorite_count": 457, "favorited": false, "full_text": "For those still using our v1.1 API endpoints 🗣️\n\nAs part of our ongoing effort to modernize and transform our API platform, we are deprecating some of our v1.1 endpoints and asking you to migrate to the v2 equivalents. These deprecations will allow us to continue building support…", "is_quote_status": false, "lang": "en", - "quote_count": 18, - "reply_count": 103, - "retweet_count": 136, + "quote_count": 19, + "reply_count": 117, + "retweet_count": 156, "retweeted": false, "user_id_str": "6253282", "id_str": "1693760591503266165" @@ -1419,7 +1169,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -1427,7 +1177,7 @@ }, { "entryId": "tweet-1653492584176656384", - "sortIndex": "1739819648242679803", + "sortIndex": "1756309194643865596", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1487,16 +1237,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -1505,7 +1255,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -1538,12 +1288,12 @@ }, "is_translatable": false, "views": { - "count": "4124731", + "count": "4356892", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 151, + "bookmark_count": 161, "bookmarked": false, "created_at": "Tue May 02 20:12:07 +0000 2023", "conversation_id_str": "1653492584176656384", @@ -1558,14 +1308,14 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 2387, + "favorite_count": 2440, "favorited": false, "full_text": "One of the most important use cases for the Twitter API has always been public utility. Verified gov or publicly owned services who tweet weather alerts, transport updates and emergency notifications may use the API, for these critical purposes, for free.", "is_quote_status": false, "lang": "en", - "quote_count": 505, - "reply_count": 439, - "retweet_count": 577, + "quote_count": 511, + "reply_count": 445, + "retweet_count": 607, "retweeted": false, "user_id_str": "2244994945", "id_str": "1653492584176656384" @@ -1583,21 +1333,115 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "who-to-follow-1739819648242679814", - "sortIndex": "1739819648242679802", + "entryId": "who-to-follow-1756309194643865605", + "sortIndex": "1756309194643865595", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "who-to-follow-1739819648242679814-user-31311757", + "entryId": "who-to-follow-1756309194643865605-user-1373647114350129156", + "item": { + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjoxMzczNjQ3MTE0MzUwMTI5MTU2", + "rest_id": "1373647114350129156", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": false, + "profile_image_shape": "Circle", + "legacy": { + "can_dm": true, + "can_media_tag": false, + "created_at": "Sun Mar 21 14:46:22 +0000 2021", + "default_profile": true, + "default_profile_image": false, + "description": "Fictional Character. Deep crypto since 2013.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "t.me/+q3Ancyuc4_djN…", + "expanded_url": "https://t.me/+q3Ancyuc4_djNDM8", + "url": "https://t.co/BWopqCir42", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 11909, + "followers_count": 5618, + "friends_count": 102, + "has_custom_timelines": true, + "is_translator": false, + "listed_count": 16, + "location": "Sky", + "media_count": 998, + "name": "Crypto Hanuman", + "normal_followers_count": 5618, + "pinned_tweet_ids_str": [ + "1701228358250459313" + ], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1373647114350129156/1706369375", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1402103279123718146/iPAhfbqq_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "crypto_hanuman", + "statuses_count": 7960, + "translator_type": "none", + "url": "https://t.co/BWopqCir42", + "verified": false, + "want_retweets": false, + "withheld_in_countries": [] + }, + "professional": { + "rest_id": "1591742664059154433", + "professional_type": "Creator", + "category": [ + { + "id": 934, + "name": "Social Media Influencer", + "icon_name": "IconBriefcaseStroke" + } + ] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "suggest_who_to_follow", + "element": "user", + "details": { + "timelinesDetails": { + "injectionType": "WhoToFollow", + "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", + "sourceData": "DAABCgABeCrjKDwpqAAKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" + } + } + } + } + }, + { + "entryId": "who-to-follow-1756309194643865605-user-31311757", "item": { "itemContent": { "itemType": "TimelineUser", @@ -1637,23 +1481,23 @@ } }, "fast_followers_count": 0, - "favourites_count": 3422, - "followers_count": 4377847, + "favourites_count": 3428, + "followers_count": 4388307, "friends_count": 61, "has_custom_timelines": true, "is_translator": false, - "listed_count": 16948, + "listed_count": 16957, "location": "", - "media_count": 2959, + "media_count": 2972, "name": "Google Maps", - "normal_followers_count": 4377847, + "normal_followers_count": 4388307, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/31311757/1635803694", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1455292284958695424/SP3GFrPA_normal.jpg", "profile_interstitial_type": "", "screen_name": "googlemaps", - "statuses_count": 137780, + "statuses_count": 138875, "translator_type": "none", "url": "https://t.co/WEaDNM49BF", "verified": false, @@ -1672,14 +1516,14 @@ "timelinesDetails": { "injectionType": "WhoToFollow", "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", - "sourceData": "DAABCgABShQin1qaFMcKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" + "sourceData": "DAABCgABeCrjKDwpqAAKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" } } } } }, { - "entryId": "who-to-follow-1739819648242679814-user-1399766153053061121", + "entryId": "who-to-follow-1756309194643865605-user-33838201", "item": { "itemContent": { "itemType": "TimelineUser", @@ -1687,32 +1531,19 @@ "user_results": { "result": { "__typename": "User", - "id": "VXNlcjoxMzk5NzY2MTUzMDUzMDYxMTIx", - "rest_id": "1399766153053061121", - "affiliates_highlighted_label": { - "label": { - "url": { - "url": "https://twitter.com/X", - "urlType": "DeepLink" - }, - "badge": { - "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" - }, - "description": "X", - "userLabelType": "BusinessLabel", - "userLabelDisplayType": "Badge" - } - }, + "id": "VXNlcjozMzgzODIwMQ==", + "rest_id": "33838201", + "affiliates_highlighted_label": {}, "has_graduated_access": true, "is_blue_verified": true, "profile_image_shape": "Square", "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Tue Jun 01 16:34:27 +0000 2021", + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Apr 21 06:59:33 +0000 2009", "default_profile": true, "default_profile_image": false, - "description": "Subscribe to get your blue checkmark and access to new features, like Edit, long videos, 25k+ character long posts, bookmark folders, and more.", + "description": "Google AI is focused on bringing the benefits of AI to everyone. In conducting and applying our research, we advance the state-of-the-art in many domains.", "entities": { "description": { "urls": [] @@ -1720,9 +1551,9 @@ "url": { "urls": [ { - "display_url": "x.com/i/premium_sign…", - "expanded_url": "https://x.com/i/premium_sign_up", - "url": "https://t.co/zJi0ZdXW63", + "display_url": "research.google", + "expanded_url": "https://research.google", + "url": "https://t.co/WrL9sUqFHx", "indices": [ 0, 23 @@ -1732,25 +1563,25 @@ } }, "fast_followers_count": 0, - "favourites_count": 450, - "followers_count": 738411, - "friends_count": 1, - "has_custom_timelines": true, + "favourites_count": 6, + "followers_count": 2123046, + "friends_count": 23, + "has_custom_timelines": false, "is_translator": false, - "listed_count": 1263, - "location": "", - "media_count": 46, - "name": "Premium", - "normal_followers_count": 738411, + "listed_count": 23653, + "location": "Mountain View, CA", + "media_count": 830, + "name": "Google AI", + "normal_followers_count": 2123046, "pinned_tweet_ids_str": [], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1399766153053061121/1690180776", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683366300054069248/67v23AEj_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/33838201/1525739769", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/993649592422907904/yD7LkqU2_normal.jpg", "profile_interstitial_type": "", - "screen_name": "premium", - "statuses_count": 1186, + "screen_name": "GoogleAI", + "statuses_count": 2396, "translator_type": "none", - "url": "https://t.co/zJi0ZdXW63", + "url": "https://t.co/WrL9sUqFHx", "verified": false, "verified_type": "Business", "want_retweets": false, @@ -1767,88 +1598,7 @@ "timelinesDetails": { "injectionType": "WhoToFollow", "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", - "sourceData": "DAABCgABShQin1qaFMcKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" - } - } - } - } - }, - { - "entryId": "who-to-follow-1739819648242679814-user-1668100142", - "item": { - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjY4MTAwMTQy", - "rest_id": "1668100142", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Aug 13 15:27:51 +0000 2013", - "default_profile": false, - "default_profile_image": false, - "description": "We're a community of millions of people who are building new skills and getting new jobs together. A 501(c)(3) public charity. Tweets by @abbeyrenn.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "freecodecamp.org", - "expanded_url": "https://www.freecodecamp.org", - "url": "https://t.co/LHs4dxj9fJ", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 78086, - "followers_count": 836128, - "friends_count": 162, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "Just here on Earth... for now", - "media_count": 1214, - "name": "freeCodeCamp.org", - "normal_followers_count": 836128, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1668100142/1423791803", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1276770212927410176/qTgTIejk_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "freeCodeCamp", - "statuses_count": 30560, - "translator_type": "none", - "url": "https://t.co/LHs4dxj9fJ", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "suggest_who_to_follow", - "element": "user", - "details": { - "timelinesDetails": { - "injectionType": "WhoToFollow", - "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", - "sourceData": "DAABCgABShQin1qaFMcKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" + "sourceData": "DAABCgABeCrjKDwpqAAKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" } } } @@ -1875,21 +1625,21 @@ "timelinesDetails": { "injectionType": "WhoToFollow", "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", - "sourceData": "DAABCgABShQin1qaFMcKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" + "sourceData": "DAABCgABeCrjKDwpqAAKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819648242679815", - "sortIndex": "1739819648242679801", + "entryId": "profile-conversation-1756309194643865606", + "sortIndex": "1756309194643865594", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "profile-conversation-1739819648242679815-tweet-1649191520250245121", + "entryId": "profile-conversation-1756309194643865606-tweet-1649191520250245121", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -1947,16 +1697,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -1965,7 +1715,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -1998,12 +1748,12 @@ }, "is_translatable": false, "views": { - "count": "648826", + "count": "677119", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 67, + "bookmark_count": 69, "bookmarked": false, "created_at": "Thu Apr 20 23:21:13 +0000 2023", "conversation_id_str": "1649191520250245121", @@ -2018,14 +1768,14 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 431, + "favorite_count": 434, "favorited": false, "full_text": "Today, we are deprecating our Premium v1.1 API, including Premium Search and Account Activity API.", "is_quote_status": false, "lang": "en", - "quote_count": 113, - "reply_count": 98, - "retweet_count": 213, + "quote_count": 114, + "reply_count": 101, + "retweet_count": 221, "retweeted": false, "user_id_str": "2244994945", "id_str": "1649191520250245121" @@ -2043,14 +1793,14 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819648242679815-tweet-1649191522485817345", + "entryId": "profile-conversation-1756309194643865606-tweet-1649191522485817345", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -2108,16 +1858,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -2126,7 +1876,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -2162,7 +1912,7 @@ }, "is_translatable": false, "views": { - "count": "124231", + "count": "134381", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -2192,7 +1942,7 @@ ], "user_mentions": [] }, - "favorite_count": 128, + "favorite_count": 135, "favorited": false, "full_text": "If you are a Twitter developer with a commercial use case, we recommend that you apply for our Enterprise tier.\nEnterprise Search and Account Activity API continue to be available to developers on that Enterprise tier. \n\nApply here: https://t.co/A2FQP2DWuy", "in_reply_to_screen_name": "XDevelopers", @@ -2204,7 +1954,7 @@ "possibly_sensitive_editable": true, "quote_count": 14, "reply_count": 29, - "retweet_count": 37, + "retweet_count": 41, "retweeted": false, "user_id_str": "2244994945", "id_str": "1649191522485817345" @@ -2222,14 +1972,14 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819648242679815-tweet-1649191523697979392", + "entryId": "profile-conversation-1756309194643865606-tweet-1649191523697979392", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -2287,16 +2037,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -2305,7 +2055,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -2341,7 +2091,7 @@ }, "is_translatable": false, "views": { - "count": "95011", + "count": "104459", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -2371,7 +2121,7 @@ ], "user_mentions": [] }, - "favorite_count": 125, + "favorite_count": 130, "favorited": false, "full_text": "Thank you to those who have already migrated to our new API offerings. We hope you can continue to seamlessly use the Twitter API via our new access tiers. \n\nLearn more: https://t.co/iGTdPXTp2D", "in_reply_to_screen_name": "XDevelopers", @@ -2382,8 +2132,8 @@ "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 3, - "reply_count": 36, - "retweet_count": 35, + "reply_count": 37, + "retweet_count": 41, "retweeted": false, "user_id_str": "2244994945", "id_str": "1649191523697979392" @@ -2401,7 +2151,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -2425,7 +2175,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -2433,7 +2183,7 @@ }, { "entryId": "tweet-1643373950930661377", - "sortIndex": "1739819648242679800", + "sortIndex": "1756309194643865593", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -2493,16 +2243,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -2511,7 +2261,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -2548,19 +2298,19 @@ }, "previous_counts": { "bookmark_count": 10, - "favorite_count": 92, + "favorite_count": 89, "quote_count": 13, "reply_count": 29, - "retweet_count": 28 + "retweet_count": 27 }, "is_translatable": false, "views": { - "count": "231846", + "count": "242893", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 50, + "bookmark_count": 52, "bookmarked": false, "created_at": "Tue Apr 04 22:04:16 +0000 2023", "conversation_id_str": "1643373950930661377", @@ -2575,14 +2325,14 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 452, + "favorite_count": 462, "favorited": false, "full_text": "🚨 If your developer account application was under review over the last few months, we kindly ask you to re-apply if you are interested in subscribing to our new Twitter API Free or Basic plans. \n\nOur new self-service process should enable you to get access in no time! 🙏", "is_quote_status": false, "lang": "en", "quote_count": 47, - "reply_count": 191, - "retweet_count": 140, + "reply_count": 192, + "retweet_count": 149, "retweeted": false, "user_id_str": "2244994945", "id_str": "1643373950930661377" @@ -2600,21 +2350,21 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819648242679817", - "sortIndex": "1739819648242679799", + "entryId": "profile-conversation-1756309194643865608", + "sortIndex": "1756309194643865592", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "profile-conversation-1739819648242679817-tweet-1641222788911624192", + "entryId": "profile-conversation-1756309194643865608-tweet-1641222788911624192", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -2672,16 +2422,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -2690,7 +2440,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -2723,12 +2473,12 @@ }, "is_translatable": false, "views": { - "count": "300644", + "count": "310540", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 35, + "bookmark_count": 36, "bookmarked": false, "created_at": "Wed Mar 29 23:36:19 +0000 2023", "conversation_id_str": "1641222782594990080", @@ -2743,7 +2493,7 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 221, + "favorite_count": 220, "favorited": false, "full_text": "For Academia, we are looking at new ways to continue serving this community. In the meantime Free, Basic and Enterprise tiers are available for academics. Stay tuned to @TwitterDev to learn more.", "in_reply_to_screen_name": "XDevelopers", @@ -2751,9 +2501,9 @@ "in_reply_to_user_id_str": "2244994945", "is_quote_status": false, "lang": "en", - "quote_count": 69, + "quote_count": 71, "reply_count": 65, - "retweet_count": 114, + "retweet_count": 118, "retweeted": false, "user_id_str": "2244994945", "id_str": "1641222788911624192" @@ -2771,14 +2521,14 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819648242679817-tweet-1641222789901484034", + "entryId": "profile-conversation-1756309194643865608-tweet-1641222789901484034", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -2836,16 +2586,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -2854,7 +2604,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -2887,7 +2637,7 @@ }, "is_translatable": false, "views": { - "count": "296844", + "count": "305520", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -2915,8 +2665,8 @@ "in_reply_to_user_id_str": "2244994945", "is_quote_status": false, "lang": "en", - "quote_count": 26, - "reply_count": 93, + "quote_count": 27, + "reply_count": 95, "retweet_count": 86, "retweeted": false, "user_id_str": "2244994945", @@ -2935,7 +2685,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -2957,21 +2707,21 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819648242679818", - "sortIndex": "1739819648242679798", + "entryId": "profile-conversation-1756309194643865609", + "sortIndex": "1756309194643865591", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "profile-conversation-1739819648242679818-tweet-1641222786894135296", + "entryId": "profile-conversation-1756309194643865609-tweet-1641222786894135296", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -3029,16 +2779,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -3047,7 +2797,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -3080,12 +2830,12 @@ }, "is_translatable": false, "views": { - "count": "1075922", + "count": "1087911", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 77, + "bookmark_count": 76, "bookmarked": false, "created_at": "Wed Mar 29 23:36:19 +0000 2023", "conversation_id_str": "1641222782594990080", @@ -3100,7 +2850,7 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 523, + "favorite_count": 535, "favorited": false, "full_text": "Over the next 30 days, we will deprecate current access tiers such as Standard (v1.1), Essential (v2), Elevated (v2), and Premium so we recommend that you migrate to the new tiers as soon as possible for a smooth transition.", "in_reply_to_screen_name": "XDevelopers", @@ -3109,8 +2859,8 @@ "is_quote_status": false, "lang": "en", "quote_count": 251, - "reply_count": 84, - "retweet_count": 357, + "reply_count": 85, + "retweet_count": 358, "retweeted": false, "user_id_str": "2244994945", "id_str": "1641222786894135296" @@ -3128,14 +2878,14 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819648242679818-tweet-1641222787934355456", + "entryId": "profile-conversation-1756309194643865609-tweet-1641222787934355456", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -3193,16 +2943,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -3211,7 +2961,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -3244,12 +2994,12 @@ }, "is_translatable": false, "views": { - "count": "229522", + "count": "238425", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 6, + "bookmark_count": 7, "bookmarked": false, "created_at": "Wed Mar 29 23:36:19 +0000 2023", "conversation_id_str": "1641222782594990080", @@ -3264,7 +3014,7 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 158, + "favorite_count": 156, "favorited": false, "full_text": "Ads API will continue to be available at no additional cost to approved Twitter API developers, including developers on the new Free tier.", "in_reply_to_screen_name": "XDevelopers", @@ -3274,7 +3024,7 @@ "lang": "en", "quote_count": 5, "reply_count": 6, - "retweet_count": 76, + "retweet_count": 77, "retweeted": false, "user_id_str": "2244994945", "id_str": "1641222787934355456" @@ -3292,7 +3042,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -3313,21 +3063,21 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819648242679819", - "sortIndex": "1739819648242679797", + "entryId": "profile-conversation-1756309194643865610", + "sortIndex": "1756309194643865590", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "profile-conversation-1739819648242679819-tweet-1641222785702952961", + "entryId": "profile-conversation-1756309194643865610-tweet-1641222785702952961", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -3385,16 +3135,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -3403,7 +3153,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -3439,7 +3189,7 @@ }, "is_translatable": false, "views": { - "count": "245172", + "count": "253185", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -3469,7 +3219,7 @@ ], "user_mentions": [] }, - "favorite_count": 151, + "favorite_count": 150, "favorited": false, "full_text": "If you are a business or have any scaled commercial projects, we encourage you to apply for our Enterprise tier to get managed services, complete streams, and access that meets your specific needs. \n\nApply now: https://t.co/mBmGTnKYpA", "in_reply_to_screen_name": "XDevelopers", @@ -3480,8 +3230,8 @@ "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 10, - "reply_count": 15, - "retweet_count": 72, + "reply_count": 16, + "retweet_count": 74, "retweeted": false, "user_id_str": "2244994945", "id_str": "1641222785702952961" @@ -3499,7 +3249,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -3520,21 +3270,21 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819648242679820", - "sortIndex": "1739819648242679796", + "entryId": "profile-conversation-1756309194643865611", + "sortIndex": "1756309194643865589", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "profile-conversation-1739819648242679820-tweet-1641222782594990080", + "entryId": "profile-conversation-1756309194643865611-tweet-1641222782594990080", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -3592,16 +3342,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -3610,7 +3360,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -3643,12 +3393,12 @@ }, "is_translatable": false, "views": { - "count": "7266194", + "count": "7284698", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 433, + "bookmark_count": 429, "bookmarked": false, "created_at": "Wed Mar 29 23:36:18 +0000 2023", "conversation_id_str": "1641222782594990080", @@ -3663,14 +3413,14 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 1483, + "favorite_count": 1467, "favorited": false, "full_text": "Today we are launching our new Twitter API access tiers! We’re excited to share more details about our self-serve access. 🧵", "is_quote_status": false, "lang": "en", - "quote_count": 981, - "reply_count": 541, - "retweet_count": 1061, + "quote_count": 978, + "reply_count": 539, + "retweet_count": 1060, "retweeted": false, "user_id_str": "2244994945", "id_str": "1641222782594990080" @@ -3688,14 +3438,14 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819648242679820-tweet-1641222784599879680", + "entryId": "profile-conversation-1756309194643865611-tweet-1641222784599879680", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -3753,16 +3503,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -3771,7 +3521,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -3807,7 +3557,7 @@ }, "is_translatable": false, "views": { - "count": "1707656", + "count": "1728245", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -3837,7 +3587,7 @@ ], "user_mentions": [] }, - "favorite_count": 386, + "favorite_count": 381, "favorited": false, "full_text": "We are also launching a new Basic (v2) access for hobbyists with 10,000 GET/month and 50,000 POST/month, 2 app IDs, and Login with Twitter for $100/month. \n\nSubscribe now: https://t.co/AQci4FeIWf", "in_reply_to_screen_name": "XDevelopers", @@ -3847,9 +3597,9 @@ "lang": "en", "possibly_sensitive": false, "possibly_sensitive_editable": true, - "quote_count": 823, - "reply_count": 246, - "retweet_count": 472, + "quote_count": 821, + "reply_count": 245, + "retweet_count": 471, "retweeted": false, "user_id_str": "2244994945", "id_str": "1641222784599879680" @@ -3867,7 +3617,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -3888,21 +3638,21 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819648242679821", - "sortIndex": "1739819648242679795", + "entryId": "profile-conversation-1756309194643865612", + "sortIndex": "1756309194643865588", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "profile-conversation-1739819648242679821-tweet-1641222783601631233", + "entryId": "profile-conversation-1756309194643865612-tweet-1641222783601631233", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -3960,16 +3710,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -3978,7 +3728,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -4014,7 +3764,7 @@ }, "is_translatable": false, "views": { - "count": "1170808", + "count": "1179628", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -4044,7 +3794,7 @@ ], "user_mentions": [] }, - "favorite_count": 414, + "favorite_count": 411, "favorited": false, "full_text": "Introducing a new form of Free (v2) access for write-only use cases and those testing the Twitter API with 1,500 Tweets/month at the app level, media upload endpoints, and Login with Twitter. \n\nGet started: https://t.co/CqCRD3vbE5", "in_reply_to_screen_name": "XDevelopers", @@ -4056,7 +3806,7 @@ "possibly_sensitive_editable": true, "quote_count": 342, "reply_count": 64, - "retweet_count": 363, + "retweet_count": 362, "retweeted": false, "user_id_str": "2244994945", "id_str": "1641222783601631233" @@ -4074,7 +3824,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -4095,7 +3845,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -4103,7 +3853,7 @@ }, { "entryId": "tweet-1638262172798144545", - "sortIndex": "1739819648242679794", + "sortIndex": "1756309194643865587", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4163,16 +3913,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -4181,7 +3931,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -4214,7 +3964,8 @@ }, "is_translatable": false, "views": { - "state": "Enabled" + "count": "1", + "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { @@ -4259,7 +4010,7 @@ "lang": "en", "quote_count": 0, "reply_count": 0, - "retweet_count": 2535, + "retweet_count": 2510, "retweeted": false, "user_id_str": "2244994945", "id_str": "1638262172798144545", @@ -4327,22 +4078,22 @@ }, "fast_followers_count": 0, "favourites_count": 187, - "followers_count": 3684991, + "followers_count": 3699651, "friends_count": 135, "has_custom_timelines": true, "is_translator": false, - "listed_count": 8457, + "listed_count": 8494, "location": "X HQ", "media_count": 159, "name": "Safety", - "normal_followers_count": 3684991, + "normal_followers_count": 3699651, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/95731075/1690214538", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683507906891718658/ZS9jJfar_normal.jpg", "profile_interstitial_type": "", "screen_name": "Safety", - "statuses_count": 1559, + "statuses_count": 1575, "translator_type": "regular", "url": "https://t.co/jD9AXHS5UF", "verified": false, @@ -4364,12 +4115,12 @@ }, "is_translatable": false, "views": { - "count": "8081618", + "count": "8091201", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 403, + "bookmark_count": 405, "bookmarked": false, "created_at": "Tue Mar 21 19:06:15 +0000 2023", "conversation_id_str": "1638255718540165121", @@ -4394,14 +4145,14 @@ } ] }, - "favorite_count": 17259, + "favorite_count": 17158, "favorited": false, "full_text": "We recently partnered with @Sprinklr for an independent assessment of hate speech on Twitter, which we’ve been sharing data on publicly for several months.\n\nSprinklr’s AI-powered model found that the reach of hate speech on Twitter is even lower than our own model quantified 🧵", "is_quote_status": false, "lang": "en", "quote_count": 508, - "reply_count": 1929, - "retweet_count": 2535, + "reply_count": 1916, + "retweet_count": 2510, "retweeted": false, "user_id_str": "95731075", "id_str": "1638255718540165121" @@ -4422,29 +4173,29 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "cursor-top-1739819648242679809", - "sortIndex": "1739819648242679809", + "entryId": "cursor-top-1756309194643865601", + "sortIndex": "1756309194643865601", "content": { "entryType": "TimelineTimelineCursor", "__typename": "TimelineTimelineCursor", - "value": "DAABCgABGCUUwIrAJxEKAAIYFToVz9rAgAgAAwAAAAEAAA", + "value": "DAABCgABGF-p6D6AJxEKAAIYFToVz9rAgAgAAwAAAAEAAA", "cursorType": "Top" } }, { - "entryId": "cursor-bottom-1739819648242679793", - "sortIndex": "1739819648242679793", + "entryId": "cursor-bottom-1756309194643865586", + "sortIndex": "1756309194643865586", "content": { "entryType": "TimelineTimelineCursor", "__typename": "TimelineTimelineCursor", - "value": "DAABCgABGCUUwIq__-8KAAIWvEbEKpfQIQgAAwAAAAIAAA", + "value": "DAABCgABGF-p6D5___AKAAIWvEbEKpfQIQgAAwAAAAIAAA", "cursorType": "Bottom" } } diff --git a/tests/mocked-data/user_tweets_and_replies_raw.json b/tests/mocked-data/raw_user_tweets_and_replies.json similarity index 88% rename from tests/mocked-data/user_tweets_and_replies_raw.json rename to tests/mocked-data/raw_user_tweets_and_replies.json index d207d0d..801641d 100644 --- a/tests/mocked-data/user_tweets_and_replies_raw.json +++ b/tests/mocked-data/raw_user_tweets_and_replies.json @@ -13,7 +13,7 @@ "type": "TimelinePinEntry", "entry": { "entryId": "tweet-1661790253886177280", - "sortIndex": "1739819653837881344", + "sortIndex": "1756309200230678528", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -73,16 +73,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -91,7 +91,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -124,7 +124,7 @@ }, "is_translatable": false, "views": { - "count": "726001", + "count": "768636", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -160,7 +160,7 @@ } }, "legacy": { - "bookmark_count": 171, + "bookmark_count": 175, "bookmarked": false, "created_at": "Thu May 25 17:44:05 +0000 2023", "conversation_id_str": "1661790253886177280", @@ -175,14 +175,14 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 912, + "favorite_count": 1112, "favorited": false, "full_text": "📣 Calling all start-ups 📣\n\nToday we are launching our new access tier, Twitter API Pro!\n\nExperiment, build, and scale your business with 1M Tweets per month, including our powerful real-time Filtered/Stream and Full Archive Search endpoints. We look forward to seeing what you…", "is_quote_status": false, "lang": "en", - "quote_count": 192, - "reply_count": 440, - "retweet_count": 247, + "quote_count": 193, + "reply_count": 496, + "retweet_count": 330, "retweeted": false, "user_id_str": "2244994945", "id_str": "1661790253886177280" @@ -208,7 +208,7 @@ "entries": [ { "entryId": "tweet-1735357096777138304", - "sortIndex": "1739819653837881343", + "sortIndex": "1756309200230678527", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -268,16 +268,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -286,7 +286,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -318,7 +318,7 @@ "image_value": { "height": 144, "width": 144, - "url": "https://pbs.twimg.com/card_img/1735721389066178560/9I28EIMh?format=png&name=144x144_2" + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=144x144_2" }, "type": "IMAGE" } @@ -333,7 +333,7 @@ { "key": "domain", "value": { - "string_value": "twittercommunity.com", + "string_value": "devcommunity.x.com", "type": "STRING" } }, @@ -343,7 +343,7 @@ "image_value": { "height": 420, "width": 420, - "url": "https://pbs.twimg.com/card_img/1735721389066178560/9I28EIMh?format=png&name=420x420_2" + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=420x420_2" }, "type": "IMAGE" } @@ -354,7 +354,7 @@ "image_value": { "height": 2453, "width": 2400, - "url": "https://pbs.twimg.com/card_img/1735721389066178560/9I28EIMh?format=png&name=orig" + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=orig" }, "type": "IMAGE" } @@ -365,7 +365,7 @@ "image_value": { "height": 100, "width": 100, - "url": "https://pbs.twimg.com/card_img/1735721389066178560/9I28EIMh?format=png&name=100x100_2" + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=100x100_2" }, "type": "IMAGE" } @@ -376,7 +376,7 @@ "image_value": { "height": 2048, "width": 2004, - "url": "https://pbs.twimg.com/card_img/1735721389066178560/9I28EIMh?format=png&name=2048x2048_2_exp" + "url": "https://pbs.twimg.com/card_img/1753560999901245440/PtCKDy3C?format=png&name=2048x2048_2_exp" }, "type": "IMAGE" } @@ -385,7 +385,7 @@ "key": "vanity_url", "value": { "scribe_key": "vanity_url", - "string_value": "twittercommunity.com", + "string_value": "devcommunity.x.com", "type": "STRING" } }, @@ -461,12 +461,12 @@ }, "is_translatable": false, "views": { - "count": "35490", + "count": "67511", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 23, + "bookmark_count": 28, "bookmarked": false, "created_at": "Thu Dec 14 17:52:27 +0000 2023", "conversation_id_str": "1735357096777138304", @@ -491,16 +491,16 @@ ], "user_mentions": [] }, - "favorite_count": 200, + "favorite_count": 323, "favorited": false, "full_text": "Users search and Trends lookup endpoints are now available in X API v2 -- exclusively on Pro & Enterprise! \n\nWant to learn more about what these endpoints can do, visit here: https://t.co/iWVHGMWojH", "is_quote_status": false, "lang": "en", "possibly_sensitive": false, "possibly_sensitive_editable": true, - "quote_count": 13, - "reply_count": 21, - "retweet_count": 73, + "quote_count": 16, + "reply_count": 56, + "retweet_count": 107, "retweeted": false, "user_id_str": "2244994945", "id_str": "1735357096777138304" @@ -515,273 +515,21 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "promoted-tweet-1737774926524805315-147067263d8e4856", - "sortIndex": "1739819653837881342", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1737774926524805315", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDU2MDY3MjY=", - "rest_id": "145606726", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Square", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed May 19 11:27:05 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Al meer dan 135 jaar werken we bij Auping aan de beste manieren om uit te rusten. Wij geloven dat een uitgeruste wereld een betere wereld is. Auping, met liefde", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "auping.nl", - "expanded_url": "http://www.auping.nl", - "url": "https://t.co/SfjXDWhLqf", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 2214, - "followers_count": 2380, - "friends_count": 455, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 25, - "location": "Deventer, Holland", - "media_count": 275, - "name": "Koninklijke Auping", - "normal_followers_count": 2380, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/145606726/1536246575", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1037719591743574016/MeDbotyW_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "AupingNL", - "statuses_count": 2154, - "translator_type": "none", - "url": "https://t.co/SfjXDWhLqf", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "card": { - "rest_id": "card://1737475763622862849", - "legacy": { - "binding_values": [ - { - "key": "unified_card", - "value": { - "string_value": "{\"type\":\"image_website\",\"component_objects\":{\"details_1\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"Wintersale 15% voordeel\",\"is_rtl\":false},\"subtitle\":{\"content\":\"auping.com\",\"is_rtl\":false},\"destination\":\"browser_1\"}},\"media_1\":{\"type\":\"media\",\"data\":{\"id\":\"3_1736716790959349760\",\"destination\":\"browser_1\"}}},\"destination_objects\":{\"browser_1\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://www.auping.com/nl/promoties/warme-winter-weken-2023?utm_source=soc_pr_Twitter&utm_medium=smc&utm_campaign=au-nl-bd___twitter&utm_content=35178489_44782633&utm_id=28792\",\"vanity\":\"auping.com\"}}}},\"components\":[\"media_1\",\"details_1\"],\"media_entities\":{\"3_1736716790959349760\":{\"id\":1736716790959349760,\"id_str\":\"1736716790959349760\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/media/GBoOuEiWoAAvrzG.png\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800,\"focus_rects\":[{\"x\":0,\"y\":116,\"h\":448,\"w\":800},{\"x\":0,\"y\":0,\"h\":800,\"w\":800},{\"x\":98,\"y\":0,\"h\":800,\"w\":702},{\"x\":400,\"y\":0,\"h\":800,\"w\":400},{\"x\":0,\"y\":0,\"h\":800,\"w\":800}]},\"sizes\":{\"large\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"medium\":{\"w\":800,\"h\":800,\"resize\":\"fit\"},\"thumb\":{\"w\":150,\"h\":150,\"resize\":\"crop\"},\"small\":{\"w\":680,\"h\":680,\"resize\":\"fit\"}},\"source_user_id\":145606726,\"source_user_id_str\":\"145606726\",\"media_key\":\"3_1736716790959349760\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":252,\"green\":254,\"blue\":255},\"percentage\":74.73},{\"rgb\":{\"red\":67,\"green\":76,\"blue\":93},\"percentage\":17.76},{\"rgb\":{\"red\":0,\"green\":83,\"blue\":159},\"percentage\":2.77},{\"rgb\":{\"red\":199,\"green\":64,\"blue\":27},\"percentage\":1.56},{\"rgb\":{\"red\":230,\"green\":173,\"blue\":158},\"percentage\":0.65}]}},\"ttl\":-1}}}}}", - "type": "STRING" - } - }, - { - "key": "card_url", - "value": { - "scribe_key": "card_url", - "string_value": "https://twitter.com", - "type": "STRING" - } - } - ], - "card_platform": { - "platform": { - "audience": { - "name": "production" - }, - "device": { - "name": "Swift", - "version": "12" - } - } - }, - "name": "unified_card", - "url": "card://1737475763622862849", - "user_refs_results": [] - } - }, - "unmention_data": {}, - "unified_card": { - "card_fetch_state": "NoCard" - }, - "edit_control": { - "edit_tweet_ids": [ - "1737774926524805315" - ], - "editable_until_msecs": "1703156403000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": true, - "views": { - "count": "242465", - "state": "EnabledWithCount" - }, - "source": "advertiser-interface", - "legacy": { - "bookmark_count": 2, - "bookmarked": false, - "created_at": "Thu Dec 21 10:00:03 +0000 2023", - "conversation_id_str": "1737774926524805315", - "display_text_range": [ - 0, - 99 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 9, - "favorited": false, - "full_text": "Profiteer tijdens de Warme Winter Weken bij Auping! Nu 15% voordeel op bijna ons hele assortiment 💙", - "is_quote_status": false, - "lang": "nl", - "possibly_sensitive": false, - "possibly_sensitive_editable": true, - "quote_count": 0, - "reply_count": 1, - "retweet_count": 0, - "retweeted": false, - "scopes": { - "followers": false - }, - "user_id_str": "145606726", - "id_str": "1737774926524805315" - } - } - }, - "tweetDisplayType": "Tweet", - "promotedMetadata": { - "advertiser_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDU2MDY3MjY=", - "rest_id": "145606726", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Square", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Wed May 19 11:27:05 +0000 2010", - "default_profile": false, - "default_profile_image": false, - "description": "Al meer dan 135 jaar werken we bij Auping aan de beste manieren om uit te rusten. Wij geloven dat een uitgeruste wereld een betere wereld is. Auping, met liefde", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "auping.nl", - "expanded_url": "http://www.auping.nl", - "url": "https://t.co/SfjXDWhLqf", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 2214, - "followers_count": 2380, - "friends_count": 455, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 25, - "location": "Deventer, Holland", - "media_count": 275, - "name": "Koninklijke Auping", - "normal_followers_count": 2380, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/145606726/1536246575", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1037719591743574016/MeDbotyW_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "AupingNL", - "statuses_count": 2154, - "translator_type": "none", - "url": "https://t.co/SfjXDWhLqf", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "adMetadataContainer": { - "renderLegacyWebsiteCard": false - }, - "disclosureType": "NoDisclosure", - "experimentValues": [ - { - "key": "website_card_variation", - "value": "0" - } - ], - "impressionId": "147067263d8e4856", - "impressionString": "147067263d8e4856", - "clickTrackingInfo": { - "urlParams": [ - { - "key": "twclid", - "value": "2-75wggm82qm20e21rvkyteyn71" - } - ] - } - } - } - } - }, - { - "entryId": "profile-conversation-1739819653837881347", - "sortIndex": "1739819653837881341", + "entryId": "profile-conversation-1756309200230678530", + "sortIndex": "1756309200230678526", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "profile-conversation-1739819653837881347-tweet-1724387618761351637", + "entryId": "profile-conversation-1756309200230678530-tweet-1724387618761351637", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -823,25 +571,25 @@ } }, "fast_followers_count": 0, - "favourites_count": 39370, - "followers_count": 264890, - "friends_count": 4015, + "favourites_count": 41321, + "followers_count": 271461, + "friends_count": 4109, "has_custom_timelines": true, "is_translator": false, - "listed_count": 1412, + "listed_count": 1470, "location": "X HQ", - "media_count": 3116, + "media_count": 3285, "name": "X News Daily", - "normal_followers_count": 264890, + "normal_followers_count": 271461, "pinned_tweet_ids_str": [ "1682849715862249472" ], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/752567226/1690399864", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/752567226/1704781546", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1515124606583152648/4bZaW28-_normal.jpg", "profile_interstitial_type": "", "screen_name": "xDaily", - "statuses_count": 11088, + "statuses_count": 11553, "translator_type": "none", "verified": false, "want_retweets": false, @@ -873,7 +621,7 @@ }, "is_translatable": false, "views": { - "count": "76937", + "count": "77227", "state": "EnabledWithCount" }, "source": "Typefully", @@ -1075,7 +823,7 @@ } ] }, - "favorite_count": 725, + "favorite_count": 711, "favorited": false, "full_text": "NEWS: 𝕏's integration with Playstation consoles has now gone offline.\n\nIt seems whatever issue Sony has with X hasn't been resolved yet, though Elon stated last week he would look into the problem. https://t.co/BaoAhjRdDB", "is_quote_status": false, @@ -1083,8 +831,8 @@ "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 31, - "reply_count": 108, - "retweet_count": 122, + "reply_count": 106, + "retweet_count": 117, "retweeted": false, "user_id_str": "752567226", "id_str": "1724387618761351637" @@ -1099,14 +847,14 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881347-tweet-1724511614206898410", + "entryId": "profile-conversation-1756309200230678530-tweet-1724511614206898410", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -1164,16 +912,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -1182,7 +930,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -1215,12 +963,12 @@ }, "is_translatable": false, "views": { - "count": "1186823", + "count": "1187912", "state": "EnabledWithCount" }, "source": "Twitter for iPhone", "legacy": { - "bookmark_count": 44, + "bookmark_count": 43, "bookmarked": false, "created_at": "Tue Nov 14 19:36:23 +0000 2023", "conversation_id_str": "1724387618761351637", @@ -1245,7 +993,7 @@ } ] }, - "favorite_count": 895, + "favorite_count": 881, "favorited": false, "full_text": "@xDaily To clarify, this is a legacy integration. We've reached out to explore new integrations including live-streaming. Stay tuned!", "in_reply_to_screen_name": "xDaily", @@ -1255,7 +1003,7 @@ "lang": "en", "quote_count": 99, "reply_count": 61, - "retweet_count": 138, + "retweet_count": 135, "retweeted": false, "user_id_str": "2244994945", "id_str": "1724511614206898410" @@ -1270,7 +1018,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -1292,7 +1040,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -1300,7 +1048,7 @@ }, { "entryId": "tweet-1720506615714213927", - "sortIndex": "1739819653837881340", + "sortIndex": "1756309200230678525", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1360,16 +1108,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -1378,7 +1126,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -1410,7 +1158,7 @@ "image_value": { "height": 144, "width": 144, - "url": "https://pbs.twimg.com/card_img/1736927397809680384/oCzqyq9R?format=png&name=144x144_2" + "url": "https://pbs.twimg.com/card_img/1756011018747056128/5ZwQwL1k?format=png&name=144x144_2" }, "type": "IMAGE" } @@ -1425,7 +1173,7 @@ { "key": "domain", "value": { - "string_value": "twittercommunity.com", + "string_value": "devcommunity.x.com", "type": "STRING" } }, @@ -1435,7 +1183,7 @@ "image_value": { "height": 356, "width": 356, - "url": "https://pbs.twimg.com/card_img/1736927397809680384/oCzqyq9R?format=png&name=420x420_2" + "url": "https://pbs.twimg.com/card_img/1756011018747056128/5ZwQwL1k?format=png&name=420x420_2" }, "type": "IMAGE" } @@ -1446,7 +1194,7 @@ "image_value": { "height": 356, "width": 1024, - "url": "https://pbs.twimg.com/card_img/1736927397809680384/oCzqyq9R?format=png&name=orig" + "url": "https://pbs.twimg.com/card_img/1756011018747056128/5ZwQwL1k?format=png&name=orig" }, "type": "IMAGE" } @@ -1457,7 +1205,7 @@ "image_value": { "height": 100, "width": 100, - "url": "https://pbs.twimg.com/card_img/1736927397809680384/oCzqyq9R?format=png&name=100x100_2" + "url": "https://pbs.twimg.com/card_img/1756011018747056128/5ZwQwL1k?format=png&name=100x100_2" }, "type": "IMAGE" } @@ -1468,7 +1216,7 @@ "image_value": { "height": 356, "width": 1024, - "url": "https://pbs.twimg.com/card_img/1736927397809680384/oCzqyq9R?format=png&name=2048x2048_2_exp" + "url": "https://pbs.twimg.com/card_img/1756011018747056128/5ZwQwL1k?format=png&name=2048x2048_2_exp" }, "type": "IMAGE" } @@ -1477,7 +1225,7 @@ "key": "vanity_url", "value": { "scribe_key": "vanity_url", - "string_value": "twittercommunity.com", + "string_value": "devcommunity.x.com", "type": "STRING" } }, @@ -1553,12 +1301,12 @@ }, "is_translatable": false, "views": { - "count": "110270", + "count": "127103", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 57, + "bookmark_count": 58, "bookmarked": false, "created_at": "Fri Nov 03 18:21:57 +0000 2023", "conversation_id_str": "1720506615714213927", @@ -1583,7 +1331,7 @@ ], "user_mentions": [] }, - "favorite_count": 381, + "favorite_count": 436, "favorited": false, "full_text": "You can now monitor your usage programmatically using the new Usage endpoint in the X API v2 🎉\n\nWe are working on new features that will be launched in the near future. Stay tuned! https://t.co/F3TbD440qA", "is_quote_status": false, @@ -1591,8 +1339,8 @@ "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 18, - "reply_count": 58, - "retweet_count": 72, + "reply_count": 68, + "retweet_count": 90, "retweeted": false, "user_id_str": "2244994945", "id_str": "1720506615714213927" @@ -1607,7 +1355,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -1615,7 +1363,7 @@ }, { "entryId": "tweet-1693760896856920167", - "sortIndex": "1739819653837881339", + "sortIndex": "1756309200230678524", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -1675,16 +1423,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -1693,7 +1441,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -1726,7 +1474,7 @@ }, "is_translatable": false, "views": { - "count": "5", + "count": "7", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -1763,7 +1511,7 @@ "lang": "en", "quote_count": 0, "reply_count": 0, - "retweet_count": 136, + "retweet_count": 156, "retweeted": false, "user_id_str": "2244994945", "id_str": "1693760896856920167", @@ -1821,15 +1569,15 @@ }, "fast_followers_count": 0, "favourites_count": 4, - "followers_count": 5950729, + "followers_count": 5942248, "friends_count": 31, "has_custom_timelines": false, "is_translator": false, - "listed_count": 12243, + "listed_count": 12235, "location": "", "media_count": 9, "name": "API", - "normal_followers_count": 5950729, + "normal_followers_count": 5942248, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/6253282/1690212094", @@ -1858,7 +1606,7 @@ }, "is_translatable": false, "views": { - "count": "160141", + "count": "180397", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -1894,7 +1642,7 @@ } }, "legacy": { - "bookmark_count": 44, + "bookmark_count": 47, "bookmarked": false, "created_at": "Mon Aug 21 23:02:48 +0000 2023", "conversation_id_str": "1693760591503266165", @@ -1909,14 +1657,14 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 419, + "favorite_count": 457, "favorited": false, "full_text": "For those still using our v1.1 API endpoints 🗣️\n\nAs part of our ongoing effort to modernize and transform our API platform, we are deprecating some of our v1.1 endpoints and asking you to migrate to the v2 equivalents. These deprecations will allow us to continue building support…", "is_quote_status": false, "lang": "en", - "quote_count": 18, - "reply_count": 103, - "retweet_count": 136, + "quote_count": 19, + "reply_count": 117, + "retweet_count": 156, "retweeted": false, "user_id_str": "6253282", "id_str": "1693760591503266165" @@ -1934,21 +1682,21 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "who-to-follow-1739819653837881350", - "sortIndex": "1739819653837881338", + "entryId": "who-to-follow-1756309200230678533", + "sortIndex": "1756309200230678523", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "who-to-follow-1739819653837881350-user-31311757", + "entryId": "who-to-follow-1756309200230678533-user-31311757", "item": { "itemContent": { "itemType": "TimelineUser", @@ -1988,23 +1736,23 @@ } }, "fast_followers_count": 0, - "favourites_count": 3422, - "followers_count": 4377847, + "favourites_count": 3428, + "followers_count": 4388307, "friends_count": 61, "has_custom_timelines": true, "is_translator": false, - "listed_count": 16948, + "listed_count": 16957, "location": "", - "media_count": 2959, + "media_count": 2972, "name": "Google Maps", - "normal_followers_count": 4377847, + "normal_followers_count": 4388307, "pinned_tweet_ids_str": [], "possibly_sensitive": false, "profile_banner_url": "https://pbs.twimg.com/profile_banners/31311757/1635803694", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1455292284958695424/SP3GFrPA_normal.jpg", "profile_interstitial_type": "", "screen_name": "googlemaps", - "statuses_count": 137780, + "statuses_count": 138875, "translator_type": "none", "url": "https://t.co/WEaDNM49BF", "verified": false, @@ -2023,109 +1771,14 @@ "timelinesDetails": { "injectionType": "WhoToFollow", "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", - "sourceData": "DAABCgABCTc9FFcxhJsKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" + "sourceData": "DAABCgABknTTtHc2a3YKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" } } } } }, { - "entryId": "who-to-follow-1739819653837881350-user-1399766153053061121", - "item": { - "itemContent": { - "itemType": "TimelineUser", - "__typename": "TimelineUser", - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxMzk5NzY2MTUzMDUzMDYxMTIx", - "rest_id": "1399766153053061121", - "affiliates_highlighted_label": { - "label": { - "url": { - "url": "https://twitter.com/X", - "urlType": "DeepLink" - }, - "badge": { - "url": "https://pbs.twimg.com/profile_images/1683899100922511378/5lY42eHs_bigger.jpg" - }, - "description": "X", - "userLabelType": "BusinessLabel", - "userLabelDisplayType": "Badge" - } - }, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Square", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Tue Jun 01 16:34:27 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "Subscribe to get your blue checkmark and access to new features, like Edit, long videos, 25k+ character long posts, bookmark folders, and more.", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "x.com/i/premium_sign…", - "expanded_url": "https://x.com/i/premium_sign_up", - "url": "https://t.co/zJi0ZdXW63", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 450, - "followers_count": 738411, - "friends_count": 1, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 1263, - "location": "", - "media_count": 46, - "name": "Premium", - "normal_followers_count": 738411, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1399766153053061121/1690180776", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683366300054069248/67v23AEj_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "premium", - "statuses_count": 1186, - "translator_type": "none", - "url": "https://t.co/zJi0ZdXW63", - "verified": false, - "verified_type": "Business", - "want_retweets": false, - "withheld_in_countries": [] - } - } - }, - "userDisplayType": "User" - }, - "clientEventInfo": { - "component": "suggest_who_to_follow", - "element": "user", - "details": { - "timelinesDetails": { - "injectionType": "WhoToFollow", - "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", - "sourceData": "DAABCgABCTc9FFcxhJsKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" - } - } - } - } - }, - { - "entryId": "who-to-follow-1739819653837881350-user-3282859598", + "entryId": "who-to-follow-1756309200230678533-user-3282859598", "item": { "itemContent": { "itemType": "TimelineUser", @@ -2165,16 +1818,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 8626, - "followers_count": 12879779, + "favourites_count": 8604, + "followers_count": 12845525, "friends_count": 16, "has_custom_timelines": true, "is_translator": false, - "listed_count": 3358, + "listed_count": 3378, "location": "", "media_count": 2684, "name": "Creators", - "normal_followers_count": 12879779, + "normal_followers_count": 12845525, "pinned_tweet_ids_str": [ "1559300999944314884" ], @@ -2183,7 +1836,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683364393323577345/uUWH_TiG_normal.jpg", "profile_interstitial_type": "", "screen_name": "XCreators", - "statuses_count": 8963, + "statuses_count": 8957, "translator_type": "none", "verified": false, "verified_type": "Business", @@ -2201,7 +1854,89 @@ "timelinesDetails": { "injectionType": "WhoToFollow", "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", - "sourceData": "DAABCgABCTc9FFcxhJsKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" + "sourceData": "DAABCgABknTTtHc2a3YKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" + } + } + } + } + }, + { + "entryId": "who-to-follow-1756309200230678533-user-33838201", + "item": { + "itemContent": { + "itemType": "TimelineUser", + "__typename": "TimelineUser", + "user_results": { + "result": { + "__typename": "User", + "id": "VXNlcjozMzgzODIwMQ==", + "rest_id": "33838201", + "affiliates_highlighted_label": {}, + "has_graduated_access": true, + "is_blue_verified": true, + "profile_image_shape": "Square", + "legacy": { + "can_dm": false, + "can_media_tag": true, + "created_at": "Tue Apr 21 06:59:33 +0000 2009", + "default_profile": true, + "default_profile_image": false, + "description": "Google AI is focused on bringing the benefits of AI to everyone. In conducting and applying our research, we advance the state-of-the-art in many domains.", + "entities": { + "description": { + "urls": [] + }, + "url": { + "urls": [ + { + "display_url": "research.google", + "expanded_url": "https://research.google", + "url": "https://t.co/WrL9sUqFHx", + "indices": [ + 0, + 23 + ] + } + ] + } + }, + "fast_followers_count": 0, + "favourites_count": 6, + "followers_count": 2123046, + "friends_count": 23, + "has_custom_timelines": false, + "is_translator": false, + "listed_count": 23653, + "location": "Mountain View, CA", + "media_count": 830, + "name": "Google AI", + "normal_followers_count": 2123046, + "pinned_tweet_ids_str": [], + "possibly_sensitive": false, + "profile_banner_url": "https://pbs.twimg.com/profile_banners/33838201/1525739769", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/993649592422907904/yD7LkqU2_normal.jpg", + "profile_interstitial_type": "", + "screen_name": "GoogleAI", + "statuses_count": 2396, + "translator_type": "none", + "url": "https://t.co/WrL9sUqFHx", + "verified": false, + "verified_type": "Business", + "want_retweets": false, + "withheld_in_countries": [] + } + } + }, + "userDisplayType": "User" + }, + "clientEventInfo": { + "component": "suggest_who_to_follow", + "element": "user", + "details": { + "timelinesDetails": { + "injectionType": "WhoToFollow", + "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", + "sourceData": "DAABCgABknTTtHc2a3YKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" } } } @@ -2228,21 +1963,21 @@ "timelinesDetails": { "injectionType": "WhoToFollow", "controllerData": "DAACDAACDAABCgABAAAAAAAAAAgAAAAA", - "sourceData": "DAABCgABCTc9FFcxhJsKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" + "sourceData": "DAABCgABknTTtHc2a3YKAAIAAAAAAAAAAAAIAAIAAACDCAADAAAAAgwABQwAAgwAAgwAAQoAAQAAAAAAAAAIAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881351", - "sortIndex": "1739819653837881337", + "entryId": "profile-conversation-1756309200230678534", + "sortIndex": "1756309200230678522", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "profile-conversation-1739819653837881351-tweet-1676414058583703552", + "entryId": "profile-conversation-1756309200230678534-tweet-1676414058583703552", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -2297,16 +2032,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 8069, - "followers_count": 95454, + "favourites_count": 8223, + "followers_count": 97442, "friends_count": 232, "has_custom_timelines": true, "is_translator": false, - "listed_count": 1431, + "listed_count": 1445, "location": "Boulder Colorado", - "media_count": 25554, + "media_count": 25817, "name": "NWS Boulder", - "normal_followers_count": 95454, + "normal_followers_count": 97442, "pinned_tweet_ids_str": [ "1187794881386864641" ], @@ -2315,7 +2050,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/882143296239398912/tA_fYbDJ_normal.jpg", "profile_interstitial_type": "", "screen_name": "NWSBoulder", - "statuses_count": 38910, + "statuses_count": 39299, "translator_type": "none", "url": "https://t.co/RxMX2TvYHZ", "verified": false, @@ -2340,12 +2075,12 @@ }, "is_translatable": false, "views": { - "count": "500325", + "count": "500854", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 29, + "bookmark_count": 30, "bookmarked": false, "created_at": "Wed Jul 05 02:13:52 +0000 2023", "conversation_id_str": "1676414058583703552", @@ -2378,16 +2113,16 @@ ], "user_mentions": [] }, - "favorite_count": 1318, + "favorite_count": 1317, "favorited": false, "full_text": "Due to issues with Twitter rate limits, we are unable to access most tweets at this time. Send reports to our other social media accounts or direct through our email/phone lines. If you are a storm spotter, head to https://t.co/C24UXkYRg3 for additional info. #cowx", "is_quote_status": false, "lang": "en", "possibly_sensitive": false, "possibly_sensitive_editable": true, - "quote_count": 249, - "reply_count": 91, - "retweet_count": 391, + "quote_count": 246, + "reply_count": 89, + "retweet_count": 387, "retweeted": false, "user_id_str": "598443842", "id_str": "1676414058583703552" @@ -2402,14 +2137,14 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881351-tweet-1676650097566949377", + "entryId": "profile-conversation-1756309200230678534-tweet-1676650097566949377", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -2467,16 +2202,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -2485,7 +2220,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -2518,7 +2253,7 @@ }, "is_translatable": false, "views": { - "count": "2658", + "count": "2734", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -2573,7 +2308,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -2595,21 +2330,21 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881352", - "sortIndex": "1739819653837881336", + "entryId": "profile-conversation-1756309200230678535", + "sortIndex": "1756309200230678521", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "profile-conversation-1739819653837881352-tweet-1674123761824550920", + "entryId": "profile-conversation-1756309200230678535-tweet-1674123761824550920", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -2651,25 +2386,25 @@ } }, "fast_followers_count": 0, - "favourites_count": 39370, - "followers_count": 264890, - "friends_count": 4015, + "favourites_count": 41321, + "followers_count": 271461, + "friends_count": 4109, "has_custom_timelines": true, "is_translator": false, - "listed_count": 1412, + "listed_count": 1470, "location": "X HQ", - "media_count": 3116, + "media_count": 3285, "name": "X News Daily", - "normal_followers_count": 264890, + "normal_followers_count": 271461, "pinned_tweet_ids_str": [ "1682849715862249472" ], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/752567226/1690399864", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/752567226/1704781546", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1515124606583152648/4bZaW28-_normal.jpg", "profile_interstitial_type": "", "screen_name": "xDaily", - "statuses_count": 11088, + "statuses_count": 11553, "translator_type": "none", "verified": false, "want_retweets": false, @@ -2701,7 +2436,7 @@ }, "is_translatable": false, "views": { - "count": "142011", + "count": "154795", "state": "EnabledWithCount" }, "source": "TweetDeck", @@ -2903,7 +2638,7 @@ } ] }, - "favorite_count": 426, + "favorite_count": 422, "favorited": false, "full_text": "NEWS: The Twitter team are in the process of fixing API issues following the transition to the new API version. \n\nThis resulted in the incorrect suspensions of a number of low-volume automated accounts in the last few days. \n\nSome accounts affected have already been restored. https://t.co/oJxyIaWN9n", "is_quote_status": false, @@ -2912,7 +2647,7 @@ "possibly_sensitive_editable": true, "quote_count": 17, "reply_count": 50, - "retweet_count": 86, + "retweet_count": 84, "retweeted": false, "user_id_str": "752567226", "id_str": "1674123761824550920" @@ -2927,14 +2662,14 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881352-tweet-1674125213968093184", + "entryId": "profile-conversation-1756309200230678535-tweet-1674125213968093184", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -2976,25 +2711,25 @@ } }, "fast_followers_count": 0, - "favourites_count": 39370, - "followers_count": 264890, - "friends_count": 4015, + "favourites_count": 41321, + "followers_count": 271461, + "friends_count": 4109, "has_custom_timelines": true, "is_translator": false, - "listed_count": 1412, + "listed_count": 1470, "location": "X HQ", - "media_count": 3116, + "media_count": 3285, "name": "X News Daily", - "normal_followers_count": 264890, + "normal_followers_count": 271461, "pinned_tweet_ids_str": [ "1682849715862249472" ], "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/752567226/1690399864", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/752567226/1704781546", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1515124606583152648/4bZaW28-_normal.jpg", "profile_interstitial_type": "", "screen_name": "xDaily", - "statuses_count": 11088, + "statuses_count": 11553, "translator_type": "none", "verified": false, "want_retweets": false, @@ -3026,7 +2761,7 @@ }, "is_translatable": false, "views": { - "count": "16063", + "count": "16145", "state": "EnabledWithCount" }, "source": "TweetDeck", @@ -3092,7 +2827,7 @@ } ] }, - "favorite_count": 66, + "favorite_count": 64, "favorited": false, "full_text": "For example, automated accounts like @TTLastSpring and @PossumEveryHour have now been restored ; @hourlywolvesbot and @WeAreTheDead seem not to have been yet. We can confirm @i80chains is in the process of being restored.", "in_reply_to_screen_name": "xDaily", @@ -3102,7 +2837,7 @@ "lang": "en", "quote_count": 5, "reply_count": 10, - "retweet_count": 11, + "retweet_count": 10, "retweeted": false, "user_id_str": "752567226", "id_str": "1674125213968093184" @@ -3117,14 +2852,14 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881352-tweet-1674428537057726472", + "entryId": "profile-conversation-1756309200230678535-tweet-1674428537057726472", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -3182,16 +2917,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -3200,7 +2935,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -3233,7 +2968,7 @@ }, "is_translatable": false, "views": { - "count": "87367", + "count": "87515", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -3348,7 +3083,7 @@ } ] }, - "favorite_count": 191, + "favorite_count": 187, "favorited": false, "full_text": "@TitterDaily @TTLastSpring @PossumEveryHour @hourlywolvesbot @WeAreTheDead @i80chains Hey @TitterDaily 👋, \nWe love useful bots on the platform! \n\nThat's precisely why we've created our new Free tier that serves this use-case. We're actively supporting all those migrating to our new API tiers. \n\nIf you are still encountering issues, please DM us as soon as…", "in_reply_to_screen_name": "xDaily", @@ -3357,8 +3092,8 @@ "is_quote_status": false, "lang": "en", "quote_count": 12, - "reply_count": 108, - "retweet_count": 29, + "reply_count": 107, + "retweet_count": 27, "retweeted": false, "user_id_str": "2244994945", "id_str": "1674428537057726472" @@ -3373,7 +3108,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -3396,21 +3131,21 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881353", - "sortIndex": "1739819653837881335", + "entryId": "profile-conversation-1756309200230678536", + "sortIndex": "1756309200230678520", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "profile-conversation-1739819653837881353-tweet-1649035925073063938", + "entryId": "profile-conversation-1756309200230678536-tweet-1649035925073063938", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -3435,23 +3170,23 @@ "created_at": "Fri Oct 15 20:25:28 +0000 2010", "default_profile": false, "default_profile_image": false, - "description": "Independent Scientific Organization and provider of real-time earthquake info \nhttps://t.co/4cqtTwufWt \nGet the app :https://t.co/bvL9EDQjKG", + "description": "Independent Scientific Organization and provider of real-time earthquake info \nhttps://t.co/kaF7Ac0luC\nGet the app : https://t.co/VRKgoE3hxF", "entities": { "description": { "urls": [ { - "display_url": "masto.ai/@LastQuake", - "expanded_url": "http://masto.ai/@LastQuake", - "url": "https://t.co/4cqtTwufWt", + "display_url": "bsky.app/profile/lastqu…", + "expanded_url": "https://bsky.app/profile/lastquake.bsky.social", + "url": "https://t.co/kaF7Ac0luC", "indices": [ 79, 102 ] }, { - "display_url": "emsc-csem.org/lastquake/info…", - "expanded_url": "http://www.emsc-csem.org/lastquake/information_channels/lastquake_app/", - "url": "https://t.co/bvL9EDQjKG", + "display_url": "tinyurl.com/2fzyujt8", + "expanded_url": "http://tinyurl.com/2fzyujt8", + "url": "https://t.co/VRKgoE3hxF", "indices": [ 117, 140 @@ -3474,16 +3209,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 8826, - "followers_count": 306522, - "friends_count": 521, + "favourites_count": 8849, + "followers_count": 308124, + "friends_count": 516, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2355, + "listed_count": 2370, "location": "based in Paris, works globally", - "media_count": 103037, + "media_count": 104882, "name": "EMSC", - "normal_followers_count": 306522, + "normal_followers_count": 308124, "pinned_tweet_ids_str": [ "1721860069673886054" ], @@ -3492,7 +3227,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/669532787897147392/hQM844QV_normal.png", "profile_interstitial_type": "", "screen_name": "LastQuake", - "statuses_count": 168900, + "statuses_count": 171475, "translator_type": "none", "url": "https://t.co/Gqo1PffnsH", "verified": false, @@ -3513,7 +3248,7 @@ }, "is_translatable": false, "views": { - "count": "126200", + "count": "126380", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -3734,7 +3469,7 @@ } ] }, - "favorite_count": 104, + "favorite_count": 102, "favorited": false, "full_text": "CONTEST & PRIZES! 🥇\n\n@TwitterDev announced that automated tweeting will no longer be free. ⚠️\n\nWe need YOUR help to maintain our services, compete to get an answer from @TwitterDev and/or @Elonmusk to @LastQuake's request for an API free exemption.\n\n Check out the prizes 👇🏆 https://t.co/3XIeaCSHUU", "is_quote_status": false, @@ -3743,7 +3478,7 @@ "possibly_sensitive_editable": true, "quote_count": 4, "reply_count": 8, - "retweet_count": 42, + "retweet_count": 41, "retweeted": false, "user_id_str": "203226820", "id_str": "1649035925073063938" @@ -3758,14 +3493,14 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881353-tweet-1653505446211211290", + "entryId": "profile-conversation-1756309200230678536-tweet-1653505446211211290", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -3823,16 +3558,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -3841,7 +3576,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -3874,7 +3609,7 @@ }, "is_translatable": false, "views": { - "count": "16731", + "count": "16771", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -3938,7 +3673,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -3960,7 +3695,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -3968,7 +3703,7 @@ }, { "entryId": "tweet-1653492584176656384", - "sortIndex": "1739819653837881334", + "sortIndex": "1756309200230678519", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4028,16 +3763,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -4046,7 +3781,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -4079,12 +3814,12 @@ }, "is_translatable": false, "views": { - "count": "4124731", + "count": "4356892", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 151, + "bookmark_count": 161, "bookmarked": false, "created_at": "Tue May 02 20:12:07 +0000 2023", "conversation_id_str": "1653492584176656384", @@ -4099,14 +3834,14 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 2387, + "favorite_count": 2440, "favorited": false, "full_text": "One of the most important use cases for the Twitter API has always been public utility. Verified gov or publicly owned services who tweet weather alerts, transport updates and emergency notifications may use the API, for these critical purposes, for free.", "is_quote_status": false, "lang": "en", - "quote_count": 505, - "reply_count": 439, - "retweet_count": 577, + "quote_count": 511, + "reply_count": 445, + "retweet_count": 607, "retweeted": false, "user_id_str": "2244994945", "id_str": "1653492584176656384" @@ -4121,21 +3856,21 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881355", - "sortIndex": "1739819653837881333", + "entryId": "profile-conversation-1756309200230678538", + "sortIndex": "1756309200230678518", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "profile-conversation-1739819653837881355-tweet-1649191520250245121", + "entryId": "profile-conversation-1756309200230678538-tweet-1649191520250245121", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -4193,16 +3928,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -4211,7 +3946,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -4244,12 +3979,12 @@ }, "is_translatable": false, "views": { - "count": "648826", + "count": "677119", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 67, + "bookmark_count": 69, "bookmarked": false, "created_at": "Thu Apr 20 23:21:13 +0000 2023", "conversation_id_str": "1649191520250245121", @@ -4264,14 +3999,14 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 431, + "favorite_count": 434, "favorited": false, "full_text": "Today, we are deprecating our Premium v1.1 API, including Premium Search and Account Activity API.", "is_quote_status": false, "lang": "en", - "quote_count": 113, - "reply_count": 98, - "retweet_count": 213, + "quote_count": 114, + "reply_count": 101, + "retweet_count": 221, "retweeted": false, "user_id_str": "2244994945", "id_str": "1649191520250245121" @@ -4286,14 +4021,14 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881355-tweet-1649191522485817345", + "entryId": "profile-conversation-1756309200230678538-tweet-1649191522485817345", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -4351,16 +4086,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -4369,7 +4104,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -4405,7 +4140,7 @@ }, "is_translatable": false, "views": { - "count": "124231", + "count": "134381", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -4435,7 +4170,7 @@ ], "user_mentions": [] }, - "favorite_count": 128, + "favorite_count": 135, "favorited": false, "full_text": "If you are a Twitter developer with a commercial use case, we recommend that you apply for our Enterprise tier.\nEnterprise Search and Account Activity API continue to be available to developers on that Enterprise tier. \n\nApply here: https://t.co/A2FQP2DWuy", "in_reply_to_screen_name": "XDevelopers", @@ -4447,7 +4182,7 @@ "possibly_sensitive_editable": true, "quote_count": 14, "reply_count": 29, - "retweet_count": 37, + "retweet_count": 41, "retweeted": false, "user_id_str": "2244994945", "id_str": "1649191522485817345" @@ -4462,14 +4197,14 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881355-tweet-1649191523697979392", + "entryId": "profile-conversation-1756309200230678538-tweet-1649191523697979392", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -4527,16 +4262,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -4545,7 +4280,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -4581,7 +4316,7 @@ }, "is_translatable": false, "views": { - "count": "95011", + "count": "104459", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -4611,7 +4346,7 @@ ], "user_mentions": [] }, - "favorite_count": 125, + "favorite_count": 130, "favorited": false, "full_text": "Thank you to those who have already migrated to our new API offerings. We hope you can continue to seamlessly use the Twitter API via our new access tiers. \n\nLearn more: https://t.co/iGTdPXTp2D", "in_reply_to_screen_name": "XDevelopers", @@ -4622,8 +4357,8 @@ "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 3, - "reply_count": 36, - "retweet_count": 35, + "reply_count": 37, + "retweet_count": 41, "retweeted": false, "user_id_str": "2244994945", "id_str": "1649191523697979392" @@ -4638,7 +4373,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -4662,7 +4397,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -4670,7 +4405,7 @@ }, { "entryId": "tweet-1643373950930661377", - "sortIndex": "1739819653837881332", + "sortIndex": "1756309200230678517", "content": { "entryType": "TimelineTimelineItem", "__typename": "TimelineTimelineItem", @@ -4730,16 +4465,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -4748,7 +4483,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -4785,19 +4520,19 @@ }, "previous_counts": { "bookmark_count": 10, - "favorite_count": 92, + "favorite_count": 89, "quote_count": 13, "reply_count": 29, - "retweet_count": 28 + "retweet_count": 27 }, "is_translatable": false, "views": { - "count": "231846", + "count": "242893", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 50, + "bookmark_count": 52, "bookmarked": false, "created_at": "Tue Apr 04 22:04:16 +0000 2023", "conversation_id_str": "1643373950930661377", @@ -4812,14 +4547,14 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 452, + "favorite_count": 462, "favorited": false, "full_text": "🚨 If your developer account application was under review over the last few months, we kindly ask you to re-apply if you are interested in subscribing to our new Twitter API Free or Basic plans. \n\nOur new self-service process should enable you to get access in no time! 🙏", "is_quote_status": false, "lang": "en", "quote_count": 47, - "reply_count": 191, - "retweet_count": 140, + "reply_count": 192, + "retweet_count": 149, "retweeted": false, "user_id_str": "2244994945", "id_str": "1643373950930661377" @@ -4834,21 +4569,21 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881357", - "sortIndex": "1739819653837881331", + "entryId": "profile-conversation-1756309200230678540", + "sortIndex": "1756309200230678516", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "profile-conversation-1739819653837881357-tweet-1641222788911624192", + "entryId": "profile-conversation-1756309200230678540-tweet-1641222788911624192", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -4906,16 +4641,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -4924,7 +4659,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -4957,12 +4692,12 @@ }, "is_translatable": false, "views": { - "count": "300644", + "count": "310540", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 35, + "bookmark_count": 36, "bookmarked": false, "created_at": "Wed Mar 29 23:36:19 +0000 2023", "conversation_id_str": "1641222782594990080", @@ -4977,7 +4712,7 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 221, + "favorite_count": 220, "favorited": false, "full_text": "For Academia, we are looking at new ways to continue serving this community. In the meantime Free, Basic and Enterprise tiers are available for academics. Stay tuned to @TwitterDev to learn more.", "in_reply_to_screen_name": "XDevelopers", @@ -4985,9 +4720,9 @@ "in_reply_to_user_id_str": "2244994945", "is_quote_status": false, "lang": "en", - "quote_count": 69, + "quote_count": 71, "reply_count": 65, - "retweet_count": 114, + "retweet_count": 118, "retweeted": false, "user_id_str": "2244994945", "id_str": "1641222788911624192" @@ -5002,14 +4737,14 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881357-tweet-1641222789901484034", + "entryId": "profile-conversation-1756309200230678540-tweet-1641222789901484034", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -5067,16 +4802,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -5085,7 +4820,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -5118,7 +4853,7 @@ }, "is_translatable": false, "views": { - "count": "296844", + "count": "305520", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -5146,8 +4881,8 @@ "in_reply_to_user_id_str": "2244994945", "is_quote_status": false, "lang": "en", - "quote_count": 26, - "reply_count": 93, + "quote_count": 27, + "reply_count": 95, "retweet_count": 86, "retweeted": false, "user_id_str": "2244994945", @@ -5163,7 +4898,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -5185,21 +4920,21 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881358", - "sortIndex": "1739819653837881330", + "entryId": "profile-conversation-1756309200230678541", + "sortIndex": "1756309200230678515", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "profile-conversation-1739819653837881358-tweet-1641222786894135296", + "entryId": "profile-conversation-1756309200230678541-tweet-1641222786894135296", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -5257,16 +4992,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -5275,7 +5010,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -5308,12 +5043,12 @@ }, "is_translatable": false, "views": { - "count": "1075922", + "count": "1087911", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 77, + "bookmark_count": 76, "bookmarked": false, "created_at": "Wed Mar 29 23:36:19 +0000 2023", "conversation_id_str": "1641222782594990080", @@ -5328,7 +5063,7 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 523, + "favorite_count": 535, "favorited": false, "full_text": "Over the next 30 days, we will deprecate current access tiers such as Standard (v1.1), Essential (v2), Elevated (v2), and Premium so we recommend that you migrate to the new tiers as soon as possible for a smooth transition.", "in_reply_to_screen_name": "XDevelopers", @@ -5337,8 +5072,8 @@ "is_quote_status": false, "lang": "en", "quote_count": 251, - "reply_count": 84, - "retweet_count": 357, + "reply_count": 85, + "retweet_count": 358, "retweeted": false, "user_id_str": "2244994945", "id_str": "1641222786894135296" @@ -5353,14 +5088,14 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881358-tweet-1641222787934355456", + "entryId": "profile-conversation-1756309200230678541-tweet-1641222787934355456", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -5418,16 +5153,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -5436,7 +5171,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -5469,12 +5204,12 @@ }, "is_translatable": false, "views": { - "count": "229522", + "count": "238425", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 6, + "bookmark_count": 7, "bookmarked": false, "created_at": "Wed Mar 29 23:36:19 +0000 2023", "conversation_id_str": "1641222782594990080", @@ -5489,7 +5224,7 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 158, + "favorite_count": 156, "favorited": false, "full_text": "Ads API will continue to be available at no additional cost to approved Twitter API developers, including developers on the new Free tier.", "in_reply_to_screen_name": "XDevelopers", @@ -5499,7 +5234,7 @@ "lang": "en", "quote_count": 5, "reply_count": 6, - "retweet_count": 76, + "retweet_count": 77, "retweeted": false, "user_id_str": "2244994945", "id_str": "1641222787934355456" @@ -5514,7 +5249,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -5535,21 +5270,21 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881359", - "sortIndex": "1739819653837881329", + "entryId": "profile-conversation-1756309200230678542", + "sortIndex": "1756309200230678514", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "profile-conversation-1739819653837881359-tweet-1641222785702952961", + "entryId": "profile-conversation-1756309200230678542-tweet-1641222785702952961", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -5607,16 +5342,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -5625,7 +5360,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -5661,7 +5396,7 @@ }, "is_translatable": false, "views": { - "count": "245172", + "count": "253185", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -5691,7 +5426,7 @@ ], "user_mentions": [] }, - "favorite_count": 151, + "favorite_count": 150, "favorited": false, "full_text": "If you are a business or have any scaled commercial projects, we encourage you to apply for our Enterprise tier to get managed services, complete streams, and access that meets your specific needs. \n\nApply now: https://t.co/mBmGTnKYpA", "in_reply_to_screen_name": "XDevelopers", @@ -5702,8 +5437,8 @@ "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 10, - "reply_count": 15, - "retweet_count": 72, + "reply_count": 16, + "retweet_count": 74, "retweeted": false, "user_id_str": "2244994945", "id_str": "1641222785702952961" @@ -5718,7 +5453,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -5739,21 +5474,21 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881360", - "sortIndex": "1739819653837881328", + "entryId": "profile-conversation-1756309200230678543", + "sortIndex": "1756309200230678513", "content": { "entryType": "TimelineTimelineModule", "__typename": "TimelineTimelineModule", "items": [ { - "entryId": "profile-conversation-1739819653837881360-tweet-1641222782594990080", + "entryId": "profile-conversation-1756309200230678543-tweet-1641222782594990080", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -5811,16 +5546,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -5829,7 +5564,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -5862,12 +5597,12 @@ }, "is_translatable": false, "views": { - "count": "7266194", + "count": "7284698", "state": "EnabledWithCount" }, "source": "Twitter Web App", "legacy": { - "bookmark_count": 433, + "bookmark_count": 429, "bookmarked": false, "created_at": "Wed Mar 29 23:36:18 +0000 2023", "conversation_id_str": "1641222782594990080", @@ -5882,14 +5617,14 @@ "urls": [], "user_mentions": [] }, - "favorite_count": 1483, + "favorite_count": 1467, "favorited": false, "full_text": "Today we are launching our new Twitter API access tiers! We’re excited to share more details about our self-serve access. 🧵", "is_quote_status": false, "lang": "en", - "quote_count": 981, - "reply_count": 541, - "retweet_count": 1061, + "quote_count": 978, + "reply_count": 539, + "retweet_count": 1060, "retweeted": false, "user_id_str": "2244994945", "id_str": "1641222782594990080" @@ -5904,14 +5639,14 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "profile-conversation-1739819653837881360-tweet-1641222784599879680", + "entryId": "profile-conversation-1756309200230678543-tweet-1641222784599879680", "item": { "itemContent": { "itemType": "TimelineTweet", @@ -5969,16 +5704,16 @@ } }, "fast_followers_count": 0, - "favourites_count": 2075, - "followers_count": 600385, - "friends_count": 1800, + "favourites_count": 2073, + "followers_count": 607490, + "friends_count": 1773, "has_custom_timelines": true, "is_translator": false, - "listed_count": 2551, + "listed_count": 2572, "location": "127.0.0.1", "media_count": 815, "name": "Developers", - "normal_followers_count": 600385, + "normal_followers_count": 607490, "pinned_tweet_ids_str": [ "1661790253886177280" ], @@ -5987,7 +5722,7 @@ "profile_image_url_https": "https://pbs.twimg.com/profile_images/1683501992314798080/xl1POYLw_normal.jpg", "profile_interstitial_type": "", "screen_name": "XDevelopers", - "statuses_count": 4042, + "statuses_count": 4041, "translator_type": "regular", "url": "https://t.co/RUXWsqdGk8", "verified": false, @@ -6023,7 +5758,7 @@ }, "is_translatable": false, "views": { - "count": "1707656", + "count": "1728245", "state": "EnabledWithCount" }, "source": "Twitter Web App", @@ -6053,7 +5788,7 @@ ], "user_mentions": [] }, - "favorite_count": 386, + "favorite_count": 381, "favorited": false, "full_text": "We are also launching a new Basic (v2) access for hobbyists with 10,000 GET/month and 50,000 POST/month, 2 app IDs, and Login with Twitter for $100/month. \n\nSubscribe now: https://t.co/AQci4FeIWf", "in_reply_to_screen_name": "XDevelopers", @@ -6063,9 +5798,9 @@ "lang": "en", "possibly_sensitive": false, "possibly_sensitive_editable": true, - "quote_count": 823, - "reply_count": 246, - "retweet_count": 472, + "quote_count": 821, + "reply_count": 245, + "retweet_count": 471, "retweeted": false, "user_id_str": "2244994945", "id_str": "1641222784599879680" @@ -6080,7 +5815,7 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } @@ -6101,29 +5836,29 @@ "details": { "timelinesDetails": { "injectionType": "RankedOrganicTweet", - "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkXRKa5CpYAAQAAAAA=" + "controllerData": "DAACDAABDAABCgABAAAAAAAAAAAKAAkYWMO0OlpgAAAAAAA=" } } } } }, { - "entryId": "cursor-top-1739819653837881345", - "sortIndex": "1739819653837881345", + "entryId": "cursor-top-1756309200230678529", + "sortIndex": "1756309200230678529", "content": { "entryType": "TimelineTimelineCursor", "__typename": "TimelineTimelineCursor", - "value": "DAABCgABGCUUwdhAJxEKAAIYFToVz9rAgAgAAwAAAAEAAA", + "value": "DAABCgABGF-p6YuAJxEKAAIYFToVz9rAgAgAAwAAAAEAAA", "cursorType": "Top" } }, { - "entryId": "cursor-bottom-1739819653837881327", - "sortIndex": "1739819653837881327", + "entryId": "cursor-bottom-1756309200230678512", + "sortIndex": "1756309200230678512", "content": { "entryType": "TimelineTimelineCursor", "__typename": "TimelineTimelineCursor", - "value": "DAABCgABGCUUwdg__-0KAAIWxsttUVpwAAgAAwAAAAIAAA", + "value": "DAABCgABGF-p6Yt__-4KAAIWxsttUVpwAAgAAwAAAAIAAA", "cursorType": "Bottom" } } diff --git a/tests/mocked-data/search_raw.json b/tests/mocked-data/search_raw.json deleted file mode 100644 index 357b3d5..0000000 --- a/tests/mocked-data/search_raw.json +++ /dev/null @@ -1,2042 +0,0 @@ -{ - "data": { - "search_by_raw_query": { - "search_timeline": { - "timeline": { - "instructions": [ - { - "type": "TimelineAddEntries", - "entries": [ - { - "entryId": "tweet-1739819652203655625", - "sortIndex": "1739819659848318976", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739819652203655625", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo4MjM2OTUyODA5MDIxMjc2MTY=", - "rest_id": "823695280902127616", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Tue Jan 24 00:53:53 +0000 2017", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 173945, - "followers_count": 6509, - "friends_count": 6355, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 30, - "location": "GA🍑Born, SC🏝& TN🏔Raised", - "media_count": 16606, - "name": "Radical Left Bone Thugs", - "normal_followers_count": 6509, - "pinned_tweet_ids_str": [ - "1711864994164310021" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/823695280902127616/1486045590", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1700680446038720512/XMrc_Lb7_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "TNsmartass", - "statuses_count": 179823, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739819652203655625" - ], - "editable_until_msecs": "1703643904000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Wed Dec 27 01:25:04 +0000 2023", - "conversation_id_str": "1739818666651222182", - "display_text_range": [ - 0, - 128 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "Idk about the robot’s intent, but clearly Elon Musk wants the tax incentives without the accountability, a fucking libertarian 🙄", - "in_reply_to_screen_name": "TNsmartass", - "in_reply_to_status_id_str": "1739818666651222182", - "in_reply_to_user_id_str": "823695280902127616", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 0, - "retweeted": false, - "user_id_str": "823695280902127616", - "id_str": "1739819652203655625" - } - } - }, - "tweetDisplayType": "Tweet", - "highlights": { - "textHighlights": [ - { - "startIndex": 42, - "endIndex": 51 - } - ] - } - }, - "clientEventInfo": { - "component": "result", - "element": "tweet", - "details": { - "timelinesDetails": { - "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6lA+S7djQboLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAUEILGmAsP3pQgABgAAAAEKAAcFhqXsELIv2wAAAAAA" - } - } - } - } - }, - { - "entryId": "tweet-1739819652153561275", - "sortIndex": "1739819659848318975", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739819652153561275", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjA2MzE2Nzk1Njg1NzM2NDU1", - "rest_id": "1606316795685736455", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": false, - "created_at": "Fri Dec 23 15:53:04 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "Practitioner of cryptocurrency community holding #bitcoin", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 4577, - "followers_count": 211, - "friends_count": 134, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 4, - "location": "komorebi", - "media_count": 814, - "name": "Leek♦️cafe", - "normal_followers_count": 211, - "pinned_tweet_ids_str": [ - "1736741221916397603" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1606316795685736455/1681054107", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1664547651390685185/i52KYJae_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "myth_7711444", - "statuses_count": 2484, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1724946701415506413", - "professional_type": "Creator", - "category": [ - { - "id": 1009, - "name": "Community", - "icon_name": "IconBriefcaseStroke" - } - ] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739819652153561275" - ], - "editable_until_msecs": "1703643904000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for Android", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Wed Dec 27 01:25:04 +0000 2023", - "conversation_id_str": "1739729243943129482", - "display_text_range": [ - 10, - 162 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "44196397", - "name": "Elon Musk", - "screen_name": "elonmusk", - "indices": [ - 0, - 9 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "@elonmusk An artificial intelligence in a video game thinks he is a real person, but in fact he is a virtual person who pursues the true meaning of love and life.", - "in_reply_to_screen_name": "elonmusk", - "in_reply_to_status_id_str": "1739729243943129482", - "in_reply_to_user_id_str": "44196397", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 0, - "retweeted": false, - "user_id_str": "1606316795685736455", - "id_str": "1739819652153561275" - } - } - }, - "tweetDisplayType": "Tweet", - "highlights": { - "textHighlights": [ - { - "startIndex": 1, - "endIndex": 9 - } - ] - } - }, - "clientEventInfo": { - "component": "result", - "element": "tweet", - "details": { - "timelinesDetails": { - "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6lA+S7djQboLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAUEILGmAsP3pQgABgAAAAEKAAcFhqXsELIv2wAAAAAA" - } - } - } - } - }, - { - "entryId": "tweet-1739819642460295236", - "sortIndex": "1739819659848318974", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739819642460295236", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNTk2OTUxNjM2NTU5MjA0MzUy", - "rest_id": "1596951636559204352", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sun Nov 27 19:41:27 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 10412, - "followers_count": 171, - "friends_count": 123, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 45, - "name": "mellowlucifer", - "normal_followers_count": 171, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1596952484928536576/GKWOqqIT_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "mellowlucifer1", - "statuses_count": 1146, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739819642460295236" - ], - "editable_until_msecs": "1703643901000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Wed Dec 27 01:25:01 +0000 2023", - "conversation_id_str": "1739728474384871587", - "display_text_range": [ - 10, - 62 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "44196397", - "name": "Elon Musk", - "screen_name": "elonmusk", - "indices": [ - 0, - 9 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "@elonmusk I think I have to be a blue check to upload a vid. 🤔", - "in_reply_to_screen_name": "elonmusk", - "in_reply_to_status_id_str": "1739728474384871587", - "in_reply_to_user_id_str": "44196397", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 0, - "retweeted": false, - "user_id_str": "1596951636559204352", - "id_str": "1739819642460295236" - } - } - }, - "tweetDisplayType": "Tweet", - "highlights": { - "textHighlights": [ - { - "startIndex": 1, - "endIndex": 9 - } - ] - } - }, - "clientEventInfo": { - "component": "result", - "element": "tweet", - "details": { - "timelinesDetails": { - "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6lA+S7djQboLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAUEILGmAsP3pQgABgAAAAEKAAcFhqXsELIv2wAAAAAA" - } - } - } - } - }, - { - "entryId": "tweet-1739819642015698952", - "sortIndex": "1739819659848318973", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739819642015698952", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDcxODUwMDU3NTk5Mjc1MDA4", - "rest_id": "1471850057599275008", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Fri Dec 17 14:30:26 +0000 2021", - "default_profile": true, - "default_profile_image": false, - "description": "We are all biodegradable", - "entities": { - "description": { - "urls": [] - }, - "url": { - "urls": [ - { - "display_url": "youtube.com/@mikeporkchop4…", - "expanded_url": "https://www.youtube.com/@mikeporkchop4795", - "url": "https://t.co/kLuI2k0BsO", - "indices": [ - 0, - 23 - ] - } - ] - } - }, - "fast_followers_count": 0, - "favourites_count": 38, - "followers_count": 15, - "friends_count": 97, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "Earth", - "media_count": 48, - "name": "Superporkchop", - "normal_followers_count": 15, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1471850057599275008/1701146028", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1729357893382606848/g6xMQPsr_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "porkchop_mike", - "statuses_count": 285, - "translator_type": "none", - "url": "https://t.co/kLuI2k0BsO", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739819642015698952" - ], - "editable_until_msecs": "1703643901000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter Web App", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Wed Dec 27 01:25:01 +0000 2023", - "conversation_id_str": "1739725238357606733", - "display_text_range": [ - 10, - 23 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "44196397", - "name": "Elon Musk", - "screen_name": "elonmusk", - "indices": [ - 0, - 9 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "@elonmusk Aluminum. Lol", - "in_reply_to_screen_name": "elonmusk", - "in_reply_to_status_id_str": "1739725238357606733", - "in_reply_to_user_id_str": "44196397", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 0, - "retweeted": false, - "user_id_str": "1471850057599275008", - "id_str": "1739819642015698952" - } - } - }, - "tweetDisplayType": "Tweet", - "highlights": { - "textHighlights": [ - { - "startIndex": 1, - "endIndex": 9 - } - ] - } - }, - "clientEventInfo": { - "component": "result", - "element": "tweet", - "details": { - "timelinesDetails": { - "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6lA+S7djQboLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAUEILGmAsP3pQgABgAAAAEKAAcFhqXsELIv2wAAAAAA" - } - } - } - } - }, - { - "entryId": "tweet-1739819639105106314", - "sortIndex": "1739819659848318972", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739819639105106314", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjo0NzUxMzUxNTM1", - "rest_id": "4751351535", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Jan 09 05:27:06 +0000 2016", - "default_profile": true, - "default_profile_image": false, - "description": "Hi", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 19838, - "followers_count": 111, - "friends_count": 427, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 107, - "name": "Elon Musk Pro", - "normal_followers_count": 111, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1621056144985980928/K7l5E33S_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "Indian55313666", - "statuses_count": 2132, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - }, - "professional": { - "rest_id": "1621056265786118144", - "professional_type": "Business", - "category": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739819639105106314" - ], - "editable_until_msecs": "1703643900000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for Android", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Wed Dec 27 01:25:00 +0000 2023", - "conversation_id_str": "1739717365414363231", - "display_text_range": [ - 5, - 119 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "355989081", - "name": "ANI", - "screen_name": "ANI", - "indices": [ - 0, - 4 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "@ANI When everybody does not vote for him how is he everybody's PM, Who have voted him for Ram Mandir , they are happy.", - "in_reply_to_screen_name": "ANI", - "in_reply_to_status_id_str": "1739717365414363231", - "in_reply_to_user_id_str": "355989081", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 0, - "retweeted": false, - "user_id_str": "4751351535", - "id_str": "1739819639105106314" - } - } - }, - "tweetDisplayType": "Tweet" - }, - "clientEventInfo": { - "component": "result", - "element": "tweet", - "details": { - "timelinesDetails": { - "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6lA+S7djQboLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAUEILGmAsP3pQgABgAAAAEKAAcFhqXsELIv2wAAAAAA" - } - } - } - } - }, - { - "entryId": "tweet-1739819626480177443", - "sortIndex": "1739819659848318971", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739819626480177443", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoyNjc2MjUyMDk=", - "rest_id": "267625209", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Thu Mar 17 07:51:08 +0000 2011", - "default_profile": true, - "default_profile_image": false, - "description": "I sleep, eat, drink, commute,work,commute, run, eat, sleep, everyday.", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 9, - "followers_count": 86, - "friends_count": 340, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 13, - "location": "", - "media_count": 3409, - "name": "Dino", - "normal_followers_count": 86, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/651233184403750912/RdhTXCFh_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "RunforestRun85", - "statuses_count": 3737, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739819626480177443" - ], - "editable_until_msecs": "1703643897000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for Android", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Wed Dec 27 01:24:57 +0000 2023", - "conversation_id_str": "1739725238357606733", - "display_text_range": [ - 23, - 113 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1488026569", - "name": "Luke Zaleski", - "screen_name": "ZaleskiLuke", - "indices": [ - 0, - 12 - ] - }, - { - "id_str": "44196397", - "name": "Elon Musk", - "screen_name": "elonmusk", - "indices": [ - 13, - 22 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "@ZaleskiLuke @elonmusk Luke lefties ruin experts and professions like they ruin eastern religious symbol of luck.", - "in_reply_to_screen_name": "ZaleskiLuke", - "in_reply_to_status_id_str": "1739750719572348962", - "in_reply_to_user_id_str": "1488026569", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 0, - "retweeted": false, - "user_id_str": "267625209", - "id_str": "1739819626480177443" - } - } - }, - "tweetDisplayType": "Tweet", - "highlights": { - "textHighlights": [ - { - "startIndex": 14, - "endIndex": 22 - } - ] - } - }, - "clientEventInfo": { - "component": "result", - "element": "tweet", - "details": { - "timelinesDetails": { - "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6lA+S7djQboLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAUEILGmAsP3pQgABgAAAAEKAAcFhqXsELIv2wAAAAAA" - } - } - } - } - }, - { - "entryId": "tweet-1739819614467440664", - "sortIndex": "1739819659848318970", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739819614467440664", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjozODczODE2ODc=", - "rest_id": "387381687", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Sat Oct 08 23:37:57 +0000 2011", - "default_profile": true, - "default_profile_image": false, - "description": "Environmental Scientist, Liberal Christian. I want everyone to be happy and have everything they need in life. #HamasAreTerrorists #NoIllegalSettlements\nHe/Him", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 53430, - "followers_count": 1518, - "friends_count": 1336, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 50, - "location": "Toronto, ON", - "media_count": 8194, - "name": "John from 🇨🇦 - ❤️ 🇺🇦, proudly 'woke'", - "normal_followers_count": 1518, - "pinned_tweet_ids_str": [ - "1725142237967777812" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/387381687/1612127775", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1721977210368606208/EaYK0u1y_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "worldmeetjohn", - "statuses_count": 122901, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739819614467440664" - ], - "editable_until_msecs": "1703643895000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for Android", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Wed Dec 27 01:24:55 +0000 2023", - "conversation_id_str": "1557846111851024384", - "display_text_range": [ - 644, - 692 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1223707787504574465", - "name": "🇮🇱 Estella 🇮🇱", - "screen_name": "ArchLuminous", - "indices": [ - 0, - 13 - ] - }, - { - "id_str": "1076256681334632448", - "name": "scot", - "screen_name": "scottstocker4", - "indices": [ - 14, - 28 - ] - }, - { - "id_str": "21354241", - "name": "Frances Del Rio ☮️🟧", - "screen_name": "kali8989", - "indices": [ - 29, - 38 - ] - }, - { - "id_str": "1488945164597014541", - "name": "Tasty Morsel", - "screen_name": "TastyMorsel6", - "indices": [ - 39, - 52 - ] - }, - { - "id_str": "1440823869565063169", - "name": "Blueresin", - "screen_name": "Blueresin1", - "indices": [ - 53, - 64 - ] - }, - { - "id_str": "1698116992870277120", - "name": "Bern Vazquez🇨🇺🇺🇸🇨🇺🇺🇸🇨🇺🇺🇸", - "screen_name": "BernV77", - "indices": [ - 65, - 73 - ] - }, - { - "id_str": "801096571509161984", - "name": "Country girl", - "screen_name": "America1Eagle1", - "indices": [ - 74, - 89 - ] - }, - { - "id_str": "1490730838018994180", - "name": "T. M.", - "screen_name": "terrymbs2", - "indices": [ - 90, - 100 - ] - }, - { - "id_str": "3434704705", - "name": "Kiuku", - "screen_name": "zypisfy", - "indices": [ - 101, - 109 - ] - }, - { - "id_str": "2838602742", - "name": "WP Consulting", - "screen_name": "wpcguy", - "indices": [ - 110, - 117 - ] - }, - { - "id_str": "30751859", - "name": "Roy Littwin 🇺🇸#StandWithUkraine🇺🇦 Indivisible", - "screen_name": "rlittwin", - "indices": [ - 118, - 127 - ] - }, - { - "id_str": "741091012328591363", - "name": "Obviously Opinionated 💙🌸🇮🇱☕️🐶☀️🇺🇦", - "screen_name": "cherylhart00", - "indices": [ - 128, - 141 - ] - }, - { - "id_str": "1586380657088991232", - "name": "Octavian", - "screen_name": "CaesarAugustusE", - "indices": [ - 142, - 158 - ] - }, - { - "id_str": "916655610741100544", - "name": "Elevator Man, 🇺🇸☘️", - "screen_name": "howienudet", - "indices": [ - 159, - 170 - ] - }, - { - "id_str": "1266491576882208769", - "name": "The Adorable Boy Podcast", - "screen_name": "AdorablePodcast", - "indices": [ - 171, - 187 - ] - }, - { - "id_str": "1573358090661105664", - "name": "Pru B", - "screen_name": "NewfMom29", - "indices": [ - 188, - 198 - ] - }, - { - "id_str": "117553796", - "name": "JUSTICE PREVAILS! GOD BLESS AMERICA", - "screen_name": "LadyOfTheOcean1", - "indices": [ - 199, - 215 - ] - }, - { - "id_str": "880927227059224576", - "name": "CAL USA", - "screen_name": "CALUSA18", - "indices": [ - 216, - 225 - ] - }, - { - "id_str": "1004047139062755328", - "name": "Open Source Intel", - "screen_name": "intercepts1a", - "indices": [ - 226, - 239 - ] - }, - { - "id_str": "1572264197873979392", - "name": "Joey Bones", - "screen_name": "joeybones07", - "indices": [ - 240, - 252 - ] - }, - { - "id_str": "1504229349901299715", - "name": "Nguyen-er", - "screen_name": "NguyeningISGood", - "indices": [ - 253, - 269 - ] - }, - { - "id_str": "2904460977", - "name": "Vin 🇺🇸", - "screen_name": "VinceGottalotta", - "indices": [ - 270, - 286 - ] - }, - { - "id_str": "1346951331827896320", - "name": "Anti Trumpleforeskin", - "screen_name": "BuckSatanLives", - "indices": [ - 287, - 302 - ] - }, - { - "id_str": "807054351294414848", - "name": "🧧Rice Gum 真相🪭", - "screen_name": "numbersdelight", - "indices": [ - 303, - 318 - ] - }, - { - "id_str": "1046951010776829958", - "name": "Game Over03 ( Trash ) free 🇵🇸", - "screen_name": "Gameove35593168", - "indices": [ - 319, - 335 - ] - }, - { - "id_str": "1306827059084382209", - "name": "Vianne", - "screen_name": "KARMA92630394", - "indices": [ - 336, - 350 - ] - }, - { - "id_str": "1678176563932610560", - "name": "RealTruth723", - "screen_name": "RTruth72317349", - "indices": [ - 351, - 366 - ] - }, - { - "id_str": "1088256035746394113", - "name": "KD 🇺🇸", - "screen_name": "KarenDi95261360", - "indices": [ - 367, - 383 - ] - }, - { - "id_str": "2530304958", - "name": "PvN", - "screen_name": "The_Real_BiM", - "indices": [ - 384, - 397 - ] - }, - { - "id_str": "1011810506913533953", - "name": "Adam Tarver", - "screen_name": "AdamTarver6", - "indices": [ - 398, - 410 - ] - }, - { - "id_str": "1563303689284382720", - "name": "JWwasright", - "screen_name": "youknow714", - "indices": [ - 411, - 422 - ] - }, - { - "id_str": "1589399637328384001", - "name": "JJ", - "screen_name": "JJD32069", - "indices": [ - 423, - 432 - ] - }, - { - "id_str": "848609180218949633", - "name": "Shelly R Kirchoff", - "screen_name": "ShellyRKirchoff", - "indices": [ - 433, - 449 - ] - }, - { - "id_str": "346154820", - "name": "Deb A 🇺🇸🐾. 🐕‍🦺 🐾. 🇺🇸", - "screen_name": "Flattielover", - "indices": [ - 450, - 463 - ] - }, - { - "id_str": "1297993339208232960", - "name": "📚This Girl Loves Books Ban GUNS Not Books📚", - "screen_name": "ThelmaJoAmes", - "indices": [ - 464, - 477 - ] - }, - { - "id_str": "1422154481446260736", - "name": "Robert David", - "screen_name": "RobertD38259050", - "indices": [ - 478, - 494 - ] - }, - { - "id_str": "1102782921251803136", - "name": "Rainbow CA off Historic Old 395 I-15", - "screen_name": "LaneArroyo_", - "indices": [ - 495, - 507 - ] - }, - { - "id_str": "1275969787437309954", - "name": "Just Critique", - "screen_name": "just_critique", - "indices": [ - 508, - 522 - ] - }, - { - "id_str": "1400455648903503877", - "name": "\"All I do is\" Nguyen 🇻🇳", - "screen_name": "Nguyen_anime3", - "indices": [ - 523, - 537 - ] - }, - { - "id_str": "238059410", - "name": "Smitty", - "screen_name": "Laelaen", - "indices": [ - 538, - 546 - ] - }, - { - "id_str": "1685762052252368896", - "name": "THE REAL MASTER MASON", - "screen_name": "freemasongeorg5", - "indices": [ - 547, - 563 - ] - }, - { - "id_str": "1598014261464248321", - "name": "Mr Forchet", - "screen_name": "MrForchet2", - "indices": [ - 564, - 575 - ] - }, - { - "id_str": "1633513396338405377", - "name": "まだここ Stillhere 아직도 여기에 (Chinese Bot, Fang Shuang)", - "screen_name": "Stillhere4744", - "indices": [ - 576, - 590 - ] - }, - { - "id_str": "1349201788663169024", - "name": "🇲🇽 Xochitl 🇲🇽", - "screen_name": "Kittyboo_G", - "indices": [ - 591, - 602 - ] - }, - { - "id_str": "473282878", - "name": "Ross", - "screen_name": "srg5400", - "indices": [ - 603, - 611 - ] - }, - { - "id_str": "1176544385296719872", - "name": "BuckSatan", - "screen_name": "_HypoLuxa_", - "indices": [ - 612, - 623 - ] - }, - { - "id_str": "56026196", - "name": "Seasherm 🇺🇦🇺🇦🇺🇦", - "screen_name": "Seasherm", - "indices": [ - 624, - 633 - ] - }, - { - "id_str": "44196397", - "name": "Elon Musk", - "screen_name": "elonmusk", - "indices": [ - 634, - 643 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "@ArchLuminous @scottstocker4 @kali8989 @TastyMorsel6 @Blueresin1 @BernV77 @America1Eagle1 @terrymbs2 @zypisfy @wpcguy @rlittwin @cherylhart00 @CaesarAugustusE @howienudet @AdorablePodcast @NewfMom29 @LadyOfTheOcean1 @CALUSA18 @intercepts1a @joeybones07 @NguyeningISGood @VinceGottalotta @BuckSatanLives @numbersdelight @Gameove35593168 @KARMA92630394 @RTruth72317349 @KarenDi95261360 @The_Real_BiM @AdamTarver6 @youknow714 @JJD32069 @ShellyRKirchoff @Flattielover @ThelmaJoAmes @RobertD38259050 @LaneArroyo_ @just_critique @Nguyen_anime3 @Laelaen @freemasongeorg5 @MrForchet2 @Stillhere4744 @Kittyboo_G @srg5400 @_HypoLuxa_ @Seasherm @elonmusk It's not an accusation, it's just an observation", - "in_reply_to_screen_name": "ArchLuminous", - "in_reply_to_status_id_str": "1739819128423161863", - "in_reply_to_user_id_str": "1223707787504574465", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 0, - "retweeted": false, - "user_id_str": "387381687", - "id_str": "1739819614467440664" - } - } - }, - "tweetDisplayType": "Tweet", - "highlights": { - "textHighlights": [ - { - "startIndex": 635, - "endIndex": 643 - } - ] - } - }, - "clientEventInfo": { - "component": "result", - "element": "tweet", - "details": { - "timelinesDetails": { - "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6lA+S7djQboLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAUEILGmAsP3pQgABgAAAAEKAAcFhqXsELIv2wAAAAAA" - } - } - } - } - }, - { - "entryId": "tweet-1739819593747599684", - "sortIndex": "1739819659848318969", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739819593747599684", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjAwMDU0Mzg3OTUwNDUyNzM2", - "rest_id": "1600054387950452736", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Tue Dec 06 09:08:49 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 26557, - "followers_count": 148, - "friends_count": 231, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 3, - "location": "", - "media_count": 3294, - "name": "(Politically)Conservative", - "normal_followers_count": 148, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1602366533946282000/Osc_JB0b_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "3rdinfantry115", - "statuses_count": 15426, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739819593747599684" - ], - "editable_until_msecs": "1703643890000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for Android", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Wed Dec 27 01:24:50 +0000 2023", - "conversation_id_str": "1739256365296849096", - "display_text_range": [ - 15, - 294 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1240270944590913539", - "name": "Laibah Firdaus. لائبہ فردوس", - "screen_name": "FirdausLaibah", - "indices": [ - 0, - 14 - ] - }, - { - "id_str": "44196397", - "name": "Elon Musk", - "screen_name": "elonmusk", - "indices": [ - 98, - 107 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "@FirdausLaibah Why do people like you keep showing up in my feed? I swear I think I saw a post by @elonmusk months ago that said the algorithm was changed to where whoever you interact with more will show up on your timeline so I guess from arguing with anti-semites and pro jihadists so much 🤦", - "in_reply_to_screen_name": "FirdausLaibah", - "in_reply_to_status_id_str": "1739256365296849096", - "in_reply_to_user_id_str": "1240270944590913539", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 0, - "retweeted": false, - "user_id_str": "1600054387950452736", - "id_str": "1739819593747599684" - } - } - }, - "tweetDisplayType": "Tweet", - "highlights": { - "textHighlights": [ - { - "startIndex": 99, - "endIndex": 107 - } - ] - } - }, - "clientEventInfo": { - "component": "result", - "element": "tweet", - "details": { - "timelinesDetails": { - "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6lA+S7djQboLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAUEILGmAsP3pQgABgAAAAEKAAcFhqXsELIv2wAAAAAA" - } - } - } - } - }, - { - "entryId": "tweet-1739819588848587243", - "sortIndex": "1739819659848318968", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739819588848587243", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjU3NDc2NDE1MTkxNjU0NDAw", - "rest_id": "1657476415191654400", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": true, - "created_at": "Sat May 13 20:03:19 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 55, - "followers_count": 6, - "friends_count": 22, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "", - "media_count": 1, - "name": "crypto pramit", - "normal_followers_count": 6, - "pinned_tweet_ids_str": [], - "possibly_sensitive": false, - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1668131416050106370/AaXamoQ7_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "CryptoPram9898", - "statuses_count": 41, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739819588848587243" - ], - "editable_until_msecs": "1703643888000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for Android", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Wed Dec 27 01:24:48 +0000 2023", - "conversation_id_str": "1739807780452925676", - "display_text_range": [ - 14, - 172 - ], - "entities": { - "hashtags": [ - { - "indices": [ - 75, - 80 - ], - "text": "grok" - } - ], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1357260998369968129", - "name": "CELINA 🩸🩸🩸", - "screen_name": "CryptoJems21", - "indices": [ - 0, - 13 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "@CryptoJems21 He defrauded investors using Elon Musk. I will sue you soon. #grok token and its team are fraudsters. Its owner has defrauded people with another token before", - "in_reply_to_screen_name": "CryptoPram9898", - "in_reply_to_status_id_str": "1739818914211573939", - "in_reply_to_user_id_str": "1657476415191654400", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 0, - "retweeted": false, - "user_id_str": "1657476415191654400", - "id_str": "1739819588848587243" - } - } - }, - "tweetDisplayType": "Tweet", - "highlights": { - "textHighlights": [ - { - "startIndex": 43, - "endIndex": 52 - } - ] - } - }, - "clientEventInfo": { - "component": "result", - "element": "tweet", - "details": { - "timelinesDetails": { - "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6lA+S7djQboLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAUEILGmAsP3pQgABgAAAAEKAAcFhqXsELIv2wAAAAAA" - } - } - } - } - }, - { - "entryId": "tweet-1739819588660179006", - "sortIndex": "1739819659848318967", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739819588660179006", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNjIyMDg3OTE1MDgwNzY1NDQw", - "rest_id": "1622087915080765440", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": false, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": true, - "can_media_tag": true, - "created_at": "Sun Feb 05 04:21:31 +0000 2023", - "default_profile": true, - "default_profile_image": false, - "description": "CashFlow2023 Live or be Left.", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 45, - "followers_count": 53, - "friends_count": 46, - "has_custom_timelines": true, - "is_translator": false, - "listed_count": 0, - "location": "Spruce Grove, Alberta", - "media_count": 8, - "name": "Robbie Alm Bobbi Hotrail", - "normal_followers_count": 53, - "pinned_tweet_ids_str": [ - "1698090911039922578" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1622087915080765440/1675571076", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1698090293307002880/OabKCO3N_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "hotrailBobby710", - "statuses_count": 36, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739819588660179006" - ], - "editable_until_msecs": "1703643888000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "state": "Enabled" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Wed Dec 27 01:24:48 +0000 2023", - "conversation_id_str": "1739725238357606733", - "display_text_range": [ - 10, - 34 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "44196397", - "name": "Elon Musk", - "screen_name": "elonmusk", - "indices": [ - 0, - 9 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "@elonmusk 2 I’ll read the rest tho", - "in_reply_to_screen_name": "elonmusk", - "in_reply_to_status_id_str": "1739725238357606733", - "in_reply_to_user_id_str": "44196397", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 0, - "retweeted": false, - "user_id_str": "1622087915080765440", - "id_str": "1739819588660179006" - } - } - }, - "tweetDisplayType": "Tweet", - "highlights": { - "textHighlights": [ - { - "startIndex": 1, - "endIndex": 9 - } - ] - } - }, - "clientEventInfo": { - "component": "result", - "element": "tweet", - "details": { - "timelinesDetails": { - "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6lA+S7djQboLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAUEILGmAsP3pQgABgAAAAEKAAcFhqXsELIv2wAAAAAA" - } - } - } - } - }, - { - "entryId": "tweet-1739819587355681007", - "sortIndex": "1739819659848318966", - "content": { - "entryType": "TimelineTimelineItem", - "__typename": "TimelineTimelineItem", - "itemContent": { - "itemType": "TimelineTweet", - "__typename": "TimelineTweet", - "tweet_results": { - "result": { - "__typename": "Tweet", - "rest_id": "1739819587355681007", - "core": { - "user_results": { - "result": { - "__typename": "User", - "id": "VXNlcjoxNDkyMDM2MTY5OTQ0NzMxNjQ5", - "rest_id": "1492036169944731649", - "affiliates_highlighted_label": {}, - "has_graduated_access": true, - "is_blue_verified": true, - "profile_image_shape": "Circle", - "legacy": { - "can_dm": false, - "can_media_tag": false, - "created_at": "Fri Feb 11 07:22:22 +0000 2022", - "default_profile": true, - "default_profile_image": false, - "description": "“Is it better to out-monster the monster or to be quietly devoured?”", - "entities": { - "description": { - "urls": [] - } - }, - "fast_followers_count": 0, - "favourites_count": 462, - "followers_count": 13, - "friends_count": 40, - "has_custom_timelines": false, - "is_translator": false, - "listed_count": 0, - "location": "Northern California", - "media_count": 19, - "name": "Dustin Petersen", - "normal_followers_count": 13, - "pinned_tweet_ids_str": [ - "1735181097267499122" - ], - "possibly_sensitive": false, - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1492036169944731649/1696107587", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1708206626967371776/AEQBROCv_normal.jpg", - "profile_interstitial_type": "", - "screen_name": "dustinapetersen", - "statuses_count": 116, - "translator_type": "none", - "verified": false, - "want_retweets": false, - "withheld_in_countries": [] - } - } - } - }, - "unmention_data": {}, - "edit_control": { - "edit_tweet_ids": [ - "1739819587355681007" - ], - "editable_until_msecs": "1703643888000", - "is_edit_eligible": false, - "edits_remaining": "5" - }, - "is_translatable": false, - "views": { - "count": "1", - "state": "EnabledWithCount" - }, - "source": "Twitter for iPhone", - "legacy": { - "bookmark_count": 0, - "bookmarked": false, - "created_at": "Wed Dec 27 01:24:48 +0000 2023", - "conversation_id_str": "1739725238357606733", - "display_text_range": [ - 27, - 96 - ], - "entities": { - "hashtags": [], - "symbols": [], - "timestamps": [], - "urls": [], - "user_mentions": [ - { - "id_str": "1324336290159071232", - "name": "Dr. Matthew M. Wielicki", - "screen_name": "MatthewWielicki", - "indices": [ - 0, - 16 - ] - }, - { - "id_str": "44196397", - "name": "Elon Musk", - "screen_name": "elonmusk", - "indices": [ - 17, - 26 - ] - } - ] - }, - "favorite_count": 0, - "favorited": false, - "full_text": "@MatthewWielicki @elonmusk Spreading more accurate information is great.\n\n…but PragerU, though??", - "in_reply_to_screen_name": "MatthewWielicki", - "in_reply_to_status_id_str": "1739807483953090750", - "in_reply_to_user_id_str": "1324336290159071232", - "is_quote_status": false, - "lang": "en", - "quote_count": 0, - "reply_count": 0, - "retweet_count": 0, - "retweeted": false, - "user_id_str": "1492036169944731649", - "id_str": "1739819587355681007" - } - } - }, - "tweetDisplayType": "Tweet", - "highlights": { - "textHighlights": [ - { - "startIndex": 18, - "endIndex": 26 - } - ] - } - }, - "clientEventInfo": { - "component": "result", - "element": "tweet", - "details": { - "timelinesDetails": { - "controllerData": "DAACDAAFDAABDAABDAABCgABAAAAAAAAACAAAAwAAgoAAQAAAAAAAAABCgAC6lA+S7djQboLAAMAAAARZWxvbiBtdXNrIGxhbmc6ZW4KAAUEILGmAsP3pQgABgAAAAEKAAcFhqXsELIv2wAAAAAA" - } - } - } - } - }, - { - "entryId": "cursor-top-9223372036854775807", - "sortIndex": "9223372036854775807", - "content": { - "entryType": "TimelineTimelineCursor", - "__typename": "TimelineTimelineCursor", - "value": "DAADDAABCgABGCUUwXbXsckKAAIYJRSyXZog7wAIAAIAAAABCAADAAAAAAgABAAAAAAKAAUYJRTDPoAnEAoABhglFMM-f9jwAAA", - "cursorType": "Top" - } - }, - { - "entryId": "cursor-bottom-0", - "sortIndex": "0", - "content": { - "entryType": "TimelineTimelineCursor", - "__typename": "TimelineTimelineCursor", - "value": "DAADDAABCgABGCUUwXbXsckKAAIYJRSyXZog7wAIAAIAAAACCAADAAAAAAgABAAAAAAKAAUYJRTDPoAnEAoABhglFMM-f9jwAAA", - "cursorType": "Bottom" - } - } - ] - } - ] - } - } - } - } -} diff --git a/tests/test_parser.py b/tests/test_parser.py index 416a51f..cf3a920 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -1,5 +1,6 @@ import json import os +from typing import Callable from twscrape import API, gather from twscrape.logger import set_log_level @@ -22,38 +23,28 @@ class FakeRep: return json.loads(self.text) -def load_mock(name: str): - file = os.path.join(os.path.dirname(__file__), f"mocked-data/{name}.json") - with open(file) as f: - return json.load(f) - - -def fake_rep(fn: str, filename: str): - if not filename.startswith("/"): - filename = os.path.join(DATA_DIR, filename) - - if not filename.endswith(".json"): - filename += ".json" +def fake_rep(filename: str): + filename = filename if filename.endswith(".json") else f"{filename}.json" + filename = filename if filename.startswith("/") else os.path.join(DATA_DIR, filename) with open(filename) as fp: - data = fp.read() - - rep = FakeRep(data) - return rep + return FakeRep(fp.read()) -def mock_rep(obj, fn: str, filename: str | None = None): +def mock_rep(fn: Callable, filename: str, as_generator=False): + rep = fake_rep(filename) + async def cb_rep(*args, **kwargs): - return fake_rep(fn, filename or fn) + return rep - setattr(obj, fn, cb_rep) - - -def mock_gen(obj, fn: str): async def cb_gen(*args, **kwargs): - yield fake_rep(fn, fn) + yield rep - setattr(obj, fn, cb_gen) + assert "__self__" in dir(fn) + cb = cb_gen if as_generator else cb_rep + cb.__name__ = fn.__name__ + cb.__self__ = fn.__self__ # pyright: ignore + setattr(fn.__self__, fn.__name__, cb) # pyright: ignore def check_tweet(doc: Tweet | None): @@ -138,7 +129,7 @@ def check_user(doc: User): async def test_search(): api = API() - mock_gen(api, "search_raw") + mock_rep(api.search_raw, "raw_search", as_generator=True) items = await gather(api.search("elon musk lang:en", limit=20)) assert len(items) > 0 @@ -149,7 +140,7 @@ async def test_search(): async def test_user_by_id(): api = API() - mock_rep(api, "user_by_id_raw") + mock_rep(api.user_by_id_raw, "raw_user_by_id") doc = await api.user_by_id(2244994945) assert doc is not None @@ -167,7 +158,7 @@ async def test_user_by_id(): async def test_user_by_login(): api = API() - mock_rep(api, "user_by_login_raw") + mock_rep(api.user_by_login_raw, "raw_user_by_login") doc = await api.user_by_login("xdevelopers") assert doc is not None @@ -185,7 +176,7 @@ async def test_user_by_login(): async def test_tweet_details(): api = API() - mock_rep(api, "tweet_details_raw") + mock_rep(api.tweet_details_raw, "raw_tweet_details") doc = await api.tweet_details(1649191520250245121) assert doc is not None, "tweet should not be None" @@ -197,7 +188,7 @@ async def test_tweet_details(): async def test_followers(): api = API() - mock_gen(api, "followers_raw") + mock_rep(api.followers_raw, "raw_followers", as_generator=True) users = await gather(api.followers(2244994945)) assert len(users) > 0 @@ -208,7 +199,7 @@ async def test_followers(): async def test_following(): api = API() - mock_gen(api, "following_raw") + mock_rep(api.following_raw, "raw_following", as_generator=True) users = await gather(api.following(2244994945)) assert len(users) > 0 @@ -219,7 +210,7 @@ async def test_following(): async def test_retweters(): api = API() - mock_gen(api, "retweeters_raw") + mock_rep(api.retweeters_raw, "raw_retweeters", as_generator=True) users = await gather(api.retweeters(1649191520250245121)) assert len(users) > 0 @@ -230,7 +221,7 @@ async def test_retweters(): async def test_favoriters(): api = API() - mock_gen(api, "favoriters_raw") + mock_rep(api.favoriters_raw, "raw_favoriters", as_generator=True) users = await gather(api.favoriters(1649191520250245121)) assert len(users) > 0 @@ -241,7 +232,7 @@ async def test_favoriters(): async def test_user_tweets(): api = API() - mock_gen(api, "user_tweets_raw") + mock_rep(api.user_tweets_raw, "raw_user_tweets", as_generator=True) tweets = await gather(api.user_tweets(2244994945)) assert len(tweets) > 0 @@ -252,7 +243,7 @@ async def test_user_tweets(): async def test_user_tweets_and_replies(): api = API() - mock_gen(api, "user_tweets_and_replies_raw") + mock_rep(api.user_tweets_and_replies_raw, "raw_user_tweets_and_replies", as_generator=True) tweets = await gather(api.user_tweets_and_replies(2244994945)) assert len(tweets) > 0 @@ -263,7 +254,7 @@ async def test_user_tweets_and_replies(): async def test_list_timeline(): api = API() - mock_gen(api, "list_timeline_raw") + mock_rep(api.list_timeline_raw, "raw_list_timeline", as_generator=True) tweets = await gather(api.list_timeline(1494877848087187461)) assert len(tweets) > 0 @@ -272,6 +263,17 @@ async def test_list_timeline(): check_tweet(doc) +async def test_likes(): + api = API() + mock_rep(api.liked_tweets_raw, "raw_likes", as_generator=True) + + tweets = await gather(api.liked_tweets(2244994945)) + assert len(tweets) > 0 + + for doc in tweets: + check_tweet(doc) + + async def test_tweet_with_video(): api = API() @@ -281,7 +283,7 @@ async def test_tweet_with_video(): ] for file, twid in files: - mock_rep(api, "tweet_details_raw", file) + mock_rep(api.tweet_details_raw, file) doc = await api.tweet_details(twid) assert doc is not None check_tweet(doc) @@ -290,7 +292,7 @@ async def test_tweet_with_video(): async def test_issue_28(): api = API() - mock_rep(api, "tweet_details_raw", "_issue_28_1") + mock_rep(api.tweet_details_raw, "_issue_28_1") doc = await api.tweet_details(1658409412799737856) assert doc is not None check_tweet(doc) @@ -304,7 +306,7 @@ async def test_issue_28(): assert doc.viewCount == doc.retweetedTweet.viewCount check_tweet(doc.retweetedTweet) - mock_rep(api, "tweet_details_raw", "_issue_28_2") + mock_rep(api.tweet_details_raw, "_issue_28_2") doc = await api.tweet_details(1658421690001502208) assert doc is not None check_tweet(doc) @@ -318,7 +320,7 @@ async def test_issue_28(): async def test_issue_42(): - raw = load_mock("_issue_42") + raw = fake_rep("_issue_42").json() doc = parse_tweet(raw, 1665951747842641921) assert doc is not None assert doc.retweetedTweet is not None @@ -328,7 +330,7 @@ async def test_issue_42(): async def test_issue_56(): - raw = load_mock("_issue_56") + raw = fake_rep("_issue_56").json() doc = parse_tweet(raw, 1682072224013099008) assert doc is not None assert len(set([x.tcourl for x in doc.links])) == len(doc.links) diff --git a/twscrape/api.py b/twscrape/api.py index 2d858cc..ed74574 100644 --- a/twscrape/api.py +++ b/twscrape/api.py @@ -6,18 +6,18 @@ from .models import Tweet, User, parse_tweet, parse_tweets, parse_user, parse_us from .queue_client import QueueClient from .utils import encode_params, find_obj, get_by_path -OP_SearchTimeline = "Aj1nGkALq99Xg3XI0OZBtw/SearchTimeline" -OP_UserByRestId = "CO4_gU4G_MRREoqfiTh6Hg/UserByRestId" -OP_UserByScreenName = "NimuplG1OB7Fd2btCLdBOw/UserByScreenName" -OP_TweetDetail = "-H4B_lJDEA-O_7_qWaRiyg/TweetDetail" -OP_Followers = "3_7xfjmh897x8h_n6QBqTA/Followers" -OP_Following = "0yD6Eiv23DKXRDU9VxlG2A/Following" -OP_Retweeters = "sOBhVzDeJl4XGepvi5pHlg/Retweeters" -OP_Favoriters = "E-ZTxvWWIkmOKwYdNTEefg/Favoriters" -OP_UserTweets = "V1ze5q3ijDS1VeLwLY0m7g/UserTweets" -OP_UserTweetsAndReplies = "16nOjYqEdV04vN6-rgg8KA/UserTweetsAndReplies" -OP_ListLatestTweetsTimeline = "whF0_KH1fCkdLLoyNPMoEw/ListLatestTweetsTimeline" -OP_Likes = "IohM3gxQHfvWePH5E3KuNA/Likes" +OP_SearchTimeline = "fZK7JipRHWtiZsTodhsTfQ/SearchTimeline" +OP_UserByRestId = "tD8zKvQzwY3kdx5yz6YmOw/UserByRestId" +OP_UserByScreenName = "k5XapwcSikNsEsILW5FvgA/UserByScreenName" +OP_TweetDetail = "B9_KmbkLhXt6jRwGjJrweg/TweetDetail" +OP_Followers = "ZG1BQPaRSg04qo55kKaW2g/Followers" +OP_Following = "PAnE9toEjRfE-4tozRcsfw/Following" +OP_Retweeters = "X-XEqG5qHQSAwmvy00xfyQ/Retweeters" +OP_Favoriters = "LLkw5EcVutJL6y-2gkz22A/Favoriters" +OP_UserTweets = "5ICa5d9-AitXZrIA3H-4MQ/UserTweets" +OP_UserTweetsAndReplies = "UtLStR_BnYUGD7Q453UXQg/UserTweetsAndReplies" +OP_ListLatestTweetsTimeline = "HjsWc-nwwHKYwHenbHm-tw/ListLatestTweetsTimeline" +OP_Likes = "9s8V6sUI8fZLDiN-REkAxA/Likes" GQL_URL = "https://twitter.com/i/api/graphql" @@ -308,7 +308,8 @@ class API: yield x # likes - async def likes_raw(self, uid: int, limit=-1, kv=None): + + async def liked_tweets_raw(self, uid: int, limit=-1, kv=None): op = OP_Likes kv = { "userId": str(uid), @@ -321,7 +322,7 @@ class API: async for x in self._gql_items(op, kv, limit=limit): yield x - async def likes(self, uid: int, limit=-1, kv=None): - async for rep in self.likes_raw(uid, limit=limit, kv=kv): + async def liked_tweets(self, uid: int, limit=-1, kv=None): + async for rep in self.liked_tweets_raw(uid, limit=limit, kv=kv): for x in parse_tweets(rep.json(), limit): - yield x \ No newline at end of file + yield x diff --git a/twscrape/cli.py b/twscrape/cli.py index 21127f2..7ab5724 100644 --- a/twscrape/cli.py +++ b/twscrape/cli.py @@ -192,7 +192,7 @@ def run(): c_lim("user_tweets", "Get user tweets", "user_id", "User ID", int) c_lim("user_tweets_and_replies", "Get user tweets and replies", "user_id", "User ID", int) c_lim("list_timeline", "Get tweets from list", "list_id", "List ID", int) - c_lim("likes", "Get user's liked tweets", "user_id", "User ID", int) + c_lim("liked_tweets", "Get user's liked tweets", "user_id", "User ID", int) args = p.parse_args() if args.command is None: