diff --git a/README.md b/README.md index 98ef01981..0099ab972 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ - 网易云音乐 - FF14 - mcbbs 幻翼块讯 +- Twitter ## 功能 diff --git a/src/plugins/nonebot_bison/platform/twitter.py b/src/plugins/nonebot_bison/platform/twitter.py new file mode 100644 index 000000000..bd57222a8 --- /dev/null +++ b/src/plugins/nonebot_bison/platform/twitter.py @@ -0,0 +1,453 @@ +import functools +import random +import re +from datetime import datetime, timedelta, timezone +from json import JSONEncoder +from typing import Any, Collection, Literal, Optional, Union + +from httpx import AsyncClient, Cookies, HTTPStatusError, Response + +from ..post import Post +from ..types import ApiError, Category, RawPost, Tag, Target +from ..utils import SchedulerConfig, http_client +from .platform import NewMessage + + +class TwitterSchedConf(SchedulerConfig): + name = "twitter.com" + schedule_type = "interval" + schedule_setting = {"seconds": 30} + + # 获取 Twitter 访问 session 需要的字段 + # ref: https://github.com/DIYgod/RSSHub/blob/master/lib/v2/twitter/web-api/twitter-got.js + # The hard-coded token can be traced back to https://github.com/ytdl-org/youtube-dl/commit/b6b2ccb72fb7da7563078d4bf047d1622ba89553 yet no other explanation + _authorization = "Bearer AAAAAAAAAAAAAAAAAAAAAPYXBAAAAAAACLXUNDekMxqa8h%2F40K4moUkGsoc%3DTYfbDKbT3jJPCEVnMYqilB28NHfOPqkca3qaAxGfsyKCs0wRbw" + _header: dict[str, str] = { + "authorization": _authorization, + "x-twitter-client-language": "en", + "x-twitter-active-user": "yes", + "Referer": "https://twitter.com/", + } + + def __init__(self): + super().__init__() + self.default_http_client: AsyncClient = functools.partial( + http_client, headers=self._header + )() + + @classmethod + async def refresh_client(cls, client: AsyncClient): + """重置访问 Twitter 的 session""" + # Avoid cookies conflict + client.cookies.clear() + + csrf_token = hex(random.getrandbits(128))[2:] + client.cookies.set(name="ct0", value=csrf_token, domain="twitter.com") + client.headers["x-csrf-token"] = csrf_token + + # First request to get guest-token + resp = await TwitterUtils.raw_request( + client, "https://api.twitter.com/1.1/guest/activate.json", "POST" + ) + resp.raise_for_status() + guest_token = resp.json()["guest_token"] + client.headers["x-guest-token"] = guest_token + client.cookies.set(name="gt", value=guest_token, domain="twitter.com") + + # Second request to get _twitter_sess + ( + await TwitterUtils.raw_request( + client, "https://twitter.com/i/js_inst", "GET", {"c_name": "ui_metrics"} + ) + ).raise_for_status() + + @staticmethod + def session_handler(func): + """处理 session 重置问题的装饰器,若 403 则刷新并重试一次""" + + async def request_function(*args, **kwargs): + try: + return await func(*args, **kwargs) + except HTTPStatusError as exc: + if exc.response.status_code == 403: + client = args[1] or kwargs["client"] + assert isinstance(client, AsyncClient) + await TwitterSchedConf.refresh_client(client) + return await func(*args, **kwargs) + else: + raise exc + + return request_function + + async def get_client(self, target: Target) -> AsyncClient: + await self.refresh_client(self.default_http_client) + return await super().get_client(target) + + async def get_query_name_client(self) -> AsyncClient: + await self.refresh_client(self.default_http_client) + return await super().get_query_name_client() + + +class TwitterUtils: + # 构建 Twitter GraphQL 请求时需要的变量 + _variables: dict[str, Any] = { + "count": 20, + "includePromotedContent": False, + "withSuperFollowsUserFields": True, + "withBirdwatchPivots": False, + "withDownvotePerspective": False, + "withReactionsMetadata": False, + "withReactionsPerspective": False, + "withSuperFollowsTweetFields": True, + "withClientEventToken": False, + "withBirdwatchNotes": False, + "withVoice": True, + "withV2Timeline": False, + "__fs_interactive_text": False, + "__fs_dont_mention_me_view_api_enabled": False, + } + + @classmethod + async def get_user(cls, client: AsyncClient, target: Target) -> Response: + """通过用户名获取用户数据""" + return await cls.request( + client, + "https://twitter.com/i/api/graphql/hc-pka9A7gyS3xODIafnrQ/UserByScreenName", + "GET", + cls.make_variables({"screen_name": target, "withHighlightedLabel": True}), + ) + + @classmethod + async def get_user_id(cls, client: AsyncClient, target: Target) -> int: + """通过用户名获取用户 ID""" + result = (await cls.get_user(client, target)).json() + user_id = result["data"]["user"]["rest_id"] + if isinstance(user_id, str): + user_id = int(user_id) + assert isinstance(user_id, int) + return user_id + + @classmethod + async def gather_legacy_from_data(cls, entries, filters: str = "tweet-") -> list: + """将必要字段加入 legacy 版本,并返回 legacy 数据 + ref: https://github.com/DIYgod/RSSHub/blob/master/lib/v2/twitter/web-api/twitter-api.js + """ + tweets = list() + for entry in entries: + if entry["entryId"] and filters in entry["entryId"]: + try: + tweet = entry["content"]["itemContent"]["tweet_results"]["result"] + except KeyError: + tweet = None + if tweet: + try: + retweet = tweet["legacy"]["retweeted_status_result"]["result"] + except KeyError: + retweet = None + for t in [tweet, retweet]: + if not t: + continue + if not t["legacy"]: + continue + t["legacy"]["user"] = t["core"]["user_results"]["result"][ + "legacy" + ] + try: + quote = t["quoted_status_result"]["result"] + except KeyError: + quote = None + if quote: + t["legacy"]["quoted_status"] = quote["legacy"] + t["legacy"]["quoted_status"]["user"] = quote["core"][ + "user_results" + ]["result"]["legacy"] + legacy = tweet["legacy"] + if legacy: + if retweet: + legacy["retweeted_status"] = retweet["legacy"] + tweets.append(legacy) + return tweets + + @classmethod + async def timeline_tweets_and_replies( + cls, client: AsyncClient, user_id: int, params: dict[str, Any] = None + ): + """返回用户最新的 count=20 条推文(含回复)""" + if not params: + params = {} + return await cls.pagination_tweets( + client, + "/graphql/t4wEKVulW4Mbv1P0kgxTEw/UserTweetsAndReplies", + user_id, + params | {"withCommunity": True}, + ) + + @classmethod + async def pagination_tweets( + cls, client: AsyncClient, endpoint: str, user_id: int, variables: dict[str, Any] + ): + """ + ref: https://github.com/DIYgod/RSSHub/blob/master/lib/v2/twitter/web-api/twitter-api.js + """ + resp = await cls.request( + client, + f"https://twitter.com/i/api{endpoint}", + "GET", + cls.make_variables(variables | cls._variables | {"userId": user_id}), + ) + data = resp.json() + try: + inst = data["data"]["user"]["result"]["timeline"]["timeline"][ + "instructions" + ] + for i in inst: + if i["type"] == "TimelineAddEntries": + entries = i["entries"] + assert isinstance(entries, list) + return entries + except KeyError: + raise ApiError(resp.url) + + @classmethod + @TwitterSchedConf.session_handler + async def request( + cls, + client: AsyncClient, + url: str, + method: str = "GET", + params: dict[str, str] = None, + ) -> Response: + """包装了异常或初始化时重置 session 的请求函数 + EAFP, only refresh the client when error occured + ref: https://github.com/DIYgod/RSSHub/blob/master/lib/v2/twitter/web-api/twitter-got.js + """ + resp = await cls.raw_request(client, url, method, params=params) + resp.raise_for_status() + return resp + + @classmethod + async def raw_request( + cls, + client: AsyncClient, + url: str, + method: str, + params: dict[str, str] = None, + headers: dict[str, str] = None, + cookies: Cookies = None, + ) -> Response: + """核心请求函数""" + resp = await client.request( + method, url, params=params, headers=headers, cookies=cookies + ) + + csrf_token = resp.cookies.get("ct0") + if csrf_token: + client.headers["x-csrf-token"] = csrf_token + return resp + + @classmethod + def make_variables(cls, params: dict[str, Any]) -> dict[str, str]: + """构建 GraphQL 请求参数""" + return {"variables": cls.encode(params)} + + @classmethod + def encode(cls, params: dict[str, Any]) -> str: + """JSON 格式化函数 + ref: https://github.com/mikf/gallery-dl/blob/8805bd38ab41dcbb6aba9799008fcb9363f1c0f5/gallery_dl/extractor/twitter.py#L1039 + """ + return JSONEncoder(separators=(",", ":")).encode(params) + + @classmethod + def check_post_type( + cls, raw_post: RawPost + ) -> tuple[Literal["retweet", "quote", "reply", "original"], bool]: + """检查推文,返回其对应的类型 str 以及是否包含媒体的 bool + + 类型:retweet(转发)、quote(引文转发)、reply(回复)、original(原创) + 媒体:图片、视频 + """ + + post_type: Literal["retweet", "quote", "reply", "original"] + is_media = False + pointers = [raw_post] + + if "retweeted_status" in raw_post: + post_type = "retweet" + pointers.append(raw_post["retweeted_status"]) + elif "quoted_status" in raw_post: + post_type = "quote" + pointers.append(raw_post["quoted_status"]) + elif "in_reply_to_screen_name" in raw_post: + post_type = "reply" + else: + post_type = "original" + + for pointer in pointers: + try: + _ = pointer["extended_entities"]["media"] + is_media = True + except KeyError: + continue + + assert post_type in ["retweet", "quote", "reply", "original"] + assert is_media in [True, False] + return post_type, is_media + + @classmethod + def trim_url( + cls, raw_text: str, entities: dict[str, Any], id_str_list: list[str] + ) -> str: + """除去推文结尾存在的无关链接,并将短链接还原为原始链接""" + result = raw_text + # Media + if "media" in entities: + for media in entities["media"]: + url = media["url"] + result = result.replace(url, "") + + # Quote + for url_item in entities["urls"]: + for id_str in id_str_list: + if f"status/{id_str}" in url_item["expanded_url"]: + url = url_item["url"] + result = result.replace(url, "") + + # Recover URLs + for url_item in entities["urls"]: + old = url_item["url"] + new = url_item["expanded_url"] + result = result.replace(old, new) + + return result.strip() + + +class Twitter(NewMessage): + categories = {1: "转发媒体", 2: "转发文字", 3: "回复媒体", 4: "回复文字", 5: "原创媒体", 6: "原创文字"} + platform_name = "twitter" + name = "推特" + enable_tag = False + enabled = True + is_common = True + scheduler = TwitterSchedConf + has_target = True + + @classmethod + async def get_target_name( + cls, client: AsyncClient, target: Target + ) -> Optional[str]: + resp = await TwitterUtils.get_user(client, target) + result = resp.json() + try: + user_info = result["data"]["user"]["legacy"] + nickname = user_info["name"] + assert isinstance(nickname, str) + return nickname + except KeyError: + raise ApiError(resp.url) + + @classmethod + async def parse_target(cls, target_string: str) -> Target: + if "twitter.com/i/" in target_string: + raise cls.ParseTargetException("暂不支持通过 id 获取用户名") + if m := re.match( + r"(?:https?://)?(?:.*\.)?twitter\.com/([a-zA-Z0-9_]+)(?:/.*)?", + target_string, + ): + return Target(m.group(1)) + return Target(target_string) + + async def get_sub_list(self, target: Target) -> list[RawPost]: + user_id = await TwitterUtils.get_user_id(self.client, target) + results = await TwitterUtils.gather_legacy_from_data( + await TwitterUtils.timeline_tweets_and_replies(self.client, user_id, {}) + ) + return results + + def get_id(self, raw_post: RawPost) -> Any: + return int(raw_post["id_str"]) + + def get_date(self, raw_post: RawPost) -> float: + # 'Wed Feb 08 13:20:10 +0000 2023' + created_raw = raw_post["created_at"] + created_time = datetime.strptime( + created_raw, "%a %b %d %H:%M:%S +0000 %Y" + ).replace(tzinfo=timezone(timedelta(0))) + return created_time.timestamp() + + async def parse(self, raw_post: RawPost) -> Post: + def get_parsed_text(status: dict[str, Any], need_quote: bool = False) -> str: + scr_name = status["user"]["name"] + id_str_list = [status["id_str"]] + raw_text = status["full_text"] + if "quoted_status_id_str" in status: + id_str_list.append(status["quoted_status_id_str"]) + text = TwitterUtils.trim_url(raw_text, status["entities"], id_str_list) + if need_quote: + text = f"RT @{scr_name}:\n" + text + return text + + # TODO: Extended Tweets, Polls, Spaces + # TODO: Video media might be missing if tweets also have images + template: str = get_parsed_text(raw_post) + screen_name: str = raw_post["user"]["name"] + url: str = f"https://twitter.com/i/web/status/{raw_post['id_str']}" + images: list[Union[str, bytes]] = list() + + media_pointers = [raw_post] + tweet_type, _ = TwitterUtils.check_post_type(raw_post) + if tweet_type == "retweet": + # 暂时不处理 retweet 为 quote 情况下的多层套娃引用 + retweet = raw_post["retweeted_status"] + media_pointers.append(retweet) + template = get_parsed_text(retweet, need_quote=True) + + elif tweet_type == "quote": + quote = raw_post["quoted_status"] + media_pointers.append(quote) + template += "\n" + template += get_parsed_text(quote, need_quote=True) + + for media_pointer in media_pointers: + try: + media_entities = media_pointer["extended_entities"]["media"] + except KeyError: + continue + for item in media_entities: + # TODO: 增加对 Animated GIF 与 Video 的支持 + if item["type"] != "photo": + continue + media_url = item["media_url_https"] + # Twitter 的 retweet 媒体字段保留机制不明,有时转发时仅根目录字段带图,有时转发条目也带图,故查重判断 + if media_url not in images: + images.append(media_url) + + return Post( + "twitter", text=template, url=url, pics=images, target_name=screen_name + ) + + def get_category(self, raw_post: RawPost) -> Optional[Category]: + tweet_type, is_media = TwitterUtils.check_post_type(raw_post) + if tweet_type in ["retweet", "quote"]: + cat = 1 + elif tweet_type == "reply": + cat = 3 + else: + cat = 5 + + if not is_media: + cat += 1 + + return Category(cat) + + def get_tags(self, raw_post: RawPost) -> Optional[Collection[Tag]]: + tags = set() + + pointers = [raw_post] + if "quoted_status" in raw_post: + pointers.append(raw_post["quoted_status"]) + + for pointer in pointers: + for hashtag in pointer["entities"]["hashtags"]: + tags.add(Tag(hashtag["text"])) + + return tags diff --git a/tests/platforms/static/twitter/twitter_tweet_list.json b/tests/platforms/static/twitter/twitter_tweet_list.json new file mode 100644 index 000000000..b1b003dd2 --- /dev/null +++ b/tests/platforms/static/twitter/twitter_tweet_list.json @@ -0,0 +1 @@ +{"data": {"user": {"result": {"__typename": "User", "timeline": {"timeline": {"instructions": [{"type": "TimelineClearCache"}, {"type": "TimelineAddEntries", "entries": [{"entryId": "tweet-1623971155223941121", "sortIndex": "1623971155223941121", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623971155223941121", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Fri Feb 10 09:04:29 +0000 2023", "conversation_id_str": "1623954931911913473", "display_text_range": [0, 79], "entities": {"user_mentions": [], "urls": [], "hashtags": [{"indices": [1, 7], "text": "\u306b\u3058\u3055\u3093\u3058"}], "symbols": []}, "favorite_count": 47, "favorited": false, "full_text": "\u3010#\u306b\u3058\u3055\u3093\u3058 \u30b3\u30c8\u30d6\u30ad\u30e4\u30b7\u30e7\u30c3\u30d7\u3011\u5c55\u793a\u5e97\u8217\u306f\u30b3\u30c8\u30d6\u30ad\u30e4\u7acb\u5ddd\u672c\u5e97\u3001\u30b3\u30c8\u30d6\u30ad\u30e4\u79cb\u8449\u539f\u9928\u3001\u30b3\u30c8\u30d6\u30ad\u30e4\u65e5\u672c\u6a4b\u5e97\u306e3\u5e97\u8217\u3067\u3059\u3002\u5c55\u793a\u671f\u9593\u306f2/14\uff5e3/20\u306b\u306a\u308a\u307e\u3059\u3002", "in_reply_to_screen_name": "kotobukiya__85", "in_reply_to_status_id_str": "1623955257465409536", "in_reply_to_user_id_str": "2965293774", "is_quote_status": false, "lang": "ja", "quote_count": 3, "reply_count": 0, "retweet_count": 5, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623971155223941121", "self_thread": {"id_str": "1623954931911913473"}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623958209945010176", "sortIndex": "1623958209945010176", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623958209945010176", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Fri Feb 10 08:13:03 +0000 2023", "conversation_id_str": "1623958209945010176", "display_text_range": [0, 67], "entities": {"user_mentions": [{"id_str": "1107868757156745216", "name": "\u611b\u5712 \u611b\u7f8e\ud83d\udc95", "screen_name": "manami_aizono", "indices": [3, 17]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "RT @manami_aizono: \u3048\uff01\uff01\uff01\u3044\u308b\uff01\uff01\uff01\uff01\n\u305d\u3053\u306b\u611b\u5712\u304c\u3044\u308b\uff01\uff01\uff01\uff01\n\u30c4\u30fc\u30b7\u30e7\u64ae\u308c\u3070\u30d0\u30ec\u30f3\u30bf\u30a4\u30f3\u30c7\u30fc\u30c8\u3063\u3066\u3053\u3068\u2026\uff01\uff1f\ud83e\udef6", "is_quote_status": true, "lang": "ja", "quote_count": 0, "quoted_status_id_str": "1623954931911913473", "quoted_status_permalink": {"url": "https://t.co/b5Cmt1j0VO", "expanded": "https://twitter.com/kotobukiya__85/status/1623954931911913473", "display": "twitter.com/kotobukiya__85\u2026"}, "reply_count": 0, "retweet_count": 84, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623958209945010176", "retweeted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1623958121201938432", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMTA3ODY4NzU3MTU2NzQ1MjE2", "rest_id": "1107868757156745216", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Tue Mar 19 04:57:49 +0000 2019", "default_profile": true, "default_profile_image": false, "description": "\u306b\u3058\u3055\u3093\u3058\u6240\u5c5e\uff01\u597d\u304d\u306a\u3082\u306e\u304c\u3042\u308a\u904e\u304e\u3066\u597d\u304d\u306a\u3082\u306e\u3067\u6e80\u305f\u3055\u308c\u305f\u3044\u3002\u203b\u30bf\u30b0\u4ed8\u304dFA\u306f\u30b5\u30e0\u30cd\u30a4\u30eb\u306b\u4f7f\u7528\u3055\u305b\u3066\u9802\u304f\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002 \u5927\u597d\u304d\u306a\u30de\u30de(@itolife )(@Guchico77 )\u65e5\u5e38\u88cf\u57a2(@aizono_sub2434 )", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "youtube.com/channel/UC0WwE\u2026", "expanded_url": "https://www.youtube.com/channel/UC0WwEfE-jOM2rzjpdfhTzZA?sub_confirmation=1", "url": "https://t.co/Z02pH8ioCL", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 35815, "followers_count": 247235, "friends_count": 623, "has_custom_timelines": true, "is_translator": false, "listed_count": 6805, "location": "\u554f\u5408\u305b https://bit.ly/3rd74xA", "media_count": 2009, "name": "\u611b\u5712 \u611b\u7f8e\ud83d\udc95", "normal_followers_count": 247235, "pinned_tweet_ids_str": ["1460182360775819265"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 36.25, "rgb": {"blue": 60, "green": 43, "red": 79}}, {"percentage": 27.47, "rgb": {"blue": 169, "green": 129, "red": 232}}, {"percentage": 19.82, "rgb": {"blue": 211, "green": 212, "red": 234}}, {"percentage": 3.65, "rgb": {"blue": 159, "green": 98, "red": 252}}, {"percentage": 2.16, "rgb": {"blue": 46, "green": 45, "red": 49}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1107868757156745216/1636964265", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 36.44, "rgb": {"blue": 225, "green": 232, "red": 246}}, {"percentage": 28.77, "rgb": {"blue": 163, "green": 114, "red": 208}}, {"percentage": 14.01, "rgb": {"blue": 171, "green": 177, "red": 244}}, {"percentage": 9.04, "rgb": {"blue": 196, "green": 166, "red": 203}}, {"percentage": 2.69, "rgb": {"blue": 149, "green": 86, "red": 204}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1480050423180689409/dzE-XRlt_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "manami_aizono", "statuses_count": 15938, "translator_type": "none", "url": "https://t.co/Z02pH8ioCL", "verified": true, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "quoted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1623954931911913473", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Fri Feb 10 08:00:02 +0000 2023", "conversation_id_str": "1623954931911913473", "display_text_range": [0, 144], "entities": {"media": [{"display_url": "pic.twitter.com/4Kzg41QJF6", "expanded_url": "https://twitter.com/kotobukiya__85/status/1623954931911913473/photo/1", "id_str": "1623950345398534144", "indices": [145, 168], "media_url_https": "https://pbs.twimg.com/media/FoluPC5aQAAvafY.jpg", "type": "photo", "url": "https://t.co/4Kzg41QJF6", "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 2048, "w": 1362, "resize": "fit"}, "medium": {"h": 1200, "w": 798, "resize": "fit"}, "small": {"h": 680, "w": 452, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 3008, "width": 2000, "focus_rects": [{"x": 0, "y": 416, "w": 2000, "h": 1120}, {"x": 0, "y": 0, "w": 2000, "h": 2000}, {"x": 0, "y": 0, "w": 2000, "h": 2280}, {"x": 374, "y": 0, "w": 1504, "h": 3008}, {"x": 0, "y": 0, "w": 2000, "h": 3008}]}}], "user_mentions": [], "urls": [], "hashtags": [{"indices": [1, 7], "text": "\u306b\u3058\u3055\u3093\u3058"}, {"indices": [115, 120], "text": "\u611b\u5712\u611b\u7f8e"}, {"indices": [121, 126], "text": "\u6d77\u59b9\u56db\u8449"}, {"indices": [127, 131], "text": "\u7b39\u6728\u54b2"}, {"indices": [132, 138], "text": "\u897f\u5712\u30c1\u30b0\u30b5"}, {"indices": [139, 144], "text": "\u753a\u7530\u3061\u307e"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/4Kzg41QJF6", "expanded_url": "https://twitter.com/kotobukiya__85/status/1623954931911913473/photo/1", "id_str": "1623950345398534144", "indices": [145, 168], "media_key": "3_1623950345398534144", "media_url_https": "https://pbs.twimg.com/media/FoluPC5aQAAvafY.jpg", "type": "photo", "url": "https://t.co/4Kzg41QJF6", "ext_media_color": {"palette": [{"percentage": 51.65, "rgb": {"blue": 77, "green": 93, "red": 100}}, {"percentage": 22.87, "rgb": {"blue": 127, "green": 133, "red": 137}}, {"percentage": 8.42, "rgb": {"blue": 219, "green": 179, "red": 130}}, {"percentage": 7.47, "rgb": {"blue": 122, "green": 95, "red": 78}}, {"percentage": 6.56, "rgb": {"blue": 34, "green": 28, "red": 27}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 2048, "w": 1362, "resize": "fit"}, "medium": {"h": 1200, "w": 798, "resize": "fit"}, "small": {"h": 680, "w": 452, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 3008, "width": 2000, "focus_rects": [{"x": 0, "y": 416, "w": 2000, "h": 1120}, {"x": 0, "y": 0, "w": 2000, "h": 2000}, {"x": 0, "y": 0, "w": 2000, "h": 2280}, {"x": 374, "y": 0, "w": 1504, "h": 3008}, {"x": 0, "y": 0, "w": 2000, "h": 3008}]}}, {"display_url": "pic.twitter.com/4Kzg41QJF6", "expanded_url": "https://twitter.com/kotobukiya__85/status/1623954931911913473/photo/1", "id_str": "1623950388515999744", "indices": [145, 168], "media_key": "3_1623950388515999744", "media_url_https": "https://pbs.twimg.com/media/FoluRjhakAA5_pU.jpg", "type": "photo", "url": "https://t.co/4Kzg41QJF6", "ext_media_color": {"palette": [{"percentage": 67.18, "rgb": {"blue": 25, "green": 34, "red": 40}}, {"percentage": 10.25, "rgb": {"blue": 112, "green": 137, "red": 152}}, {"percentage": 6.02, "rgb": {"blue": 33, "green": 68, "red": 76}}, {"percentage": 5.4, "rgb": {"blue": 60, "green": 39, "red": 43}}, {"percentage": 1.12, "rgb": {"blue": 224, "green": 81, "red": 39}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 2048, "w": 1362, "resize": "fit"}, "medium": {"h": 1200, "w": 798, "resize": "fit"}, "small": {"h": 680, "w": 452, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 2522, "width": 1677, "focus_rects": [{"x": 0, "y": 349, "w": 1677, "h": 939}, {"x": 0, "y": 0, "w": 1677, "h": 1677}, {"x": 0, "y": 0, "w": 1677, "h": 1912}, {"x": 0, "y": 0, "w": 1261, "h": 2522}, {"x": 0, "y": 0, "w": 1677, "h": 2522}]}}]}, "favorite_count": 5540, "favorited": false, "full_text": "\u3010#\u306b\u3058\u3055\u3093\u3058 \u30b3\u30c8\u30d6\u30ad\u30e4\u30b7\u30e7\u30c3\u30d7\u3011\u300e\u306b\u3058\u3055\u3093\u3058\u30d0\u30ec\u30f3\u30bf\u30a4\u30f32023\u300f\u306e\u63cf\u304d\u4e0b\u308d\u3057\u30a4\u30e9\u30b9\u30c8\u3092\u4f7f\u3063\u305f\u7b49\u8eab\u5927\u30d1\u30cd\u30eb\u304c2/14\uff5e3/20\u306e\u671f\u9593\u4e2d\u5404\u5e97\u3067\u5c55\u793a\u3055\u308c\u307e\u3059\uff01\u30d5\u30c1\u3092\u30ab\u30c3\u30c8\u3057\u305f\u7279\u5225\u4ed5\u69d8\u3068\u306a\u3063\u3066\u304a\u308a\u307e\u3059\u3002\u3053\u306e\u6a5f\u4f1a\u306b\u662f\u975e\u3054\u6765\u5e97\u304f\u3060\u3055\u3044\uff01#\u611b\u5712\u611b\u7f8e #\u6d77\u59b9\u56db\u8449 #\u7b39\u6728\u54b2 #\u897f\u5712\u30c1\u30b0\u30b5 #\u753a\u7530\u3061\u307e https://t.co/4Kzg41QJF6", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 231, "reply_count": 3, "retweet_count": 1199, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623954931911913473", "self_thread": {"id_str": "1623954931911913473"}}}}, "legacy": {"created_at": "Fri Feb 10 08:12:42 +0000 2023", "conversation_id_str": "1623958121201938432", "display_text_range": [0, 48], "entities": {"user_mentions": [], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 680, "favorited": false, "full_text": "\u3048\uff01\uff01\uff01\u3044\u308b\uff01\uff01\uff01\uff01\n\u305d\u3053\u306b\u611b\u5712\u304c\u3044\u308b\uff01\uff01\uff01\uff01\n\u30c4\u30fc\u30b7\u30e7\u64ae\u308c\u3070\u30d0\u30ec\u30f3\u30bf\u30a4\u30f3\u30c7\u30fc\u30c8\u3063\u3066\u3053\u3068\u2026\uff01\uff1f\ud83e\udef6", "is_quote_status": true, "lang": "ja", "quote_count": 5, "quoted_status_id_str": "1623954931911913473", "quoted_status_permalink": {"url": "https://t.co/b5Cmt1j0VO", "expanded": "https://twitter.com/kotobukiya__85/status/1623954931911913473", "display": "twitter.com/kotobukiya__85\u2026"}, "reply_count": 7, "retweet_count": 84, "retweeted": false, "user_id_str": "1107868757156745216", "id_str": "1623958121201938432"}}}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623955257465409536", "sortIndex": "1623955257465409536", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623955257465409536", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Fri Feb 10 08:01:19 +0000 2023", "conversation_id_str": "1623954931911913473", "display_text_range": [0, 81], "entities": {"media": [{"display_url": "pic.twitter.com/Oxj2ReUZRt", "expanded_url": "https://twitter.com/kotobukiya__85/status/1623955257465409536/photo/1", "id_str": "1623955085251477510", "indices": [82, 105], "media_url_https": "https://pbs.twimg.com/media/Folyi8OagAY4qg7.jpg", "type": "photo", "url": "https://t.co/Oxj2ReUZRt", "features": {"large": {"faces": [{"x": 427, "y": 17, "h": 227, "w": 227}, {"x": 441, "y": 165, "h": 222, "w": 222}, {"x": 435, "y": 301, "h": 251, "w": 251}, {"x": 444, "y": 377, "h": 231, "w": 231}]}, "medium": {"faces": [{"x": 250, "y": 10, "h": 133, "w": 133}, {"x": 258, "y": 96, "h": 130, "w": 130}, {"x": 255, "y": 176, "h": 147, "w": 147}, {"x": 260, "y": 221, "h": 135, "w": 135}]}, "small": {"faces": [{"x": 141, "y": 5, "h": 75, "w": 75}, {"x": 146, "y": 54, "h": 73, "w": 73}, {"x": 144, "y": 100, "h": 83, "w": 83}, {"x": 147, "y": 125, "h": 76, "w": 76}]}, "orig": {"faces": [{"x": 628, "y": 26, "h": 334, "w": 334}, {"x": 649, "y": 243, "h": 326, "w": 326}, {"x": 640, "y": 443, "h": 370, "w": 370}, {"x": 652, "y": 555, "h": 340, "w": 340}]}}, "sizes": {"large": {"h": 2048, "w": 1362, "resize": "fit"}, "medium": {"h": 1200, "w": 798, "resize": "fit"}, "small": {"h": 680, "w": 452, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 3008, "width": 2000, "focus_rects": [{"x": 0, "y": 0, "w": 2000, "h": 1120}, {"x": 0, "y": 0, "w": 2000, "h": 2000}, {"x": 0, "y": 0, "w": 2000, "h": 2280}, {"x": 496, "y": 0, "w": 1504, "h": 3008}, {"x": 0, "y": 0, "w": 2000, "h": 3008}]}}], "user_mentions": [], "urls": [], "hashtags": [{"indices": [1, 7], "text": "\u306b\u3058\u3055\u3093\u3058"}, {"indices": [52, 57], "text": "\u611b\u5712\u611b\u7f8e"}, {"indices": [58, 63], "text": "\u6d77\u59b9\u56db\u8449"}, {"indices": [64, 68], "text": "\u7b39\u6728\u54b2"}, {"indices": [69, 75], "text": "\u897f\u5712\u30c1\u30b0\u30b5"}, {"indices": [76, 81], "text": "\u753a\u7530\u3061\u307e"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/Oxj2ReUZRt", "expanded_url": "https://twitter.com/kotobukiya__85/status/1623955257465409536/photo/1", "id_str": "1623955085251477510", "indices": [82, 105], "media_key": "3_1623955085251477510", "media_url_https": "https://pbs.twimg.com/media/Folyi8OagAY4qg7.jpg", "type": "photo", "url": "https://t.co/Oxj2ReUZRt", "ext_media_color": {"palette": [{"percentage": 47.03, "rgb": {"blue": 200, "green": 202, "red": 199}}, {"percentage": 25.91, "rgb": {"blue": 34, "green": 33, "red": 46}}, {"percentage": 18.7, "rgb": {"blue": 126, "green": 130, "red": 130}}, {"percentage": 7.3, "rgb": {"blue": 98, "green": 103, "red": 144}}, {"percentage": 2.15, "rgb": {"blue": 76, "green": 107, "red": 131}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 427, "y": 17, "h": 227, "w": 227}, {"x": 441, "y": 165, "h": 222, "w": 222}, {"x": 435, "y": 301, "h": 251, "w": 251}, {"x": 444, "y": 377, "h": 231, "w": 231}]}, "medium": {"faces": [{"x": 250, "y": 10, "h": 133, "w": 133}, {"x": 258, "y": 96, "h": 130, "w": 130}, {"x": 255, "y": 176, "h": 147, "w": 147}, {"x": 260, "y": 221, "h": 135, "w": 135}]}, "small": {"faces": [{"x": 141, "y": 5, "h": 75, "w": 75}, {"x": 146, "y": 54, "h": 73, "w": 73}, {"x": 144, "y": 100, "h": 83, "w": 83}, {"x": 147, "y": 125, "h": 76, "w": 76}]}, "orig": {"faces": [{"x": 628, "y": 26, "h": 334, "w": 334}, {"x": 649, "y": 243, "h": 326, "w": 326}, {"x": 640, "y": 443, "h": 370, "w": 370}, {"x": 652, "y": 555, "h": 340, "w": 340}]}}, "sizes": {"large": {"h": 2048, "w": 1362, "resize": "fit"}, "medium": {"h": 1200, "w": 798, "resize": "fit"}, "small": {"h": 680, "w": 452, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 3008, "width": 2000, "focus_rects": [{"x": 0, "y": 0, "w": 2000, "h": 1120}, {"x": 0, "y": 0, "w": 2000, "h": 2000}, {"x": 0, "y": 0, "w": 2000, "h": 2280}, {"x": 496, "y": 0, "w": 1504, "h": 3008}, {"x": 0, "y": 0, "w": 2000, "h": 3008}]}}, {"display_url": "pic.twitter.com/Oxj2ReUZRt", "expanded_url": "https://twitter.com/kotobukiya__85/status/1623955257465409536/photo/1", "id_str": "1623955119380496384", "indices": [82, 105], "media_key": "3_1623955119380496384", "media_url_https": "https://pbs.twimg.com/media/Folyk7XaAAAfFdF.jpg", "type": "photo", "url": "https://t.co/Oxj2ReUZRt", "ext_media_color": {"palette": [{"percentage": 51.09, "rgb": {"blue": 93, "green": 116, "red": 139}}, {"percentage": 31.92, "rgb": {"blue": 37, "green": 45, "red": 57}}, {"percentage": 6.24, "rgb": {"blue": 139, "green": 129, "red": 139}}, {"percentage": 4.8, "rgb": {"blue": 37, "green": 65, "red": 102}}, {"percentage": 3.73, "rgb": {"blue": 62, "green": 38, "red": 42}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 2048, "w": 1361, "resize": "fit"}, "medium": {"h": 1200, "w": 798, "resize": "fit"}, "small": {"h": 680, "w": 452, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 2437, "width": 1620, "focus_rects": [{"x": 0, "y": 216, "w": 1620, "h": 907}, {"x": 0, "y": 0, "w": 1620, "h": 1620}, {"x": 0, "y": 0, "w": 1620, "h": 1847}, {"x": 401, "y": 0, "w": 1219, "h": 2437}, {"x": 0, "y": 0, "w": 1620, "h": 2437}]}}, {"display_url": "pic.twitter.com/Oxj2ReUZRt", "expanded_url": "https://twitter.com/kotobukiya__85/status/1623955257465409536/photo/1", "id_str": "1623955138959536128", "indices": [82, 105], "media_key": "3_1623955138959536128", "media_url_https": "https://pbs.twimg.com/media/FolymETacAA4ffN.jpg", "type": "photo", "url": "https://t.co/Oxj2ReUZRt", "ext_media_color": {"palette": [{"percentage": 82.2, "rgb": {"blue": 21, "green": 24, "red": 24}}, {"percentage": 8.67, "rgb": {"blue": 128, "green": 133, "red": 144}}, {"percentage": 3.53, "rgb": {"blue": 32, "green": 58, "red": 90}}, {"percentage": 1.99, "rgb": {"blue": 48, "green": 48, "red": 87}}, {"percentage": 1.99, "rgb": {"blue": 42, "green": 33, "red": 23}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 2048, "w": 1362, "resize": "fit"}, "medium": {"h": 1200, "w": 798, "resize": "fit"}, "small": {"h": 680, "w": 452, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 3008, "width": 2000, "focus_rects": [{"x": 0, "y": 1167, "w": 2000, "h": 1120}, {"x": 0, "y": 727, "w": 2000, "h": 2000}, {"x": 0, "y": 587, "w": 2000, "h": 2280}, {"x": 0, "y": 0, "w": 1504, "h": 3008}, {"x": 0, "y": 0, "w": 2000, "h": 3008}]}}]}, "favorite_count": 5022, "favorited": false, "full_text": "\u3010#\u306b\u3058\u3055\u3093\u3058 \u30b3\u30c8\u30d6\u30ad\u30e4\u30b7\u30e7\u30c3\u30d7\u3011\u300e\u306b\u3058\u3055\u3093\u3058\u30d0\u30ec\u30f3\u30bf\u30a4\u30f32023\u300f\u306e\u63cf\u304d\u4e0b\u308d\u3057\u30a4\u30e9\u30b9\u30c8\u3092\u5c55\u793a\u4e88\u5b9a\uff01 #\u611b\u5712\u611b\u7f8e #\u6d77\u59b9\u56db\u8449 #\u7b39\u6728\u54b2 #\u897f\u5712\u30c1\u30b0\u30b5 #\u753a\u7530\u3061\u307e https://t.co/Oxj2ReUZRt", "in_reply_to_screen_name": "kotobukiya__85", "in_reply_to_status_id_str": "1623954931911913473", "in_reply_to_user_id_str": "2965293774", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 91, "reply_count": 3, "retweet_count": 1091, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623955257465409536", "self_thread": {"id_str": "1623954931911913473"}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623955176112496642", "sortIndex": "1623955176112496642", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623955176112496642", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "quoted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1616058356304863233", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo5NTA5Njc1NzY5ODA0MjI2NTc=", "rest_id": "950967576980422657", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Wed Jan 10 05:48:33 +0000 2018", "default_profile": true, "default_profile_image": false, "description": "VTuber / \u30d0\u30fc\u30c1\u30e3\u30eb\u30e9\u30a4\u30d0\u30fc\u30b0\u30eb\u30fc\u30d7\u300c\u306b\u3058\u3055\u3093\u3058\u300d\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\uff01\ud83c\udf08\ud83d\udd52\u306b\u3058\u3055\u3093\u3058\u306e\u914d\u4fe1\u3084\u30a4\u30d9\u30f3\u30c8\u3001\u30b0\u30c3\u30ba\u306a\u3069\u306e\u6700\u65b0\u60c5\u5831\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\u3002\u500b\u6027\u6ea2\u308c\u308b\u306b\u3058\u3055\u3093\u3058\u30e9\u30a4\u30d0\u30fc\u3092\u305c\u3072\u5fdc\u63f4\u3057\u3066\u304f\u3060\u3055\u3044\uff01\u30d5\u30a1\u30f3\u30a2\u30fc\u30c8\u25b7#NIJIArt", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "youtube.com/c/nijisanji", "expanded_url": "https://www.youtube.com/c/nijisanji", "url": "https://t.co/rT8lPG5qhv", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 1442, "followers_count": 1403738, "friends_count": 148, "has_custom_timelines": true, "is_translator": false, "listed_count": 16055, "location": "", "media_count": 7537, "name": "\u306b\u3058\u3055\u3093\u3058\u516c\u5f0f\ud83c\udf08\ud83d\udd52", "normal_followers_count": 1403738, "pinned_tweet_ids_str": ["1623849348844097538"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 85.45, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 3.18, "rgb": {"blue": 116, "green": 78, "red": 44}}, {"percentage": 1.56, "rgb": {"blue": 242, "green": 204, "red": 109}}, {"percentage": 1.29, "rgb": {"blue": 5, "green": 123, "red": 238}}, {"percentage": 1.13, "rgb": {"blue": 60, "green": 35, "red": 223}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/950967576980422657/1621220447", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 62.84, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 27.23, "rgb": {"blue": 113, "green": 75, "red": 41}}, {"percentage": 2.22, "rgb": {"blue": 44, "green": 12, "red": 218}}, {"percentage": 1.86, "rgb": {"blue": 7, "green": 122, "red": 240}}, {"percentage": 1.51, "rgb": {"blue": 28, "green": 235, "red": 241}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1475283036946432002/1dkmImEr_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "nijisanji_app", "statuses_count": 17006, "translator_type": "none", "url": "https://t.co/rT8lPG5qhv", "verified": false, "withheld_in_countries": []}, "professional": {"rest_id": "1460816145075011587", "professional_type": "Business", "category": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Thu Jan 19 13:01:51 +0000 2023", "conversation_id_str": "1616058356304863233", "display_text_range": [0, 181], "entities": {"media": [{"display_url": "pic.twitter.com/oRL4tYZhg7", "expanded_url": "https://twitter.com/nijisanji_app/status/1616058356304863233/photo/1", "id_str": "1616058313049006080", "indices": [182, 205], "media_url_https": "https://pbs.twimg.com/media/Fm1keTWaYAALJ6S.jpg", "type": "photo", "url": "https://t.co/oRL4tYZhg7", "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "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": [{"x": 0, "y": 5, "w": 1920, "h": 1075}, {"x": 840, "y": 0, "w": 1080, "h": 1080}, {"x": 973, "y": 0, "w": 947, "h": 1080}, {"x": 1380, "y": 0, "w": 540, "h": 1080}, {"x": 0, "y": 0, "w": 1920, "h": 1080}]}}], "user_mentions": [], "urls": [{"display_url": "prtimes.jp/main/html/rd/p\u2026", "expanded_url": "https://prtimes.jp/main/html/rd/p/000000549.000030865.html", "url": "https://t.co/yp6pZfI2Qr", "indices": [158, 181]}], "hashtags": [{"indices": [1, 7], "text": "\u306b\u3058\u3055\u3093\u3058"}, {"indices": [43, 49], "text": "\u306b\u3058\u30b9\u30c8\u30a2"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/oRL4tYZhg7", "expanded_url": "https://twitter.com/nijisanji_app/status/1616058356304863233/photo/1", "id_str": "1616058313049006080", "indices": [182, 205], "media_key": "3_1616058313049006080", "media_url_https": "https://pbs.twimg.com/media/Fm1keTWaYAALJ6S.jpg", "type": "photo", "url": "https://t.co/oRL4tYZhg7", "ext_media_color": {"palette": [{"percentage": 18.93, "rgb": {"blue": 104, "green": 39, "red": 60}}, {"percentage": 15.86, "rgb": {"blue": 46, "green": 30, "red": 36}}, {"percentage": 9.17, "rgb": {"blue": 217, "green": 187, "red": 211}}, {"percentage": 6.37, "rgb": {"blue": 137, "green": 69, "red": 160}}, {"percentage": 4.45, "rgb": {"blue": 16, "green": 239, "red": 236}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "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": [{"x": 0, "y": 5, "w": 1920, "h": 1075}, {"x": 840, "y": 0, "w": 1080, "h": 1080}, {"x": 973, "y": 0, "w": 947, "h": 1080}, {"x": 1380, "y": 0, "w": 540, "h": 1080}, {"x": 0, "y": 0, "w": 1920, "h": 1080}]}}]}, "favorite_count": 19098, "favorited": false, "full_text": "\u3010#\u306b\u3058\u3055\u3093\u3058 \u65b0\u898f\u30c7\u30d3\u30e5\u30fc\u30e9\u30a4\u30d0\u30fcWelcome Goods\uff06Voice\u767b\u5834\uff01\u3011\n\n#\u306b\u3058\u30b9\u30c8\u30a2 \u306b\u3066\u3001\u5c0f\u6e05\u6c34\u900f\u3001\u7345\u5b50\u5802\u3042\u304b\u308a\u3001\u93d1\u6728\u308d\u3053\u3001\u4e94\u5341\u5d50\u68a8\u82b1\u3001\u77f3\u795e\u306e\u305e\u307f\u3001\u30bd\u30d5\u30a3\u30a2\u30fb\u30f4\u30a1\u30ec\u30f3\u30bf\u30a4\u30f3\u3001\u5009\u6301\u3081\u308b\u3068\u306e\n\u300cWelcome Goods\uff06Voice\u300d\u304c\u767a\u58f2\u6c7a\u5b9a\uff01\n\n1/19(\u6728)22:00\u304b\u3089\u9806\u6b21\u767a\u58f2\u958b\u59cb\uff01\n\n\u8a73\u7d30\u25bd\nhttps://t.co/yp6pZfI2Qr https://t.co/oRL4tYZhg7", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 236, "reply_count": 5, "retweet_count": 3480, "retweeted": false, "user_id_str": "950967576980422657", "id_str": "1616058356304863233", "self_thread": {"id_str": "1616058356304863233"}}}}, "legacy": {"created_at": "Fri Feb 10 08:01:00 +0000 2023", "conversation_id_str": "1623955176112496642", "display_text_range": [0, 159], "entities": {"user_mentions": [], "urls": [], "hashtags": [{"indices": [1, 7], "text": "\u306b\u3058\u3055\u3093\u3058"}, {"indices": [112, 118], "text": "\u5009\u6301\u3081\u308b\u3068"}, {"indices": [119, 132], "text": "\u30bd\u30d5\u30a3\u30a2\u30fb\u30f4\u30a1\u30ec\u30f3\u30bf\u30a4\u30f3"}, {"indices": [133, 139], "text": "\u4e94\u5341\u5d50\u68a8\u82b1"}, {"indices": [140, 145], "text": "\u93d1\u6728\u308d\u3053"}, {"indices": [146, 153], "text": "\u7345\u5b50\u5802\u3042\u304b\u308a"}, {"indices": [154, 159], "text": "\u5c0f\u6e05\u6c34\u900f"}], "symbols": []}, "favorite_count": 2185, "favorited": false, "full_text": "\u3010#\u306b\u3058\u3055\u3093\u3058 \u30b3\u30c8\u30d6\u30ad\u30e4\u30b7\u30e7\u30c3\u30d7\u3011\u300e2023\u5e741\u6708\u30c7\u30d3\u30e5\u30fc\u30e9\u30a4\u30d0\u30fcWelcome Goods\u300f\u306e\u767a\u58f2\u65e5\u304c\u6c7a\u5b9a\uff013\u67084\u65e5\u304b\u3089\u8ca9\u58f2\u958b\u59cb\uff01\u30e9\u30f3\u30c0\u30e0\u30c1\u30a7\u30ad\u98a8\u30ab\u30fc\u30c9\u304c\u304a1\u4eba\u69d820\u70b9\u307e\u3067\u3001\u305d\u308c\u4ee5\u5916\u306e\u5546\u54c1\u306f\u54043\u70b9\u307e\u3067\u3054\u8cfc\u5165\u3044\u305f\u3060\u3051\u307e\u3059 #\u5009\u6301\u3081\u308b\u3068 #\u30bd\u30d5\u30a3\u30a2\u30fb\u30f4\u30a1\u30ec\u30f3\u30bf\u30a4\u30f3 #\u4e94\u5341\u5d50\u68a8\u82b1 #\u93d1\u6728\u308d\u3053 #\u7345\u5b50\u5802\u3042\u304b\u308a #\u5c0f\u6e05\u6c34\u900f", "is_quote_status": true, "lang": "ja", "quote_count": 10, "quoted_status_id_str": "1616058356304863233", "quoted_status_permalink": {"url": "https://t.co/4lL9NAxhO6", "expanded": "https://twitter.com/nijisanji_app/status/1616058356304863233", "display": "twitter.com/nijisanji_app/\u2026"}, "reply_count": 0, "retweet_count": 187, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623955176112496642"}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623954931911913473", "sortIndex": "1623954931911913473", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623954931911913473", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Fri Feb 10 08:00:02 +0000 2023", "conversation_id_str": "1623954931911913473", "display_text_range": [0, 144], "entities": {"media": [{"display_url": "pic.twitter.com/4Kzg41QJF6", "expanded_url": "https://twitter.com/kotobukiya__85/status/1623954931911913473/photo/1", "id_str": "1623950345398534144", "indices": [145, 168], "media_url_https": "https://pbs.twimg.com/media/FoluPC5aQAAvafY.jpg", "type": "photo", "url": "https://t.co/4Kzg41QJF6", "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 2048, "w": 1362, "resize": "fit"}, "medium": {"h": 1200, "w": 798, "resize": "fit"}, "small": {"h": 680, "w": 452, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 3008, "width": 2000, "focus_rects": [{"x": 0, "y": 416, "w": 2000, "h": 1120}, {"x": 0, "y": 0, "w": 2000, "h": 2000}, {"x": 0, "y": 0, "w": 2000, "h": 2280}, {"x": 374, "y": 0, "w": 1504, "h": 3008}, {"x": 0, "y": 0, "w": 2000, "h": 3008}]}}], "user_mentions": [], "urls": [], "hashtags": [{"indices": [1, 7], "text": "\u306b\u3058\u3055\u3093\u3058"}, {"indices": [115, 120], "text": "\u611b\u5712\u611b\u7f8e"}, {"indices": [121, 126], "text": "\u6d77\u59b9\u56db\u8449"}, {"indices": [127, 131], "text": "\u7b39\u6728\u54b2"}, {"indices": [132, 138], "text": "\u897f\u5712\u30c1\u30b0\u30b5"}, {"indices": [139, 144], "text": "\u753a\u7530\u3061\u307e"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/4Kzg41QJF6", "expanded_url": "https://twitter.com/kotobukiya__85/status/1623954931911913473/photo/1", "id_str": "1623950345398534144", "indices": [145, 168], "media_key": "3_1623950345398534144", "media_url_https": "https://pbs.twimg.com/media/FoluPC5aQAAvafY.jpg", "type": "photo", "url": "https://t.co/4Kzg41QJF6", "ext_media_color": {"palette": [{"percentage": 51.65, "rgb": {"blue": 77, "green": 93, "red": 100}}, {"percentage": 22.87, "rgb": {"blue": 127, "green": 133, "red": 137}}, {"percentage": 8.42, "rgb": {"blue": 219, "green": 179, "red": 130}}, {"percentage": 7.47, "rgb": {"blue": 122, "green": 95, "red": 78}}, {"percentage": 6.56, "rgb": {"blue": 34, "green": 28, "red": 27}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 2048, "w": 1362, "resize": "fit"}, "medium": {"h": 1200, "w": 798, "resize": "fit"}, "small": {"h": 680, "w": 452, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 3008, "width": 2000, "focus_rects": [{"x": 0, "y": 416, "w": 2000, "h": 1120}, {"x": 0, "y": 0, "w": 2000, "h": 2000}, {"x": 0, "y": 0, "w": 2000, "h": 2280}, {"x": 374, "y": 0, "w": 1504, "h": 3008}, {"x": 0, "y": 0, "w": 2000, "h": 3008}]}}, {"display_url": "pic.twitter.com/4Kzg41QJF6", "expanded_url": "https://twitter.com/kotobukiya__85/status/1623954931911913473/photo/1", "id_str": "1623950388515999744", "indices": [145, 168], "media_key": "3_1623950388515999744", "media_url_https": "https://pbs.twimg.com/media/FoluRjhakAA5_pU.jpg", "type": "photo", "url": "https://t.co/4Kzg41QJF6", "ext_media_color": {"palette": [{"percentage": 67.18, "rgb": {"blue": 25, "green": 34, "red": 40}}, {"percentage": 10.25, "rgb": {"blue": 112, "green": 137, "red": 152}}, {"percentage": 6.02, "rgb": {"blue": 33, "green": 68, "red": 76}}, {"percentage": 5.4, "rgb": {"blue": 60, "green": 39, "red": 43}}, {"percentage": 1.12, "rgb": {"blue": 224, "green": 81, "red": 39}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 2048, "w": 1362, "resize": "fit"}, "medium": {"h": 1200, "w": 798, "resize": "fit"}, "small": {"h": 680, "w": 452, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 2522, "width": 1677, "focus_rects": [{"x": 0, "y": 349, "w": 1677, "h": 939}, {"x": 0, "y": 0, "w": 1677, "h": 1677}, {"x": 0, "y": 0, "w": 1677, "h": 1912}, {"x": 0, "y": 0, "w": 1261, "h": 2522}, {"x": 0, "y": 0, "w": 1677, "h": 2522}]}}]}, "favorite_count": 5540, "favorited": false, "full_text": "\u3010#\u306b\u3058\u3055\u3093\u3058 \u30b3\u30c8\u30d6\u30ad\u30e4\u30b7\u30e7\u30c3\u30d7\u3011\u300e\u306b\u3058\u3055\u3093\u3058\u30d0\u30ec\u30f3\u30bf\u30a4\u30f32023\u300f\u306e\u63cf\u304d\u4e0b\u308d\u3057\u30a4\u30e9\u30b9\u30c8\u3092\u4f7f\u3063\u305f\u7b49\u8eab\u5927\u30d1\u30cd\u30eb\u304c2/14\uff5e3/20\u306e\u671f\u9593\u4e2d\u5404\u5e97\u3067\u5c55\u793a\u3055\u308c\u307e\u3059\uff01\u30d5\u30c1\u3092\u30ab\u30c3\u30c8\u3057\u305f\u7279\u5225\u4ed5\u69d8\u3068\u306a\u3063\u3066\u304a\u308a\u307e\u3059\u3002\u3053\u306e\u6a5f\u4f1a\u306b\u662f\u975e\u3054\u6765\u5e97\u304f\u3060\u3055\u3044\uff01#\u611b\u5712\u611b\u7f8e #\u6d77\u59b9\u56db\u8449 #\u7b39\u6728\u54b2 #\u897f\u5712\u30c1\u30b0\u30b5 #\u753a\u7530\u3061\u307e https://t.co/4Kzg41QJF6", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 231, "reply_count": 3, "retweet_count": 1199, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623954931911913473", "self_thread": {"id_str": "1623954931911913473"}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623895955241332736", "sortIndex": "1623895955241332736", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623895955241332736", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Fri Feb 10 04:05:40 +0000 2023", "conversation_id_str": "1623895955241332736", "display_text_range": [0, 140], "entities": {"user_mentions": [{"id_str": "1324233991973609473", "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058", "screen_name": "kotobukiya_kuji", "indices": [3, 19]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "RT @kotobukiya_kuji: \u3010\u8ca9\u58f2\u7d42\u4e86\u307e\u3067\u3042\u30685\u65e5\uff01\u3011\nA\u8cde\u306f\u3001\u300c\u30d5\u30e9\u30ce\u2015\u30eb\u306e\u96ea\u30a6\u30b5\u30ae\u300d\u3092\u30e2\u30c1\u30fc\u30d5\u306b\u3057\u305f\u306c\u3044\u3050\u308b\u307f\uff01 \n\u3053\u3053\u3067\u3057\u304b\u8cb7\u3048\u306a\u3044\u9650\u5b9a\u54c1\u306e\u305f\u3081\u3001\u305c\u3072\u671f\u65e5\u307e\u3067\u306e\u3054\u8cfc\u5165\u3092\u304a\u5fd8\u308c\u306a\u304f\uff01\n\n\u8ca9\u58f2\u671f\u9650\uff1a2023/2/12(\u65e5)\u307e\u3067\n\n\u25bc\u3054\u8cfc\u5165\u306f\u3053\u3061\u3089\nhttps:/\u2026", "is_quote_status": false, "lang": "ja", "quote_count": 0, "reply_count": 0, "retweet_count": 6, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623895955241332736", "retweeted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1622882869214314497", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzI0MjMzOTkxOTczNjA5NDcz", "rest_id": "1324233991973609473", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Nov 05 06:16:19 +0000 2020", "default_profile": true, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc \u58fd\u5c4b\u306e\u30aa\u30f3\u30e9\u30a4\u30f3\u304f\u3058\u30b5\u30fc\u30d3\u30b9\u300c\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058\u300d\u306e\u516c\u5f0f\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u3059\u3002 \u3053\u3053\u3067\u3057\u304b\u624b\u306b\u5165\u3089\u306a\u3044\u9650\u5b9a\u304f\u3058\u4f01\u753b\u3084\u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u3092\u7d9a\u3005\u3054\u7d39\u4ecb\u4e88\u5b9a\uff01 #\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058 #\u30b3\u30c8\u304f\u3058 \u203b\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192https://t.co/Tv22ZCHVMn", "entities": {"description": {"urls": [{"display_url": "kuji.kotobukiya.co.jp/contact/", "expanded_url": "http://kuji.kotobukiya.co.jp/contact/", "url": "https://t.co/Tv22ZCHVMn", "indices": [106, 129]}]}, "url": {"urls": [{"display_url": "kuji.kotobukiya.co.jp", "expanded_url": "https://kuji.kotobukiya.co.jp/", "url": "https://t.co/Ev3XP3mdHl", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 26, "followers_count": 16965, "friends_count": 29, "has_custom_timelines": false, "is_translator": false, "listed_count": 33, "location": "", "media_count": 285, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058", "normal_followers_count": 16965, "pinned_tweet_ids_str": ["1622414775798960128"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 61.85, "rgb": {"blue": 243, "green": 239, "red": 230}}, {"percentage": 8.56, "rgb": {"blue": 104, "green": 83, "red": 91}}, {"percentage": 6.03, "rgb": {"blue": 167, "green": 191, "red": 210}}, {"percentage": 5.47, "rgb": {"blue": 124, "green": 127, "red": 182}}, {"percentage": 1.71, "rgb": {"blue": 201, "green": 215, "red": 194}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1324233991973609473/1674431584", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 71.22, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 26.01, "rgb": {"blue": 70, "green": 153, "red": 1}}, {"percentage": 1.78, "rgb": {"blue": 168, "green": 205, "red": 138}}, {"percentage": 0.56, "rgb": {"blue": 48, "green": 185, "red": 111}}, {"percentage": 0.15, "rgb": {"blue": 130, "green": 182, "red": 81}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1351381239698124803/9DCaBUBA_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya_kuji", "statuses_count": 479, "translator_type": "none", "url": "https://t.co/Ev3XP3mdHl", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Tue Feb 07 09:00:02 +0000 2023", "conversation_id_str": "1622882869214314497", "display_text_range": [0, 156], "entities": {"media": [{"display_url": "pic.twitter.com/1w2jSH1Q8v", "expanded_url": "https://twitter.com/kotobukiya_kuji/status/1622882869214314497/photo/1", "id_str": "1620286280507748353", "indices": [157, 180], "media_url_https": "https://pbs.twimg.com/media/FnxpyZgacAEdz5r.jpg", "type": "photo", "url": "https://t.co/1w2jSH1Q8v", "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 1366, "w": 2048, "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": 2731, "width": 4096, "focus_rects": [{"x": 0, "y": 437, "w": 4096, "h": 2294}, {"x": 580, "y": 0, "w": 2731, "h": 2731}, {"x": 747, "y": 0, "w": 2396, "h": 2731}, {"x": 1262, "y": 0, "w": 1366, "h": 2731}, {"x": 0, "y": 0, "w": 4096, "h": 2731}]}}], "user_mentions": [], "urls": [{"display_url": "kuji.kotobukiya.co.jp/lp/tos20th/?ut\u2026", "expanded_url": "https://kuji.kotobukiya.co.jp/lp/tos20th/?utm_source=twitter&utm_medium=social&utm_campaign=230207", "url": "https://t.co/TW4rNg5iwp", "indices": [111, 134]}], "hashtags": [{"indices": [136, 141], "text": "\u30c6\u30a4\u30eb\u30ba"}, {"indices": [142, 147], "text": "TOSR"}, {"indices": [148, 156], "text": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/1w2jSH1Q8v", "expanded_url": "https://twitter.com/kotobukiya_kuji/status/1622882869214314497/photo/1", "id_str": "1620286280507748353", "indices": [157, 180], "media_key": "3_1620286280507748353", "media_url_https": "https://pbs.twimg.com/media/FnxpyZgacAEdz5r.jpg", "type": "photo", "url": "https://t.co/1w2jSH1Q8v", "ext_media_color": {"palette": [{"percentage": 99.25, "rgb": {"blue": 224, "green": 231, "red": 235}}, {"percentage": 0.43, "rgb": {"blue": 119, "green": 137, "red": 152}}, {"percentage": 0.17, "rgb": {"blue": 4, "green": 10, "red": 195}}, {"percentage": 0.1, "rgb": {"blue": 124, "green": 131, "red": 198}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 1366, "w": 2048, "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": 2731, "width": 4096, "focus_rects": [{"x": 0, "y": 437, "w": 4096, "h": 2294}, {"x": 580, "y": 0, "w": 2731, "h": 2731}, {"x": 747, "y": 0, "w": 2396, "h": 2731}, {"x": 1262, "y": 0, "w": 1366, "h": 2731}, {"x": 0, "y": 0, "w": 4096, "h": 2731}]}}]}, "favorite_count": 8, "favorited": false, "full_text": "\u3010\u8ca9\u58f2\u7d42\u4e86\u307e\u3067\u3042\u30685\u65e5\uff01\u3011\nA\u8cde\u306f\u3001\u300c\u30d5\u30e9\u30ce\u2015\u30eb\u306e\u96ea\u30a6\u30b5\u30ae\u300d\u3092\u30e2\u30c1\u30fc\u30d5\u306b\u3057\u305f\u306c\u3044\u3050\u308b\u307f\uff01 \n\u3053\u3053\u3067\u3057\u304b\u8cb7\u3048\u306a\u3044\u9650\u5b9a\u54c1\u306e\u305f\u3081\u3001\u305c\u3072\u671f\u65e5\u307e\u3067\u306e\u3054\u8cfc\u5165\u3092\u304a\u5fd8\u308c\u306a\u304f\uff01\n\n\u8ca9\u58f2\u671f\u9650\uff1a2023/2/12(\u65e5)\u307e\u3067\n\n\u25bc\u3054\u8cfc\u5165\u306f\u3053\u3061\u3089\nhttps://t.co/TW4rNg5iwp\n\n#\u30c6\u30a4\u30eb\u30ba #TOSR #\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058 https://t.co/1w2jSH1Q8v", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 6, "retweeted": false, "user_id_str": "1324233991973609473", "id_str": "1622882869214314497"}}}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623895929198878720", "sortIndex": "1623895929198878720", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623895929198878720", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Fri Feb 10 04:05:34 +0000 2023", "conversation_id_str": "1623895929198878720", "display_text_range": [0, 140], "entities": {"user_mentions": [{"id_str": "1324233991973609473", "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058", "screen_name": "kotobukiya_kuji", "indices": [3, 19]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "RT @kotobukiya_kuji: \u3010\u8ca9\u58f2\u7d42\u4e86\u307e\u3067\u3042\u30684\u65e5\uff01\u3011\nB\u8cde\u306f\u3001\u63cf\u304d\u4e0b\u308d\u3057\u30a4\u30e9\u30b9\u30c8\u3092\u4f7f\u7528\u3057\u305f\u300c\u30a2\u30af\u30ea\u30eb\u30b9\u30bf\u30f3\u30c9\u300d\uff01\u51689\u7a2e\u304b\u3089\u9078\u3079\u307e\u3059\u266a\n\u3053\u3053\u3067\u3057\u304b\u8cb7\u3048\u306a\u3044\u9650\u5b9a\u54c1\u306e\u305f\u3081\u3001\u305c\u3072\u671f\u65e5\u307e\u3067\u306e\u3054\u8cfc\u5165\u3092\u304a\u5fd8\u308c\u306a\u304f\uff01\n\n\u8ca9\u58f2\u671f\u9650\uff1a2023/2/12(\u65e5)\u307e\u3067\n\n\u25bc\u3054\u8cfc\u5165\u306f\u3053\u3061\u3089\u2026", "is_quote_status": false, "lang": "ja", "quote_count": 0, "reply_count": 0, "retweet_count": 2, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623895929198878720", "retweeted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1623245259999268865", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzI0MjMzOTkxOTczNjA5NDcz", "rest_id": "1324233991973609473", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Nov 05 06:16:19 +0000 2020", "default_profile": true, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc \u58fd\u5c4b\u306e\u30aa\u30f3\u30e9\u30a4\u30f3\u304f\u3058\u30b5\u30fc\u30d3\u30b9\u300c\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058\u300d\u306e\u516c\u5f0f\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u3059\u3002 \u3053\u3053\u3067\u3057\u304b\u624b\u306b\u5165\u3089\u306a\u3044\u9650\u5b9a\u304f\u3058\u4f01\u753b\u3084\u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u3092\u7d9a\u3005\u3054\u7d39\u4ecb\u4e88\u5b9a\uff01 #\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058 #\u30b3\u30c8\u304f\u3058 \u203b\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192https://t.co/Tv22ZCHVMn", "entities": {"description": {"urls": [{"display_url": "kuji.kotobukiya.co.jp/contact/", "expanded_url": "http://kuji.kotobukiya.co.jp/contact/", "url": "https://t.co/Tv22ZCHVMn", "indices": [106, 129]}]}, "url": {"urls": [{"display_url": "kuji.kotobukiya.co.jp", "expanded_url": "https://kuji.kotobukiya.co.jp/", "url": "https://t.co/Ev3XP3mdHl", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 26, "followers_count": 16965, "friends_count": 29, "has_custom_timelines": false, "is_translator": false, "listed_count": 33, "location": "", "media_count": 285, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058", "normal_followers_count": 16965, "pinned_tweet_ids_str": ["1622414775798960128"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 61.85, "rgb": {"blue": 243, "green": 239, "red": 230}}, {"percentage": 8.56, "rgb": {"blue": 104, "green": 83, "red": 91}}, {"percentage": 6.03, "rgb": {"blue": 167, "green": 191, "red": 210}}, {"percentage": 5.47, "rgb": {"blue": 124, "green": 127, "red": 182}}, {"percentage": 1.71, "rgb": {"blue": 201, "green": 215, "red": 194}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1324233991973609473/1674431584", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 71.22, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 26.01, "rgb": {"blue": 70, "green": 153, "red": 1}}, {"percentage": 1.78, "rgb": {"blue": 168, "green": 205, "red": 138}}, {"percentage": 0.56, "rgb": {"blue": 48, "green": 185, "red": 111}}, {"percentage": 0.15, "rgb": {"blue": 130, "green": 182, "red": 81}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1351381239698124803/9DCaBUBA_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya_kuji", "statuses_count": 479, "translator_type": "none", "url": "https://t.co/Ev3XP3mdHl", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Wed Feb 08 09:00:03 +0000 2023", "conversation_id_str": "1623245259999268865", "display_text_range": [0, 164], "entities": {"media": [{"display_url": "pic.twitter.com/JRGP49fMqM", "expanded_url": "https://twitter.com/kotobukiya_kuji/status/1623245259999268865/photo/1", "id_str": "1620286371721281538", "indices": [165, 188], "media_url_https": "https://pbs.twimg.com/media/Fnxp3tTagAI8Dzm.jpg", "type": "photo", "url": "https://t.co/JRGP49fMqM", "features": {"large": {"faces": [{"x": 856, "y": 892, "h": 112, "w": 112}, {"x": 1560, "y": 540, "h": 148, "w": 148}]}, "medium": {"faces": [{"x": 501, "y": 522, "h": 65, "w": 65}, {"x": 914, "y": 316, "h": 86, "w": 86}]}, "small": {"faces": [{"x": 284, "y": 296, "h": 37, "w": 37}, {"x": 517, "y": 179, "h": 49, "w": 49}]}, "orig": {"faces": [{"x": 1712, "y": 1784, "h": 224, "w": 224}, {"x": 3120, "y": 1080, "h": 296, "w": 296}]}}, "sizes": {"large": {"h": 1366, "w": 2048, "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": 2731, "width": 4096, "focus_rects": [{"x": 0, "y": 0, "w": 4096, "h": 2294}, {"x": 785, "y": 0, "w": 2731, "h": 2731}, {"x": 952, "y": 0, "w": 2396, "h": 2731}, {"x": 1467, "y": 0, "w": 1366, "h": 2731}, {"x": 0, "y": 0, "w": 4096, "h": 2731}]}}], "user_mentions": [], "urls": [{"display_url": "kuji.kotobukiya.co.jp/lp/tos20th/?ut\u2026", "expanded_url": "https://kuji.kotobukiya.co.jp/lp/tos20th/?utm_source=twitter&utm_medium=social&utm_campaign=230208", "url": "https://t.co/mVsg1klDv7", "indices": [119, 142]}], "hashtags": [{"indices": [144, 149], "text": "\u30c6\u30a4\u30eb\u30ba"}, {"indices": [150, 155], "text": "TOSR"}, {"indices": [156, 164], "text": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/JRGP49fMqM", "expanded_url": "https://twitter.com/kotobukiya_kuji/status/1623245259999268865/photo/1", "id_str": "1620286371721281538", "indices": [165, 188], "media_key": "3_1620286371721281538", "media_url_https": "https://pbs.twimg.com/media/Fnxp3tTagAI8Dzm.jpg", "type": "photo", "url": "https://t.co/JRGP49fMqM", "ext_media_color": {"palette": [{"percentage": 89.61, "rgb": {"blue": 217, "green": 227, "red": 231}}, {"percentage": 2.47, "rgb": {"blue": 54, "green": 58, "red": 83}}, {"percentage": 1.43, "rgb": {"blue": 144, "green": 154, "red": 222}}, {"percentage": 1.14, "rgb": {"blue": 206, "green": 184, "red": 182}}, {"percentage": 0.95, "rgb": {"blue": 46, "green": 94, "red": 197}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 856, "y": 892, "h": 112, "w": 112}, {"x": 1560, "y": 540, "h": 148, "w": 148}]}, "medium": {"faces": [{"x": 501, "y": 522, "h": 65, "w": 65}, {"x": 914, "y": 316, "h": 86, "w": 86}]}, "small": {"faces": [{"x": 284, "y": 296, "h": 37, "w": 37}, {"x": 517, "y": 179, "h": 49, "w": 49}]}, "orig": {"faces": [{"x": 1712, "y": 1784, "h": 224, "w": 224}, {"x": 3120, "y": 1080, "h": 296, "w": 296}]}}, "sizes": {"large": {"h": 1366, "w": 2048, "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": 2731, "width": 4096, "focus_rects": [{"x": 0, "y": 0, "w": 4096, "h": 2294}, {"x": 785, "y": 0, "w": 2731, "h": 2731}, {"x": 952, "y": 0, "w": 2396, "h": 2731}, {"x": 1467, "y": 0, "w": 1366, "h": 2731}, {"x": 0, "y": 0, "w": 4096, "h": 2731}]}}]}, "favorite_count": 4, "favorited": false, "full_text": "\u3010\u8ca9\u58f2\u7d42\u4e86\u307e\u3067\u3042\u30684\u65e5\uff01\u3011\nB\u8cde\u306f\u3001\u63cf\u304d\u4e0b\u308d\u3057\u30a4\u30e9\u30b9\u30c8\u3092\u4f7f\u7528\u3057\u305f\u300c\u30a2\u30af\u30ea\u30eb\u30b9\u30bf\u30f3\u30c9\u300d\uff01\u51689\u7a2e\u304b\u3089\u9078\u3079\u307e\u3059\u266a\n\u3053\u3053\u3067\u3057\u304b\u8cb7\u3048\u306a\u3044\u9650\u5b9a\u54c1\u306e\u305f\u3081\u3001\u305c\u3072\u671f\u65e5\u307e\u3067\u306e\u3054\u8cfc\u5165\u3092\u304a\u5fd8\u308c\u306a\u304f\uff01\n\n\u8ca9\u58f2\u671f\u9650\uff1a2023/2/12(\u65e5)\u307e\u3067\n\n\u25bc\u3054\u8cfc\u5165\u306f\u3053\u3061\u3089\nhttps://t.co/mVsg1klDv7\n\n#\u30c6\u30a4\u30eb\u30ba #TOSR #\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058 https://t.co/JRGP49fMqM", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 2, "retweeted": false, "user_id_str": "1324233991973609473", "id_str": "1623245259999268865"}}}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623895897934536704", "sortIndex": "1623895897934536704", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623895897934536704", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Fri Feb 10 04:05:27 +0000 2023", "conversation_id_str": "1623895897934536704", "display_text_range": [0, 140], "entities": {"user_mentions": [{"id_str": "1324233991973609473", "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058", "screen_name": "kotobukiya_kuji", "indices": [3, 19]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "RT @kotobukiya_kuji: \u3010\u8ca9\u58f2\u7d42\u4e86\u307e\u3067\u3042\u30683\u65e5\uff01\u3011\nC\u8cde\u306f\u3001\u3077\u3063\u304f\u308a\u30ad\u30e9\u30ad\u30e9\u611f\u304c\u9b45\u529b\u306e\u300c\u30c7\u30b3\u30ad\u30e9\u2606\u30af\u30ea\u30a2\u30ab\u30fc\u30c9\u30bb\u30c3\u30c8\u300d\uff01\u51683\u7a2e\u304b\u3089\u9078\u3079\u307e\u3059\u266a\n\u3053\u3053\u3067\u3057\u304b\u8cb7\u3048\u306a\u3044\u9650\u5b9a\u54c1\u306e\u305f\u3081\u3001\u671f\u65e5\u307e\u3067\u306e\u3054\u8cfc\u5165\u3092\u304a\u5fd8\u308c\u306a\u304f!\n\n\u8ca9\u58f2\u671f\u9650\uff1a2023/2/12(\u65e5)\u307e\u3067\n\n\u25bc\u3054\u8cfc\u5165\u306f\u2026", "is_quote_status": false, "lang": "ja", "quote_count": 0, "reply_count": 0, "retweet_count": 4, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623895897934536704", "retweeted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1623607637228109824", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzI0MjMzOTkxOTczNjA5NDcz", "rest_id": "1324233991973609473", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Nov 05 06:16:19 +0000 2020", "default_profile": true, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc \u58fd\u5c4b\u306e\u30aa\u30f3\u30e9\u30a4\u30f3\u304f\u3058\u30b5\u30fc\u30d3\u30b9\u300c\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058\u300d\u306e\u516c\u5f0f\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u3059\u3002 \u3053\u3053\u3067\u3057\u304b\u624b\u306b\u5165\u3089\u306a\u3044\u9650\u5b9a\u304f\u3058\u4f01\u753b\u3084\u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u3092\u7d9a\u3005\u3054\u7d39\u4ecb\u4e88\u5b9a\uff01 #\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058 #\u30b3\u30c8\u304f\u3058 \u203b\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192https://t.co/Tv22ZCHVMn", "entities": {"description": {"urls": [{"display_url": "kuji.kotobukiya.co.jp/contact/", "expanded_url": "http://kuji.kotobukiya.co.jp/contact/", "url": "https://t.co/Tv22ZCHVMn", "indices": [106, 129]}]}, "url": {"urls": [{"display_url": "kuji.kotobukiya.co.jp", "expanded_url": "https://kuji.kotobukiya.co.jp/", "url": "https://t.co/Ev3XP3mdHl", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 26, "followers_count": 16965, "friends_count": 29, "has_custom_timelines": false, "is_translator": false, "listed_count": 33, "location": "", "media_count": 285, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058", "normal_followers_count": 16965, "pinned_tweet_ids_str": ["1622414775798960128"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 61.85, "rgb": {"blue": 243, "green": 239, "red": 230}}, {"percentage": 8.56, "rgb": {"blue": 104, "green": 83, "red": 91}}, {"percentage": 6.03, "rgb": {"blue": 167, "green": 191, "red": 210}}, {"percentage": 5.47, "rgb": {"blue": 124, "green": 127, "red": 182}}, {"percentage": 1.71, "rgb": {"blue": 201, "green": 215, "red": 194}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1324233991973609473/1674431584", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 71.22, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 26.01, "rgb": {"blue": 70, "green": 153, "red": 1}}, {"percentage": 1.78, "rgb": {"blue": 168, "green": 205, "red": 138}}, {"percentage": 0.56, "rgb": {"blue": 48, "green": 185, "red": 111}}, {"percentage": 0.15, "rgb": {"blue": 130, "green": 182, "red": 81}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1351381239698124803/9DCaBUBA_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya_kuji", "statuses_count": 479, "translator_type": "none", "url": "https://t.co/Ev3XP3mdHl", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Thu Feb 09 09:00:00 +0000 2023", "conversation_id_str": "1623607637228109824", "display_text_range": [0, 167], "entities": {"media": [{"display_url": "pic.twitter.com/07R6uC2rq8", "expanded_url": "https://twitter.com/kotobukiya_kuji/status/1623607637228109824/photo/1", "id_str": "1620286493582581762", "indices": [168, 191], "media_url_https": "https://pbs.twimg.com/media/Fnxp-zRaYAI79os.jpg", "type": "photo", "url": "https://t.co/07R6uC2rq8", "features": {"large": {"faces": [{"x": 1511, "y": 237, "h": 93, "w": 93}, {"x": 125, "y": 115, "h": 189, "w": 189}]}, "medium": {"faces": [{"x": 885, "y": 139, "h": 54, "w": 54}, {"x": 73, "y": 67, "h": 111, "w": 111}]}, "small": {"faces": [{"x": 501, "y": 78, "h": 31, "w": 31}, {"x": 41, "y": 38, "h": 63, "w": 63}]}, "orig": {"faces": [{"x": 2851, "y": 448, "h": 177, "w": 177}, {"x": 237, "y": 218, "h": 358, "w": 358}]}}, "sizes": {"large": {"h": 1365, "w": 2048, "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": 2574, "width": 3862, "focus_rects": [{"x": 0, "y": 0, "w": 3862, "h": 2163}, {"x": 0, "y": 0, "w": 2574, "h": 2574}, {"x": 0, "y": 0, "w": 2258, "h": 2574}, {"x": 419, "y": 0, "w": 1287, "h": 2574}, {"x": 0, "y": 0, "w": 3862, "h": 2574}]}}], "user_mentions": [], "urls": [{"display_url": "kuji.kotobukiya.co.jp/lp/tos20th/?ut\u2026", "expanded_url": "https://kuji.kotobukiya.co.jp/lp/tos20th/?utm_source=twitter&utm_medium=social&utm_campaign=230209", "url": "https://t.co/tle8OYzzSI", "indices": [122, 145]}], "hashtags": [{"indices": [147, 152], "text": "\u30c6\u30a4\u30eb\u30ba"}, {"indices": [153, 158], "text": "TOSR"}, {"indices": [159, 167], "text": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/07R6uC2rq8", "expanded_url": "https://twitter.com/kotobukiya_kuji/status/1623607637228109824/photo/1", "id_str": "1620286493582581762", "indices": [168, 191], "media_key": "3_1620286493582581762", "media_url_https": "https://pbs.twimg.com/media/Fnxp-zRaYAI79os.jpg", "type": "photo", "url": "https://t.co/07R6uC2rq8", "ext_media_color": {"palette": [{"percentage": 69.1, "rgb": {"blue": 212, "green": 226, "red": 231}}, {"percentage": 15.71, "rgb": {"blue": 112, "green": 110, "red": 123}}, {"percentage": 5.06, "rgb": {"blue": 135, "green": 142, "red": 202}}, {"percentage": 3.52, "rgb": {"blue": 183, "green": 160, "red": 161}}, {"percentage": 1.78, "rgb": {"blue": 118, "green": 171, "red": 195}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 1511, "y": 237, "h": 93, "w": 93}, {"x": 125, "y": 115, "h": 189, "w": 189}]}, "medium": {"faces": [{"x": 885, "y": 139, "h": 54, "w": 54}, {"x": 73, "y": 67, "h": 111, "w": 111}]}, "small": {"faces": [{"x": 501, "y": 78, "h": 31, "w": 31}, {"x": 41, "y": 38, "h": 63, "w": 63}]}, "orig": {"faces": [{"x": 2851, "y": 448, "h": 177, "w": 177}, {"x": 237, "y": 218, "h": 358, "w": 358}]}}, "sizes": {"large": {"h": 1365, "w": 2048, "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": 2574, "width": 3862, "focus_rects": [{"x": 0, "y": 0, "w": 3862, "h": 2163}, {"x": 0, "y": 0, "w": 2574, "h": 2574}, {"x": 0, "y": 0, "w": 2258, "h": 2574}, {"x": 419, "y": 0, "w": 1287, "h": 2574}, {"x": 0, "y": 0, "w": 3862, "h": 2574}]}}]}, "favorite_count": 6, "favorited": false, "full_text": "\u3010\u8ca9\u58f2\u7d42\u4e86\u307e\u3067\u3042\u30683\u65e5\uff01\u3011\nC\u8cde\u306f\u3001\u3077\u3063\u304f\u308a\u30ad\u30e9\u30ad\u30e9\u611f\u304c\u9b45\u529b\u306e\u300c\u30c7\u30b3\u30ad\u30e9\u2606\u30af\u30ea\u30a2\u30ab\u30fc\u30c9\u30bb\u30c3\u30c8\u300d\uff01\u51683\u7a2e\u304b\u3089\u9078\u3079\u307e\u3059\u266a\n\u3053\u3053\u3067\u3057\u304b\u8cb7\u3048\u306a\u3044\u9650\u5b9a\u54c1\u306e\u305f\u3081\u3001\u671f\u65e5\u307e\u3067\u306e\u3054\u8cfc\u5165\u3092\u304a\u5fd8\u308c\u306a\u304f!\n\n\u8ca9\u58f2\u671f\u9650\uff1a2023/2/12(\u65e5)\u307e\u3067\n\n\u25bc\u3054\u8cfc\u5165\u306f\u3053\u3061\u3089\nhttps://t.co/tle8OYzzSI\n\n#\u30c6\u30a4\u30eb\u30ba #TOSR #\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058 https://t.co/07R6uC2rq8", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 4, "retweeted": false, "user_id_str": "1324233991973609473", "id_str": "1623607637228109824"}}}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623895779512549376", "sortIndex": "1623895779512549376", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623895779512549376", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Fri Feb 10 04:04:59 +0000 2023", "conversation_id_str": "1623895779512549376", "display_text_range": [0, 140], "entities": {"user_mentions": [{"id_str": "1250976770", "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u79cb\u8449\u539f\u9928\uff2012\uff1a00\uff5e20\uff1a00", "screen_name": "Kotobukiya_akb", "indices": [3, 18]}], "urls": [], "hashtags": [{"indices": [52, 60], "text": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058"}, {"indices": [121, 126], "text": "TOSR"}, {"indices": [127, 132], "text": "\u30c6\u30a4\u30eb\u30ba"}], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "RT @Kotobukiya_akb: \u3010\u79cb\u8449\u539f\u99282F\u3011\u5c55\u793a\u60c5\u5831\uff1a\u79cb\u8449\u539f\u99284F\u3068\u30aa\u30f3\u30e9\u30a4\u30f3\u306b\u3066\u8ca9\u58f2\u4e2d\u306e #\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058 \u300c\u30c6\u30a4\u30eb\u30ba \u30aa\u30d6 \u30b7\u30f3\u30d5\u30a9\u30cb\u30a2\u300d\u306e\u30b5\u30f3\u30d7\u30eb\u5c55\u793a\u4e2d\u3067\u3059\uff01\n\u3054\u6765\u5e97\u306e\u969b\u306f\u305c\u3072\u3054\u89a7\u304f\u3060\u3055\u3044\uff01\n\u203b2F\u3067\u306f\u8ca9\u58f2\u3057\u3066\u304a\u308a\u307e\u305b\u3093\u3002\n#TOSR #\u30c6\u30a4\u30eb\u30ba #\u30b7\u30f3\u30d5\u30a9\u30cb\u2026", "is_quote_status": false, "lang": "ja", "quote_count": 0, "reply_count": 0, "retweet_count": 5, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623895779512549376", "retweeted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1623595234851717121", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMjUwOTc2Nzcw", "rest_id": "1250976770", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Fri Mar 08 06:57:14 +0000 2013", "default_profile": false, "default_profile_image": false, "description": "\u30b9\u30bf\u30c3\u30d5\u304c\u5546\u54c1\u3084\u65b0\u7740\u60c5\u5831\u3092\u66f4\u65b0\u4e2d\uff01\uff01\u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u500b\u5225\u306e\u8fd4\u7b54\u306f\u884c\u3063\u3066\u304a\u308a\u307e\u305b\u3093\u3002\u79cb\u8449\u539f\u9928(03-5298-6300)\u307e\u3067\u304a\u96fb\u8a71\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/store/akiba/", "expanded_url": "http://www.kotobukiya.co.jp/store/akiba/", "url": "https://t.co/3Ggefzkn2m", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 1948, "followers_count": 40977, "friends_count": 261, "has_custom_timelines": true, "is_translator": false, "listed_count": 792, "location": "\u6771\u4eac\u90fd\u5343\u4ee3\u7530\u533a\u5916\u795e\u75301-8-8", "media_count": 23348, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u79cb\u8449\u539f\u9928\uff202\u670811\u65e5\uff5e2\u670812\u65e5 10\uff1a00\uff5e20\uff1a00", "normal_followers_count": 40977, "pinned_tweet_ids_str": ["1585852493048999936"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 28.92, "rgb": {"blue": 209, "green": 211, "red": 238}}, {"percentage": 28.36, "rgb": {"blue": 70, "green": 77, "red": 222}}, {"percentage": 11.97, "rgb": {"blue": 141, "green": 196, "red": 219}}, {"percentage": 8.25, "rgb": {"blue": 143, "green": 149, "red": 235}}, {"percentage": 3.85, "rgb": {"blue": 49, "green": 60, "red": 218}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1250976770/1675212639", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 82.35, "rgb": {"blue": 70, "green": 153, "red": 1}}, {"percentage": 13.03, "rgb": {"blue": 251, "green": 252, "red": 250}}, {"percentage": 4.24, "rgb": {"blue": 173, "green": 208, "red": 141}}, {"percentage": 0.37, "rgb": {"blue": 136, "green": 187, "red": 88}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/882041994498908161/_HPyuPSf_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Kotobukiya_akb", "statuses_count": 37710, "translator_type": "none", "url": "https://t.co/3Ggefzkn2m", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Thu Feb 09 08:10:43 +0000 2023", "conversation_id_str": "1623595234851717121", "display_text_range": [0, 163], "entities": {"media": [{"display_url": "pic.twitter.com/GriAGCMN37", "expanded_url": "https://twitter.com/Kotobukiya_akb/status/1623595234851717121/photo/1", "id_str": "1623595093218459649", "indices": [164, 187], "media_url_https": "https://pbs.twimg.com/media/FogrIpZagAEgVGd.jpg", "type": "photo", "url": "https://t.co/GriAGCMN37", "features": {"large": {"faces": [{"x": 634, "y": 179, "h": 46, "w": 46}, {"x": 556, "y": 833, "h": 48, "w": 48}, {"x": 680, "y": 292, "h": 76, "w": 76}, {"x": 989, "y": 237, "h": 82, "w": 82}, {"x": 525, "y": 744, "h": 104, "w": 104}]}, "medium": {"faces": [{"x": 634, "y": 179, "h": 46, "w": 46}, {"x": 556, "y": 833, "h": 48, "w": 48}, {"x": 680, "y": 292, "h": 76, "w": 76}, {"x": 989, "y": 237, "h": 82, "w": 82}, {"x": 525, "y": 744, "h": 104, "w": 104}]}, "small": {"faces": [{"x": 399, "y": 112, "h": 28, "w": 28}, {"x": 350, "y": 524, "h": 30, "w": 30}, {"x": 428, "y": 183, "h": 47, "w": 47}, {"x": 622, "y": 149, "h": 51, "w": 51}, {"x": 330, "y": 468, "h": 65, "w": 65}]}, "orig": {"faces": [{"x": 634, "y": 179, "h": 46, "w": 46}, {"x": 556, "y": 833, "h": 48, "w": 48}, {"x": 680, "y": 292, "h": 76, "w": 76}, {"x": 989, "y": 237, "h": 82, "w": 82}, {"x": 525, "y": 744, "h": 104, "w": 104}]}}, "sizes": {"large": {"h": 972, "w": 1080, "resize": "fit"}, "medium": {"h": 972, "w": 1080, "resize": "fit"}, "small": {"h": 612, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 972, "width": 1080, "focus_rects": [{"x": 0, "y": 367, "w": 1080, "h": 605}, {"x": 108, "y": 0, "w": 972, "h": 972}, {"x": 227, "y": 0, "w": 853, "h": 972}, {"x": 540, "y": 0, "w": 486, "h": 972}, {"x": 0, "y": 0, "w": 1080, "h": 972}]}}], "user_mentions": [], "urls": [{"display_url": "kuji.kotobukiya.co.jp/lp/tos20th/?ut\u2026", "expanded_url": "https://kuji.kotobukiya.co.jp/lp/tos20th/?utm_source=twitter&utm_medium=social&utm_campaign=230209", "url": "https://t.co/qZDbqlBlNG", "indices": [140, 163]}], "hashtags": [{"indices": [32, 40], "text": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058"}, {"indices": [101, 106], "text": "TOSR"}, {"indices": [107, 112], "text": "\u30c6\u30a4\u30eb\u30ba"}, {"indices": [113, 124], "text": "\u30b7\u30f3\u30d5\u30a9\u30cb\u30a220\u5468\u5e74"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/GriAGCMN37", "expanded_url": "https://twitter.com/Kotobukiya_akb/status/1623595234851717121/photo/1", "id_str": "1623595093218459649", "indices": [164, 187], "media_key": "3_1623595093218459649", "media_url_https": "https://pbs.twimg.com/media/FogrIpZagAEgVGd.jpg", "type": "photo", "url": "https://t.co/GriAGCMN37", "ext_media_color": {"palette": [{"percentage": 35.43, "rgb": {"blue": 173, "green": 181, "red": 186}}, {"percentage": 19.25, "rgb": {"blue": 49, "green": 50, "red": 41}}, {"percentage": 8.99, "rgb": {"blue": 180, "green": 149, "red": 141}}, {"percentage": 6.57, "rgb": {"blue": 72, "green": 97, "red": 124}}, {"percentage": 3.55, "rgb": {"blue": 104, "green": 144, "red": 164}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 634, "y": 179, "h": 46, "w": 46}, {"x": 556, "y": 833, "h": 48, "w": 48}, {"x": 680, "y": 292, "h": 76, "w": 76}, {"x": 989, "y": 237, "h": 82, "w": 82}, {"x": 525, "y": 744, "h": 104, "w": 104}]}, "medium": {"faces": [{"x": 634, "y": 179, "h": 46, "w": 46}, {"x": 556, "y": 833, "h": 48, "w": 48}, {"x": 680, "y": 292, "h": 76, "w": 76}, {"x": 989, "y": 237, "h": 82, "w": 82}, {"x": 525, "y": 744, "h": 104, "w": 104}]}, "small": {"faces": [{"x": 399, "y": 112, "h": 28, "w": 28}, {"x": 350, "y": 524, "h": 30, "w": 30}, {"x": 428, "y": 183, "h": 47, "w": 47}, {"x": 622, "y": 149, "h": 51, "w": 51}, {"x": 330, "y": 468, "h": 65, "w": 65}]}, "orig": {"faces": [{"x": 634, "y": 179, "h": 46, "w": 46}, {"x": 556, "y": 833, "h": 48, "w": 48}, {"x": 680, "y": 292, "h": 76, "w": 76}, {"x": 989, "y": 237, "h": 82, "w": 82}, {"x": 525, "y": 744, "h": 104, "w": 104}]}}, "sizes": {"large": {"h": 972, "w": 1080, "resize": "fit"}, "medium": {"h": 972, "w": 1080, "resize": "fit"}, "small": {"h": 612, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 972, "width": 1080, "focus_rects": [{"x": 0, "y": 367, "w": 1080, "h": 605}, {"x": 108, "y": 0, "w": 972, "h": 972}, {"x": 227, "y": 0, "w": 853, "h": 972}, {"x": 540, "y": 0, "w": 486, "h": 972}, {"x": 0, "y": 0, "w": 1080, "h": 972}]}}, {"display_url": "pic.twitter.com/GriAGCMN37", "expanded_url": "https://twitter.com/Kotobukiya_akb/status/1623595234851717121/photo/1", "id_str": "1623595190341734402", "indices": [164, 187], "media_key": "3_1623595190341734402", "media_url_https": "https://pbs.twimg.com/media/FogrOTNaEAICMQO.jpg", "type": "photo", "url": "https://t.co/GriAGCMN37", "ext_media_color": {"palette": [{"percentage": 41.36, "rgb": {"blue": 167, "green": 174, "red": 180}}, {"percentage": 13.23, "rgb": {"blue": 62, "green": 67, "red": 73}}, {"percentage": 9.97, "rgb": {"blue": 112, "green": 85, "red": 80}}, {"percentage": 8.16, "rgb": {"blue": 171, "green": 143, "red": 138}}, {"percentage": 4.47, "rgb": {"blue": 58, "green": 93, "red": 121}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 918, "y": 267, "h": 63, "w": 63}, {"x": 384, "y": 584, "h": 59, "w": 59}]}, "medium": {"faces": [{"x": 710, "y": 206, "h": 48, "w": 48}, {"x": 297, "y": 452, "h": 45, "w": 45}]}, "small": {"faces": [{"x": 402, "y": 117, "h": 27, "w": 27}, {"x": 168, "y": 256, "h": 25, "w": 25}]}, "orig": {"faces": [{"x": 918, "y": 267, "h": 63, "w": 63}, {"x": 384, "y": 584, "h": 59, "w": 59}]}}, "sizes": {"large": {"h": 808, "w": 1550, "resize": "fit"}, "medium": {"h": 626, "w": 1200, "resize": "fit"}, "small": {"h": 354, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 808, "width": 1550, "focus_rects": [{"x": 107, "y": 0, "w": 1443, "h": 808}, {"x": 486, "y": 0, "w": 808, "h": 808}, {"x": 536, "y": 0, "w": 709, "h": 808}, {"x": 688, "y": 0, "w": 404, "h": 808}, {"x": 0, "y": 0, "w": 1550, "h": 808}]}}, {"display_url": "pic.twitter.com/GriAGCMN37", "expanded_url": "https://twitter.com/Kotobukiya_akb/status/1623595234851717121/photo/1", "id_str": "1623595195957919744", "indices": [164, 187], "media_key": "3_1623595195957919744", "media_url_https": "https://pbs.twimg.com/media/FogrOoIaQAAgJSX.jpg", "type": "photo", "url": "https://t.co/GriAGCMN37", "ext_media_color": {"palette": [{"percentage": 34.71, "rgb": {"blue": 52, "green": 53, "red": 43}}, {"percentage": 26.94, "rgb": {"blue": 185, "green": 181, "red": 181}}, {"percentage": 5.59, "rgb": {"blue": 123, "green": 159, "red": 177}}, {"percentage": 4.88, "rgb": {"blue": 86, "green": 89, "red": 113}}, {"percentage": 2.27, "rgb": {"blue": 88, "green": 63, "red": 26}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 472, "y": 122, "h": 64, "w": 64}]}, "medium": {"faces": [{"x": 461, "y": 119, "h": 62, "w": 62}]}, "small": {"faces": [{"x": 261, "y": 67, "h": 35, "w": 35}]}, "orig": {"faces": [{"x": 472, "y": 122, "h": 64, "w": 64}]}}, "sizes": {"large": {"h": 620, "w": 1228, "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": 620, "width": 1228, "focus_rects": [{"x": 0, "y": 0, "w": 1107, "h": 620}, {"x": 0, "y": 0, "w": 620, "h": 620}, {"x": 0, "y": 0, "w": 544, "h": 620}, {"x": 59, "y": 0, "w": 310, "h": 620}, {"x": 0, "y": 0, "w": 1228, "h": 620}]}}]}, "favorite_count": 6, "favorited": false, "full_text": "\u3010\u79cb\u8449\u539f\u99282F\u3011\u5c55\u793a\u60c5\u5831\uff1a\u79cb\u8449\u539f\u99284F\u3068\u30aa\u30f3\u30e9\u30a4\u30f3\u306b\u3066\u8ca9\u58f2\u4e2d\u306e #\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058 \u300c\u30c6\u30a4\u30eb\u30ba \u30aa\u30d6 \u30b7\u30f3\u30d5\u30a9\u30cb\u30a2\u300d\u306e\u30b5\u30f3\u30d7\u30eb\u5c55\u793a\u4e2d\u3067\u3059\uff01\n\u3054\u6765\u5e97\u306e\u969b\u306f\u305c\u3072\u3054\u89a7\u304f\u3060\u3055\u3044\uff01\n\u203b2F\u3067\u306f\u8ca9\u58f2\u3057\u3066\u304a\u308a\u307e\u305b\u3093\u3002\n#TOSR #\u30c6\u30a4\u30eb\u30ba #\u30b7\u30f3\u30d5\u30a9\u30cb\u30a220\u5468\u5e74\n\u25bc\u30aa\u30f3\u30e9\u30a4\u30f3\u3067\u306e\u8cfc\u5165\u306f\u3053\u3061\u3089\nhttps://t.co/qZDbqlBlNG https://t.co/GriAGCMN37", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 5, "retweeted": false, "user_id_str": "1250976770", "id_str": "1623595234851717121"}}}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623895670527774720", "sortIndex": "1623895670527774720", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623895670527774720", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Fri Feb 10 04:04:33 +0000 2023", "conversation_id_str": "1623895670527774720", "display_text_range": [0, 140], "entities": {"user_mentions": [{"id_str": "242610861", "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u5ba3\u4f1d", "screen_name": "kotobukiyas", "indices": [3, 15]}], "urls": [{"display_url": "kotobukiya-collection.com", "expanded_url": "https://www.kotobukiya-collection.com/", "url": "https://t.co/CKS9eAKb19", "indices": [77, 100]}], "hashtags": [{"indices": [102, 107], "text": "\u30df\u30ea\u30b7\u30bf"}, {"indices": [108, 116], "text": "\u30df\u30ea\u30aa\u30f3\u30e9\u30a4\u30d6"}, {"indices": [117, 128], "text": "idolmaster"}, {"indices": [129, 134], "text": "\u30b3\u30c8\u30b3\u30ec"}], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "RT @kotobukiyas: \u300e\u30a2\u30a4\u30c9\u30eb\u30de\u30b9\u30bf\u30fc \u30df\u30ea\u30aa\u30f3\u30e9\u30a4\u30d6\uff01\u300f\u3088\u308a\u3001\u65b0\u4f5c\u30d5\u30a3\u30ae\u30e5\u30a2\u9032\u884c\u4e2d\uff01\n2\u670811\u65e5\uff08\u571f\uff09\u8a73\u7d30\u516c\u958b\uff01\n\n\u25bd\u30b3\u30c8\u30b3\u30ec\u7279\u8a2d\u30b5\u30a4\u30c8\nhttps://t.co/CKS9eAKb19\n\n#\u30df\u30ea\u30b7\u30bf #\u30df\u30ea\u30aa\u30f3\u30e9\u30a4\u30d6 #idolmaster #\u30b3\u30c8\u30b3\u30ec http\u2026", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 832, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623895670527774720", "retweeted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1621706116961902600", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyNDI2MTA4NjE=", "rest_id": "242610861", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Tue Jan 25 05:08:37 +0000 2011", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u516c\u5f0f\u5ba3\u4f1d\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\n\u5546\u54c1\u60c5\u5831\u3092\u306f\u3058\u3081\u3001\u30a4\u30d9\u30f3\u30c8\u3084\u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u306a\u3069\u306e\u6700\u65b0\u60c5\u5831\u3092\u3064\u3076\u3084\u3044\u3066\u3044\u307e\u3059\u3002\u30b5\u30d6\u30ab\u30eb\u30c1\u30e3\u30fc\u3092\u611b\u3059\u308b\u65b9\u3092\u5168\u529b\u5fdc\u63f4\uff01\n\n#kotobukiya #\u30b3\u30c8\u30d6\u30ad\u30e4", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kotobukiya.co.jp", "expanded_url": "https://www.kotobukiya.co.jp/", "url": "https://t.co/S4ki7XUEAu", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 10497, "followers_count": 186677, "friends_count": 938, "has_custom_timelines": true, "is_translator": false, "listed_count": 1896, "location": "\u6771\u4eac\u90fd\u7acb\u5ddd\u5e02", "media_count": 11306, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u5ba3\u4f1d", "normal_followers_count": 186677, "pinned_tweet_ids_str": ["1618896684502876160"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 28.92, "rgb": {"blue": 209, "green": 211, "red": 238}}, {"percentage": 28.36, "rgb": {"blue": 70, "green": 77, "red": 222}}, {"percentage": 11.97, "rgb": {"blue": 141, "green": 196, "red": 219}}, {"percentage": 8.25, "rgb": {"blue": 143, "green": 149, "red": 235}}, {"percentage": 3.85, "rgb": {"blue": 49, "green": 60, "red": 218}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/242610861/1675136194", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 48.29, "rgb": {"blue": 68, "green": 153, "red": 1}}, {"percentage": 45.41, "rgb": {"blue": 254, "green": 254, "red": 254}}, {"percentage": 5.26, "rgb": {"blue": 165, "green": 197, "red": 129}}, {"percentage": 1.02, "rgb": {"blue": 123, "green": 176, "red": 70}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1333205460929810433/9TmdVzlJ_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiyas", "statuses_count": 46191, "translator_type": "none", "url": "https://t.co/S4ki7XUEAu", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sat Feb 04 03:04:02 +0000 2023", "conversation_id_str": "1621706116961902600", "display_text_range": [0, 117], "entities": {"media": [{"display_url": "pic.twitter.com/VWLGdhNOXA", "expanded_url": "https://twitter.com/kotobukiyas/status/1621706116961902600/photo/1", "id_str": "1621706111656267777", "indices": [118, 141], "media_url_https": "https://pbs.twimg.com/media/FoF1HctaEAEcM7J.jpg", "type": "photo", "url": "https://t.co/VWLGdhNOXA", "features": {"large": {"faces": [{"x": 665, "y": 88, "h": 93, "w": 93}, {"x": 639, "y": 354, "h": 163, "w": 163}]}, "medium": {"faces": [{"x": 415, "y": 55, "h": 58, "w": 58}, {"x": 399, "y": 221, "h": 101, "w": 101}]}, "small": {"faces": [{"x": 235, "y": 31, "h": 32, "w": 32}, {"x": 226, "y": 125, "h": 57, "w": 57}]}, "orig": {"faces": [{"x": 665, "y": 88, "h": 93, "w": 93}, {"x": 639, "y": 354, "h": 163, "w": 163}]}}, "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": [{"x": 0, "y": 0, "w": 1920, "h": 1075}, {"x": 420, "y": 0, "w": 1080, "h": 1080}, {"x": 487, "y": 0, "w": 947, "h": 1080}, {"x": 690, "y": 0, "w": 540, "h": 1080}, {"x": 0, "y": 0, "w": 1920, "h": 1080}]}}], "user_mentions": [], "urls": [{"display_url": "kotobukiya-collection.com", "expanded_url": "https://www.kotobukiya-collection.com/", "url": "https://t.co/CKS9eAKb19", "indices": [60, 83]}], "hashtags": [{"indices": [85, 90], "text": "\u30df\u30ea\u30b7\u30bf"}, {"indices": [91, 99], "text": "\u30df\u30ea\u30aa\u30f3\u30e9\u30a4\u30d6"}, {"indices": [100, 111], "text": "idolmaster"}, {"indices": [112, 117], "text": "\u30b3\u30c8\u30b3\u30ec"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/VWLGdhNOXA", "expanded_url": "https://twitter.com/kotobukiyas/status/1621706116961902600/photo/1", "id_str": "1621706111656267777", "indices": [118, 141], "media_key": "3_1621706111656267777", "media_url_https": "https://pbs.twimg.com/media/FoF1HctaEAEcM7J.jpg", "type": "photo", "url": "https://t.co/VWLGdhNOXA", "ext_media_color": {"palette": [{"percentage": 23.63, "rgb": {"blue": 37, "green": 48, "red": 202}}, {"percentage": 21.77, "rgb": {"blue": 1, "green": 6, "red": 83}}, {"percentage": 19.53, "rgb": {"blue": 1, "green": 0, "red": 23}}, {"percentage": 11.31, "rgb": {"blue": 172, "green": 214, "red": 229}}, {"percentage": 3.86, "rgb": {"blue": 40, "green": 52, "red": 239}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 665, "y": 88, "h": 93, "w": 93}, {"x": 639, "y": 354, "h": 163, "w": 163}]}, "medium": {"faces": [{"x": 415, "y": 55, "h": 58, "w": 58}, {"x": 399, "y": 221, "h": 101, "w": 101}]}, "small": {"faces": [{"x": 235, "y": 31, "h": 32, "w": 32}, {"x": 226, "y": 125, "h": 57, "w": 57}]}, "orig": {"faces": [{"x": 665, "y": 88, "h": 93, "w": 93}, {"x": 639, "y": 354, "h": 163, "w": 163}]}}, "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": [{"x": 0, "y": 0, "w": 1920, "h": 1075}, {"x": 420, "y": 0, "w": 1080, "h": 1080}, {"x": 487, "y": 0, "w": 947, "h": 1080}, {"x": 690, "y": 0, "w": 540, "h": 1080}, {"x": 0, "y": 0, "w": 1920, "h": 1080}]}}]}, "favorite_count": 1200, "favorited": false, "full_text": "\u300e\u30a2\u30a4\u30c9\u30eb\u30de\u30b9\u30bf\u30fc \u30df\u30ea\u30aa\u30f3\u30e9\u30a4\u30d6\uff01\u300f\u3088\u308a\u3001\u65b0\u4f5c\u30d5\u30a3\u30ae\u30e5\u30a2\u9032\u884c\u4e2d\uff01\n2\u670811\u65e5\uff08\u571f\uff09\u8a73\u7d30\u516c\u958b\uff01\n\n\u25bd\u30b3\u30c8\u30b3\u30ec\u7279\u8a2d\u30b5\u30a4\u30c8\nhttps://t.co/CKS9eAKb19\n\n#\u30df\u30ea\u30b7\u30bf #\u30df\u30ea\u30aa\u30f3\u30e9\u30a4\u30d6 #idolmaster #\u30b3\u30c8\u30b3\u30ec https://t.co/VWLGdhNOXA", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 48, "reply_count": 0, "retweet_count": 832, "retweeted": false, "user_id_str": "242610861", "id_str": "1621706116961902600"}}}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623895525471952896", "sortIndex": "1623895525471952896", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623895525471952896", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Fri Feb 10 04:03:58 +0000 2023", "conversation_id_str": "1623895525471952896", "display_text_range": [0, 140], "entities": {"user_mentions": [{"id_str": "1250976770", "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u79cb\u8449\u539f\u9928\uff2012\uff1a00\uff5e20\uff1a00", "screen_name": "Kotobukiya_akb", "indices": [3, 18]}], "urls": [], "hashtags": [{"indices": [53, 61], "text": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058"}, {"indices": [122, 127], "text": "TOSR"}, {"indices": [128, 133], "text": "\u30c6\u30a4\u30eb\u30ba"}], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "RT @Kotobukiya_akb: \u3010\u79cb\u8449\u539f\u99282F\u3011\n\u5c55\u793a\u60c5\u5831\uff1a\u79cb\u8449\u539f\u99284F\u3068\u30aa\u30f3\u30e9\u30a4\u30f3\u306b\u3066\u8ca9\u58f2\u4e2d\u306e #\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058 \u300c\u30c6\u30a4\u30eb\u30ba \u30aa\u30d6 \u30b7\u30f3\u30d5\u30a9\u30cb\u30a2\u300d\u306e\u30b5\u30f3\u30d7\u30eb\u5c55\u793a\u4e2d\u3067\u3059\uff01\n\u3054\u6765\u5e97\u306e\u969b\u306f\u305c\u3072\u3054\u89a7\u304f\u3060\u3055\u3044\uff01\n\u203b2F\u3067\u306f\u8ca9\u58f2\u3057\u3066\u304a\u308a\u307e\u305b\u3093\u3002\n#TOSR #\u30c6\u30a4\u30eb\u30ba #\u30b7\u30f3\u30d5\u30a9\u2026", "is_quote_status": false, "lang": "ja", "quote_count": 0, "reply_count": 0, "retweet_count": 2, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623895525471952896", "retweeted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1623890539136565249", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMjUwOTc2Nzcw", "rest_id": "1250976770", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Fri Mar 08 06:57:14 +0000 2013", "default_profile": false, "default_profile_image": false, "description": "\u30b9\u30bf\u30c3\u30d5\u304c\u5546\u54c1\u3084\u65b0\u7740\u60c5\u5831\u3092\u66f4\u65b0\u4e2d\uff01\uff01\u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u500b\u5225\u306e\u8fd4\u7b54\u306f\u884c\u3063\u3066\u304a\u308a\u307e\u305b\u3093\u3002\u79cb\u8449\u539f\u9928(03-5298-6300)\u307e\u3067\u304a\u96fb\u8a71\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/store/akiba/", "expanded_url": "http://www.kotobukiya.co.jp/store/akiba/", "url": "https://t.co/3Ggefzkn2m", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 1948, "followers_count": 40977, "friends_count": 261, "has_custom_timelines": true, "is_translator": false, "listed_count": 792, "location": "\u6771\u4eac\u90fd\u5343\u4ee3\u7530\u533a\u5916\u795e\u75301-8-8", "media_count": 23348, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u79cb\u8449\u539f\u9928\uff202\u670811\u65e5\uff5e2\u670812\u65e5 10\uff1a00\uff5e20\uff1a00", "normal_followers_count": 40977, "pinned_tweet_ids_str": ["1585852493048999936"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 28.92, "rgb": {"blue": 209, "green": 211, "red": 238}}, {"percentage": 28.36, "rgb": {"blue": 70, "green": 77, "red": 222}}, {"percentage": 11.97, "rgb": {"blue": 141, "green": 196, "red": 219}}, {"percentage": 8.25, "rgb": {"blue": 143, "green": 149, "red": 235}}, {"percentage": 3.85, "rgb": {"blue": 49, "green": 60, "red": 218}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1250976770/1675212639", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 82.35, "rgb": {"blue": 70, "green": 153, "red": 1}}, {"percentage": 13.03, "rgb": {"blue": 251, "green": 252, "red": 250}}, {"percentage": 4.24, "rgb": {"blue": 173, "green": 208, "red": 141}}, {"percentage": 0.37, "rgb": {"blue": 136, "green": 187, "red": 88}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/882041994498908161/_HPyuPSf_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Kotobukiya_akb", "statuses_count": 37710, "translator_type": "none", "url": "https://t.co/3Ggefzkn2m", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Fri Feb 10 03:44:09 +0000 2023", "conversation_id_str": "1623890539136565249", "display_text_range": [0, 164], "entities": {"media": [{"display_url": "pic.twitter.com/V31PdDdQbm", "expanded_url": "https://twitter.com/Kotobukiya_akb/status/1623890539136565249/photo/1", "id_str": "1623890457393770496", "indices": [165, 188], "media_url_https": "https://pbs.twimg.com/media/Fok3xGsaMAANn6L.jpg", "type": "photo", "url": "https://t.co/V31PdDdQbm", "features": {"large": {"faces": [{"x": 634, "y": 179, "h": 46, "w": 46}, {"x": 556, "y": 833, "h": 48, "w": 48}, {"x": 680, "y": 292, "h": 76, "w": 76}, {"x": 989, "y": 237, "h": 82, "w": 82}, {"x": 525, "y": 744, "h": 104, "w": 104}]}, "medium": {"faces": [{"x": 634, "y": 179, "h": 46, "w": 46}, {"x": 556, "y": 833, "h": 48, "w": 48}, {"x": 680, "y": 292, "h": 76, "w": 76}, {"x": 989, "y": 237, "h": 82, "w": 82}, {"x": 525, "y": 744, "h": 104, "w": 104}]}, "small": {"faces": [{"x": 399, "y": 112, "h": 28, "w": 28}, {"x": 350, "y": 524, "h": 30, "w": 30}, {"x": 428, "y": 183, "h": 47, "w": 47}, {"x": 622, "y": 149, "h": 51, "w": 51}, {"x": 330, "y": 468, "h": 65, "w": 65}]}, "orig": {"faces": [{"x": 634, "y": 179, "h": 46, "w": 46}, {"x": 556, "y": 833, "h": 48, "w": 48}, {"x": 680, "y": 292, "h": 76, "w": 76}, {"x": 989, "y": 237, "h": 82, "w": 82}, {"x": 525, "y": 744, "h": 104, "w": 104}]}}, "sizes": {"large": {"h": 972, "w": 1080, "resize": "fit"}, "medium": {"h": 972, "w": 1080, "resize": "fit"}, "small": {"h": 612, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 972, "width": 1080, "focus_rects": [{"x": 0, "y": 367, "w": 1080, "h": 605}, {"x": 108, "y": 0, "w": 972, "h": 972}, {"x": 227, "y": 0, "w": 853, "h": 972}, {"x": 540, "y": 0, "w": 486, "h": 972}, {"x": 0, "y": 0, "w": 1080, "h": 972}]}}], "user_mentions": [], "urls": [{"display_url": "kuji.kotobukiya.co.jp/lp/tos20th/?ut\u2026", "expanded_url": "https://kuji.kotobukiya.co.jp/lp/tos20th/?utm_source=twitter&utm_medium=social&utm_campaign=230210", "url": "https://t.co/PSqPGXRCm5", "indices": [141, 164]}], "hashtags": [{"indices": [33, 41], "text": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058"}, {"indices": [102, 107], "text": "TOSR"}, {"indices": [108, 113], "text": "\u30c6\u30a4\u30eb\u30ba"}, {"indices": [114, 125], "text": "\u30b7\u30f3\u30d5\u30a9\u30cb\u30a220\u5468\u5e74"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/V31PdDdQbm", "expanded_url": "https://twitter.com/Kotobukiya_akb/status/1623890539136565249/photo/1", "id_str": "1623890457393770496", "indices": [165, 188], "media_key": "3_1623890457393770496", "media_url_https": "https://pbs.twimg.com/media/Fok3xGsaMAANn6L.jpg", "type": "photo", "url": "https://t.co/V31PdDdQbm", "ext_media_color": {"palette": [{"percentage": 35.43, "rgb": {"blue": 173, "green": 181, "red": 186}}, {"percentage": 19.25, "rgb": {"blue": 49, "green": 50, "red": 41}}, {"percentage": 8.99, "rgb": {"blue": 180, "green": 149, "red": 141}}, {"percentage": 6.57, "rgb": {"blue": 72, "green": 97, "red": 124}}, {"percentage": 3.55, "rgb": {"blue": 104, "green": 144, "red": 164}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 634, "y": 179, "h": 46, "w": 46}, {"x": 556, "y": 833, "h": 48, "w": 48}, {"x": 680, "y": 292, "h": 76, "w": 76}, {"x": 989, "y": 237, "h": 82, "w": 82}, {"x": 525, "y": 744, "h": 104, "w": 104}]}, "medium": {"faces": [{"x": 634, "y": 179, "h": 46, "w": 46}, {"x": 556, "y": 833, "h": 48, "w": 48}, {"x": 680, "y": 292, "h": 76, "w": 76}, {"x": 989, "y": 237, "h": 82, "w": 82}, {"x": 525, "y": 744, "h": 104, "w": 104}]}, "small": {"faces": [{"x": 399, "y": 112, "h": 28, "w": 28}, {"x": 350, "y": 524, "h": 30, "w": 30}, {"x": 428, "y": 183, "h": 47, "w": 47}, {"x": 622, "y": 149, "h": 51, "w": 51}, {"x": 330, "y": 468, "h": 65, "w": 65}]}, "orig": {"faces": [{"x": 634, "y": 179, "h": 46, "w": 46}, {"x": 556, "y": 833, "h": 48, "w": 48}, {"x": 680, "y": 292, "h": 76, "w": 76}, {"x": 989, "y": 237, "h": 82, "w": 82}, {"x": 525, "y": 744, "h": 104, "w": 104}]}}, "sizes": {"large": {"h": 972, "w": 1080, "resize": "fit"}, "medium": {"h": 972, "w": 1080, "resize": "fit"}, "small": {"h": 612, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 972, "width": 1080, "focus_rects": [{"x": 0, "y": 367, "w": 1080, "h": 605}, {"x": 108, "y": 0, "w": 972, "h": 972}, {"x": 227, "y": 0, "w": 853, "h": 972}, {"x": 540, "y": 0, "w": 486, "h": 972}, {"x": 0, "y": 0, "w": 1080, "h": 972}]}}, {"display_url": "pic.twitter.com/V31PdDdQbm", "expanded_url": "https://twitter.com/Kotobukiya_akb/status/1623890539136565249/photo/1", "id_str": "1623890464662491137", "indices": [165, 188], "media_key": "3_1623890464662491137", "media_url_https": "https://pbs.twimg.com/media/Fok3xhxaEAEV6n3.jpg", "type": "photo", "url": "https://t.co/V31PdDdQbm", "ext_media_color": {"palette": [{"percentage": 41.36, "rgb": {"blue": 167, "green": 174, "red": 180}}, {"percentage": 13.23, "rgb": {"blue": 62, "green": 67, "red": 73}}, {"percentage": 9.97, "rgb": {"blue": 112, "green": 85, "red": 80}}, {"percentage": 8.16, "rgb": {"blue": 171, "green": 143, "red": 138}}, {"percentage": 4.47, "rgb": {"blue": 58, "green": 93, "red": 121}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 918, "y": 267, "h": 63, "w": 63}, {"x": 384, "y": 584, "h": 59, "w": 59}]}, "medium": {"faces": [{"x": 710, "y": 206, "h": 48, "w": 48}, {"x": 297, "y": 452, "h": 45, "w": 45}]}, "small": {"faces": [{"x": 402, "y": 117, "h": 27, "w": 27}, {"x": 168, "y": 256, "h": 25, "w": 25}]}, "orig": {"faces": [{"x": 918, "y": 267, "h": 63, "w": 63}, {"x": 384, "y": 584, "h": 59, "w": 59}]}}, "sizes": {"large": {"h": 808, "w": 1550, "resize": "fit"}, "medium": {"h": 626, "w": 1200, "resize": "fit"}, "small": {"h": 354, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 808, "width": 1550, "focus_rects": [{"x": 107, "y": 0, "w": 1443, "h": 808}, {"x": 486, "y": 0, "w": 808, "h": 808}, {"x": 536, "y": 0, "w": 709, "h": 808}, {"x": 688, "y": 0, "w": 404, "h": 808}, {"x": 0, "y": 0, "w": 1550, "h": 808}]}}, {"display_url": "pic.twitter.com/V31PdDdQbm", "expanded_url": "https://twitter.com/Kotobukiya_akb/status/1623890539136565249/photo/1", "id_str": "1623890471650230272", "indices": [165, 188], "media_key": "3_1623890471650230272", "media_url_https": "https://pbs.twimg.com/media/Fok3x7zagAAXwj5.jpg", "type": "photo", "url": "https://t.co/V31PdDdQbm", "ext_media_color": {"palette": [{"percentage": 34.71, "rgb": {"blue": 52, "green": 53, "red": 43}}, {"percentage": 26.94, "rgb": {"blue": 185, "green": 181, "red": 181}}, {"percentage": 5.59, "rgb": {"blue": 123, "green": 159, "red": 177}}, {"percentage": 4.88, "rgb": {"blue": 86, "green": 89, "red": 113}}, {"percentage": 2.27, "rgb": {"blue": 88, "green": 63, "red": 26}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 472, "y": 122, "h": 64, "w": 64}]}, "medium": {"faces": [{"x": 461, "y": 119, "h": 62, "w": 62}]}, "small": {"faces": [{"x": 261, "y": 67, "h": 35, "w": 35}]}, "orig": {"faces": [{"x": 472, "y": 122, "h": 64, "w": 64}]}}, "sizes": {"large": {"h": 620, "w": 1228, "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": 620, "width": 1228, "focus_rects": [{"x": 0, "y": 0, "w": 1107, "h": 620}, {"x": 0, "y": 0, "w": 620, "h": 620}, {"x": 0, "y": 0, "w": 544, "h": 620}, {"x": 59, "y": 0, "w": 310, "h": 620}, {"x": 0, "y": 0, "w": 1228, "h": 620}]}}]}, "favorite_count": 7, "favorited": false, "full_text": "\u3010\u79cb\u8449\u539f\u99282F\u3011\n\u5c55\u793a\u60c5\u5831\uff1a\u79cb\u8449\u539f\u99284F\u3068\u30aa\u30f3\u30e9\u30a4\u30f3\u306b\u3066\u8ca9\u58f2\u4e2d\u306e #\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058 \u300c\u30c6\u30a4\u30eb\u30ba \u30aa\u30d6 \u30b7\u30f3\u30d5\u30a9\u30cb\u30a2\u300d\u306e\u30b5\u30f3\u30d7\u30eb\u5c55\u793a\u4e2d\u3067\u3059\uff01\n\u3054\u6765\u5e97\u306e\u969b\u306f\u305c\u3072\u3054\u89a7\u304f\u3060\u3055\u3044\uff01\n\u203b2F\u3067\u306f\u8ca9\u58f2\u3057\u3066\u304a\u308a\u307e\u305b\u3093\u3002\n#TOSR #\u30c6\u30a4\u30eb\u30ba #\u30b7\u30f3\u30d5\u30a9\u30cb\u30a220\u5468\u5e74\n\u25bc\u30aa\u30f3\u30e9\u30a4\u30f3\u3067\u306e\u8cfc\u5165\u306f\u3053\u3061\u3089\nhttps://t.co/PSqPGXRCm5 https://t.co/V31PdDdQbm", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 2, "retweeted": false, "user_id_str": "1250976770", "id_str": "1623890539136565249"}}}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623895286904139776", "sortIndex": "1623895286904139776", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623895286904139776", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Fri Feb 10 04:03:01 +0000 2023", "conversation_id_str": "1623895286904139776", "display_text_range": [0, 130], "entities": {"user_mentions": [{"id_str": "710653906657738754", "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u7acb\u5ddd\u672c\u5e97", "screen_name": "kotobukiya_tkw", "indices": [3, 18]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "RT @kotobukiya_tkw: \u3010\u30b3\u30c8\u30d6\u30ad\u30e4\u7acb\u5ddd\u672c\u5e97\u3011\u55b6\u696d\u6642\u9593\u306e\u3054\u6848\u5185\n\u7a4d\u96ea\u306e\u5f71\u97ff\u3067\u3001\u4ea4\u901a\u304c\u4e71\u308c\u3066\u3044\u308b\u305f\u3081\u3001\u672c\u65e5\u306e\u55b6\u696d\u6642\u9593\u306f14\uff1a00\u307e\u3067\u3068\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059\u3002\n\u304a\u5ba2\u69d8\u3001\u5f93\u696d\u54e1\u306e\u5b89\u5168\u78ba\u4fdd\u306e\u305f\u3081\u3068\u306a\u308a\u307e\u3059\u306e\u3067\u3001\u3054\u7406\u89e3\u306e\u307b\u3069\u4f55\u5352\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u7533\u3057\u4e0a\u3052\u307e\u3059\u3002", "is_quote_status": false, "lang": "ja", "quote_count": 0, "reply_count": 0, "retweet_count": 34, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623895286904139776", "retweeted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1623881967203938304", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo3MTA2NTM5MDY2NTc3Mzg3NTQ=", "rest_id": "710653906657738754", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Fri Mar 18 02:27:49 +0000 2016", "default_profile": false, "default_profile_image": false, "description": "\u3010\u58fd\u5c4b\u30d3\u30eb\uff12\uff26\u3011\n\u55b6\u696d\u6642\u9593\uff1a11:00~19:00\n \u5546\u54c1\u60c5\u5831\u3084\u30a4\u30d9\u30f3\u30c8\u60c5\u5831\u3092\u7686\u69d8\u3078\u304a\u5c4a\u3051\u3057\u307e\u3059\u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/store/tachikaw\u2026", "expanded_url": "http://www.kotobukiya.co.jp/store/tachikawa/", "url": "https://t.co/J2aZhB2nQu", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 816, "followers_count": 11964, "friends_count": 161, "has_custom_timelines": true, "is_translator": false, "listed_count": 187, "location": "\u6771\u4eac\u90fd\u7acb\u5ddd\u5e02\u7dd1\u753a4-5 \u58fd\u5c4b\u30d3\u30eb2F", "media_count": 22719, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u7acb\u5ddd\u672c\u5e97", "normal_followers_count": 11964, "pinned_tweet_ids_str": ["1623881967203938304"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 26.45, "rgb": {"blue": 62, "green": 61, "red": 63}}, {"percentage": 16.15, "rgb": {"blue": 198, "green": 202, "red": 214}}, {"percentage": 10.65, "rgb": {"blue": 156, "green": 102, "red": 255}}, {"percentage": 5.9, "rgb": {"blue": 63, "green": 90, "red": 182}}, {"percentage": 4.4, "rgb": {"blue": 48, "green": 4, "red": 4}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/710653906657738754/1666166099", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 82.71, "rgb": {"blue": 70, "green": 153, "red": 0}}, {"percentage": 13.01, "rgb": {"blue": 253, "green": 253, "red": 251}}, {"percentage": 3.65, "rgb": {"blue": 174, "green": 210, "red": 145}}, {"percentage": 0.63, "rgb": {"blue": 134, "green": 186, "red": 86}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/879893886247739392/gO2pIn46_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya_tkw", "statuses_count": 30811, "translator_type": "none", "url": "https://t.co/J2aZhB2nQu", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Fri Feb 10 03:10:05 +0000 2023", "conversation_id_str": "1623881967203938304", "display_text_range": [0, 110], "entities": {"user_mentions": [], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 32, "favorited": false, "full_text": "\u3010\u30b3\u30c8\u30d6\u30ad\u30e4\u7acb\u5ddd\u672c\u5e97\u3011\u55b6\u696d\u6642\u9593\u306e\u3054\u6848\u5185\n\u7a4d\u96ea\u306e\u5f71\u97ff\u3067\u3001\u4ea4\u901a\u304c\u4e71\u308c\u3066\u3044\u308b\u305f\u3081\u3001\u672c\u65e5\u306e\u55b6\u696d\u6642\u9593\u306f14\uff1a00\u307e\u3067\u3068\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059\u3002\n\u304a\u5ba2\u69d8\u3001\u5f93\u696d\u54e1\u306e\u5b89\u5168\u78ba\u4fdd\u306e\u305f\u3081\u3068\u306a\u308a\u307e\u3059\u306e\u3067\u3001\u3054\u7406\u89e3\u306e\u307b\u3069\u4f55\u5352\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u7533\u3057\u4e0a\u3052\u307e\u3059\u3002", "is_quote_status": false, "lang": "ja", "quote_count": 1, "reply_count": 0, "retweet_count": 34, "retweeted": false, "user_id_str": "710653906657738754", "id_str": "1623881967203938304"}}}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623618520692178945", "sortIndex": "1623618520692178945", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623618520692178945", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Thu Feb 09 09:43:15 +0000 2023", "conversation_id_str": "1623618520692178945", "display_text_range": [0, 140], "entities": {"user_mentions": [{"id_str": "1324233991973609473", "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058", "screen_name": "kotobukiya_kuji", "indices": [3, 19]}], "urls": [], "hashtags": [{"indices": [30, 38], "text": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058"}], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "RT @kotobukiya_kuji: \u3010\u660e\u65e5\u304b\u3089\uff01\u3011\n\u300c#\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058 \u30d7\u30ea\u30c6\u30a3\u30fc\u30ea\u30ba\u30e0\u30fb\u30ec\u30a4\u30f3\u30dc\u30fc\u30e9\u30a4\u30d6\u300d\u304c\u660e\u65e5\u30102\u670810\u65e5(\u91d1)\u3011\u3088\u308a\u8ca9\u58f2\u958b\u59cb\uff01\n\n\u4eba\u6c17\u8863\u88c5\u306e\u8863\u88c5\u30a2\u30af\u30ea\u30eb\u30ad\u30fc\u30db\u30eb\u30c0\u30fc\u304c\u5fc5\u305a\u5f53\u305f\u308b\u30cf\u30ba\u30ec\u306a\u3057\u306e\u304f\u3058\u3067\u3059\uff01\n\n\u25bc\u8a73\u7d30\u306f\u3053\u3061\u3089\uff01\nhttps://t.co/HY\u2026", "is_quote_status": false, "lang": "ja", "quote_count": 0, "reply_count": 0, "retweet_count": 395, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623618520692178945", "retweeted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1623592538975178753", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzI0MjMzOTkxOTczNjA5NDcz", "rest_id": "1324233991973609473", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Nov 05 06:16:19 +0000 2020", "default_profile": true, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc \u58fd\u5c4b\u306e\u30aa\u30f3\u30e9\u30a4\u30f3\u304f\u3058\u30b5\u30fc\u30d3\u30b9\u300c\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058\u300d\u306e\u516c\u5f0f\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u3059\u3002 \u3053\u3053\u3067\u3057\u304b\u624b\u306b\u5165\u3089\u306a\u3044\u9650\u5b9a\u304f\u3058\u4f01\u753b\u3084\u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u3092\u7d9a\u3005\u3054\u7d39\u4ecb\u4e88\u5b9a\uff01 #\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058 #\u30b3\u30c8\u304f\u3058 \u203b\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3053\u3061\u3089\u2192https://t.co/Tv22ZCHVMn", "entities": {"description": {"urls": [{"display_url": "kuji.kotobukiya.co.jp/contact/", "expanded_url": "http://kuji.kotobukiya.co.jp/contact/", "url": "https://t.co/Tv22ZCHVMn", "indices": [106, 129]}]}, "url": {"urls": [{"display_url": "kuji.kotobukiya.co.jp", "expanded_url": "https://kuji.kotobukiya.co.jp/", "url": "https://t.co/Ev3XP3mdHl", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 26, "followers_count": 16965, "friends_count": 29, "has_custom_timelines": false, "is_translator": false, "listed_count": 33, "location": "", "media_count": 285, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058", "normal_followers_count": 16965, "pinned_tweet_ids_str": ["1622414775798960128"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 61.85, "rgb": {"blue": 243, "green": 239, "red": 230}}, {"percentage": 8.56, "rgb": {"blue": 104, "green": 83, "red": 91}}, {"percentage": 6.03, "rgb": {"blue": 167, "green": 191, "red": 210}}, {"percentage": 5.47, "rgb": {"blue": 124, "green": 127, "red": 182}}, {"percentage": 1.71, "rgb": {"blue": 201, "green": 215, "red": 194}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1324233991973609473/1674431584", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 71.22, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 26.01, "rgb": {"blue": 70, "green": 153, "red": 1}}, {"percentage": 1.78, "rgb": {"blue": 168, "green": 205, "red": 138}}, {"percentage": 0.56, "rgb": {"blue": 48, "green": 185, "red": 111}}, {"percentage": 0.15, "rgb": {"blue": 130, "green": 182, "red": 81}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1351381239698124803/9DCaBUBA_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya_kuji", "statuses_count": 479, "translator_type": "none", "url": "https://t.co/Ev3XP3mdHl", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Thu Feb 09 08:00:00 +0000 2023", "conversation_id_str": "1623592538975178753", "display_text_range": [0, 151], "entities": {"media": [{"display_url": "pic.twitter.com/bMiQsw3jPo", "expanded_url": "https://twitter.com/kotobukiya_kuji/status/1623592538975178753/photo/1", "id_str": "1622815566661832704", "indices": [152, 175], "media_url_https": "https://pbs.twimg.com/media/FoVmKOraUAAeg3Y.jpg", "type": "photo", "url": "https://t.co/bMiQsw3jPo", "features": {"large": {"faces": [{"x": 291, "y": 191, "h": 86, "w": 86}, {"x": 539, "y": 191, "h": 137, "w": 137}]}, "medium": {"faces": [{"x": 291, "y": 191, "h": 86, "w": 86}, {"x": 539, "y": 191, "h": 137, "w": 137}]}, "small": {"faces": [{"x": 164, "y": 108, "h": 48, "w": 48}, {"x": 305, "y": 108, "h": 77, "w": 77}]}, "orig": {"faces": [{"x": 291, "y": 191, "h": 86, "w": 86}, {"x": 539, "y": 191, "h": 137, "w": 137}]}}, "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": 436, "y": 0, "w": 628, "h": 628}, {"x": 475, "y": 0, "w": 551, "h": 628}, {"x": 593, "y": 0, "w": 314, "h": 628}, {"x": 0, "y": 0, "w": 1200, "h": 628}]}}], "user_mentions": [], "urls": [{"display_url": "kuji.kotobukiya.co.jp/lp/rainbowlive\u2026", "expanded_url": "https://kuji.kotobukiya.co.jp/lp/rainbowlive/?utm_source=twitter&utm_medium=social&utm_campaign=230209", "url": "https://t.co/HYtcAkjy4u", "indices": [103, 126]}], "hashtags": [{"indices": [9, 17], "text": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058"}, {"indices": [128, 141], "text": "prettyrhythm"}, {"indices": [142, 151], "text": "\u30ec\u30a4\u30f3\u30dc\u30fc\u30e9\u30a4\u30d6"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/bMiQsw3jPo", "expanded_url": "https://twitter.com/kotobukiya_kuji/status/1623592538975178753/photo/1", "id_str": "1622815566661832704", "indices": [152, 175], "media_key": "3_1622815566661832704", "media_url_https": "https://pbs.twimg.com/media/FoVmKOraUAAeg3Y.jpg", "type": "photo", "url": "https://t.co/bMiQsw3jPo", "ext_media_color": {"palette": [{"percentage": 22.87, "rgb": {"blue": 217, "green": 213, "red": 197}}, {"percentage": 11.64, "rgb": {"blue": 228, "green": 180, "red": 116}}, {"percentage": 10.68, "rgb": {"blue": 131, "green": 9, "red": 229}}, {"percentage": 5.76, "rgb": {"blue": 215, "green": 195, "red": 221}}, {"percentage": 4.76, "rgb": {"blue": 212, "green": 233, "red": 156}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 291, "y": 191, "h": 86, "w": 86}, {"x": 539, "y": 191, "h": 137, "w": 137}]}, "medium": {"faces": [{"x": 291, "y": 191, "h": 86, "w": 86}, {"x": 539, "y": 191, "h": 137, "w": 137}]}, "small": {"faces": [{"x": 164, "y": 108, "h": 48, "w": 48}, {"x": 305, "y": 108, "h": 77, "w": 77}]}, "orig": {"faces": [{"x": 291, "y": 191, "h": 86, "w": 86}, {"x": 539, "y": 191, "h": 137, "w": 137}]}}, "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": 436, "y": 0, "w": 628, "h": 628}, {"x": 475, "y": 0, "w": 551, "h": 628}, {"x": 593, "y": 0, "w": 314, "h": 628}, {"x": 0, "y": 0, "w": 1200, "h": 628}]}}]}, "favorite_count": 683, "favorited": false, "full_text": "\u3010\u660e\u65e5\u304b\u3089\uff01\u3011\n\u300c#\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058 \u30d7\u30ea\u30c6\u30a3\u30fc\u30ea\u30ba\u30e0\u30fb\u30ec\u30a4\u30f3\u30dc\u30fc\u30e9\u30a4\u30d6\u300d\u304c\u660e\u65e5\u30102\u670810\u65e5(\u91d1)\u3011\u3088\u308a\u8ca9\u58f2\u958b\u59cb\uff01\n\n\u4eba\u6c17\u8863\u88c5\u306e\u8863\u88c5\u30a2\u30af\u30ea\u30eb\u30ad\u30fc\u30db\u30eb\u30c0\u30fc\u304c\u5fc5\u305a\u5f53\u305f\u308b\u30cf\u30ba\u30ec\u306a\u3057\u306e\u304f\u3058\u3067\u3059\uff01\n\n\u25bc\u8a73\u7d30\u306f\u3053\u3061\u3089\uff01\nhttps://t.co/HYtcAkjy4u\n\n#prettyrhythm #\u30ec\u30a4\u30f3\u30dc\u30fc\u30e9\u30a4\u30d6 https://t.co/bMiQsw3jPo", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 46, "reply_count": 0, "retweet_count": 395, "retweeted": false, "user_id_str": "1324233991973609473", "id_str": "1623592538975178753"}}}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623572425874235392", "sortIndex": "1623572425874235392", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623572425874235392", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Thu Feb 09 06:40:05 +0000 2023", "conversation_id_str": "1623572425874235392", "display_text_range": [0, 140], "entities": {"user_mentions": [{"id_str": "539896161", "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u30aa\u30f3\u30e9\u30a4\u30f3\u30b7\u30e7\u30c3\u30d7", "screen_name": "kotobukiya_2han", "indices": [3, 19]}], "urls": [{"display_url": "shop.kotobukiya.co.jp/shop/g/g493405\u2026", "expanded_url": "https://shop.kotobukiya.co.jp/shop/g/g4934054046645/?utm_source=twitter&utm_medium=social&utm_campaign=230209", "url": "https://t.co/bJP4egh7fl", "indices": [77, 100]}], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "RT @kotobukiya_2han: \u3010\u4e88\u7d04\u958b\u59cb\u3011FUKUBUKU COLLECTION \u30c1\u30a7\u30f3\u30bd\u30fc\u30de\u30f3 \u30c8\u30ec\u30fc\u30c7\u30a3\u30f3\u30b0\u30de\u30b9\u30b3\u30c3\u30c8\uff08\u9650\u5b9a\u54c1/\u7279\u5178\u4ed8\uff09\nhttps://t.co/bJP4egh7fl\nTV\u30a2\u30cb\u30e1\u300e\u30c1\u30a7\u30f3\u30bd\u30fc\u30de\u30f3\u300f\u3088\u308a\u3001\u798f\u798f\u3057\u3044\u8868\u60c5\u306e\u7652\u3057\u30de\u30b9\u30b3\u30c3\u30c8\u767b\u5834\uff01\nBOX\u2026", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 8, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623572425874235392", "retweeted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1623501946677084161", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo1Mzk4OTYxNjE=", "rest_id": "539896161", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Mar 29 08:56:05 +0000 2012", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc \u58fd\u5c4b\u306e\u76f4\u55b6\u901a\u8ca9 \u30b3\u30c8\u30d6\u30ad\u30e4\u30aa\u30f3\u30e9\u30a4\u30f3\u30b7\u30e7\u30c3\u30d7\u306e\u516c\u5f0f\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u3059\u3002 \u65b0\u5546\u54c1,\u9650\u5b9a\u54c1,\u7279\u5178,\u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u306a\u3069\u3001\u6ce8\u76ee\u306e\u60c5\u5831\u3092\u304a\u5c4a\u3051\uff01 \n\u203b\u5f53\u5e97\u3078\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3000https://t.co/efyHPiCjtQ\u2026\u3000\u304b\u3089\u304a\u9858\u3044\u3057\u307e\u3059\u3002", "entities": {"description": {"urls": [{"display_url": "shop.kotobukiya.co.jp/shop/contact/c", "expanded_url": "http://shop.kotobukiya.co.jp/shop/contact/c", "url": "https://t.co/efyHPiCjtQ", "indices": [88, 111]}]}, "url": {"urls": [{"display_url": "shop.kotobukiya.co.jp", "expanded_url": "http://shop.kotobukiya.co.jp/", "url": "https://t.co/kPMCYHPSyv", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4534, "followers_count": 74702, "friends_count": 232, "has_custom_timelines": true, "is_translator": false, "listed_count": 1063, "location": "\u6771\u4eac\u90fd\u7acb\u5ddd\u5e02", "media_count": 13403, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u30aa\u30f3\u30e9\u30a4\u30f3\u30b7\u30e7\u30c3\u30d7", "normal_followers_count": 74702, "pinned_tweet_ids_str": ["1620708537696493568"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 40.64, "rgb": {"blue": 201, "green": 155, "red": 209}}, {"percentage": 19.24, "rgb": {"blue": 219, "green": 207, "red": 236}}, {"percentage": 11.23, "rgb": {"blue": 96, "green": 164, "red": 221}}, {"percentage": 3.4, "rgb": {"blue": 191, "green": 79, "red": 180}}, {"percentage": 3.36, "rgb": {"blue": 124, "green": 30, "red": 221}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/539896161/1675131047", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 82.61, "rgb": {"blue": 70, "green": 153, "red": 1}}, {"percentage": 12.76, "rgb": {"blue": 251, "green": 252, "red": 250}}, {"percentage": 4.11, "rgb": {"blue": 176, "green": 211, "red": 147}}, {"percentage": 0.52, "rgb": {"blue": 132, "green": 185, "red": 87}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/879859877618753537/BmFairza_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya_2han", "statuses_count": 22045, "translator_type": "none", "url": "https://t.co/kPMCYHPSyv", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Thu Feb 09 02:00:01 +0000 2023", "conversation_id_str": "1623501946677084161", "display_text_range": [0, 174], "entities": {"media": [{"display_url": "pic.twitter.com/zFtIfvnayF", "expanded_url": "https://twitter.com/kotobukiya_2han/status/1623501946677084161/photo/1", "id_str": "1623248745751257088", "indices": [175, 198], "media_url_https": "https://pbs.twimg.com/media/FobwIkiaIAAhiJE.jpg", "type": "photo", "url": "https://t.co/zFtIfvnayF", "features": {"large": {"faces": [{"x": 117, "y": 1119, "h": 66, "w": 66}, {"x": 82, "y": 1119, "h": 64, "w": 64}]}, "medium": {"faces": [{"x": 99, "y": 950, "h": 56, "w": 56}, {"x": 69, "y": 950, "h": 54, "w": 54}]}, "small": {"faces": [{"x": 56, "y": 538, "h": 31, "w": 31}, {"x": 39, "y": 538, "h": 30, "w": 30}]}, "orig": {"faces": [{"x": 117, "y": 1119, "h": 66, "w": 66}, {"x": 82, "y": 1119, "h": 64, "w": 64}]}}, "sizes": {"large": {"h": 1414, "w": 1000, "resize": "fit"}, "medium": {"h": 1200, "w": 849, "resize": "fit"}, "small": {"h": 680, "w": 481, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 1414, "width": 1000, "focus_rects": [{"x": 0, "y": 854, "w": 1000, "h": 560}, {"x": 0, "y": 414, "w": 1000, "h": 1000}, {"x": 0, "y": 274, "w": 1000, "h": 1140}, {"x": 293, "y": 0, "w": 707, "h": 1414}, {"x": 0, "y": 0, "w": 1000, "h": 1414}]}}], "user_mentions": [], "urls": [{"display_url": "shop.kotobukiya.co.jp/shop/g/g493405\u2026", "expanded_url": "https://shop.kotobukiya.co.jp/shop/g/g4934054046645/?utm_source=twitter&utm_medium=social&utm_campaign=230209", "url": "https://t.co/bJP4egh7fl", "indices": [56, 79]}], "hashtags": [{"indices": [153, 161], "text": "\u30c1\u30a7\u30f3\u30bd\u30fc\u30de\u30f3"}, {"indices": [162, 174], "text": "chainsawman"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/zFtIfvnayF", "expanded_url": "https://twitter.com/kotobukiya_2han/status/1623501946677084161/photo/1", "id_str": "1623248745751257088", "indices": [175, 198], "media_key": "3_1623248745751257088", "media_url_https": "https://pbs.twimg.com/media/FobwIkiaIAAhiJE.jpg", "type": "photo", "url": "https://t.co/zFtIfvnayF", "ext_media_color": {"palette": [{"percentage": 24.0, "rgb": {"blue": 0, "green": 241, "red": 255}}, {"percentage": 21.13, "rgb": {"blue": 15, "green": 110, "red": 208}}, {"percentage": 15.95, "rgb": {"blue": 6, "green": 6, "red": 6}}, {"percentage": 15.23, "rgb": {"blue": 221, "green": 230, "red": 239}}, {"percentage": 6.24, "rgb": {"blue": 107, "green": 192, "red": 214}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 117, "y": 1119, "h": 66, "w": 66}, {"x": 82, "y": 1119, "h": 64, "w": 64}]}, "medium": {"faces": [{"x": 99, "y": 950, "h": 56, "w": 56}, {"x": 69, "y": 950, "h": 54, "w": 54}]}, "small": {"faces": [{"x": 56, "y": 538, "h": 31, "w": 31}, {"x": 39, "y": 538, "h": 30, "w": 30}]}, "orig": {"faces": [{"x": 117, "y": 1119, "h": 66, "w": 66}, {"x": 82, "y": 1119, "h": 64, "w": 64}]}}, "sizes": {"large": {"h": 1414, "w": 1000, "resize": "fit"}, "medium": {"h": 1200, "w": 849, "resize": "fit"}, "small": {"h": 680, "w": 481, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 1414, "width": 1000, "focus_rects": [{"x": 0, "y": 854, "w": 1000, "h": 560}, {"x": 0, "y": 414, "w": 1000, "h": 1000}, {"x": 0, "y": 274, "w": 1000, "h": 1140}, {"x": 293, "y": 0, "w": 707, "h": 1414}, {"x": 0, "y": 0, "w": 1000, "h": 1414}]}}, {"display_url": "pic.twitter.com/zFtIfvnayF", "expanded_url": "https://twitter.com/kotobukiya_2han/status/1623501946677084161/photo/1", "id_str": "1623248756564172800", "indices": [175, 198], "media_key": "3_1623248756564172800", "media_url_https": "https://pbs.twimg.com/media/FobwJM0aIAAky4S.jpg", "type": "photo", "url": "https://t.co/zFtIfvnayF", "ext_media_color": {"palette": [{"percentage": 33.59, "rgb": {"blue": 0, "green": 0, "red": 1}}, {"percentage": 17.84, "rgb": {"blue": 0, "green": 112, "red": 214}}, {"percentage": 15.1, "rgb": {"blue": 0, "green": 240, "red": 254}}, {"percentage": 11.99, "rgb": {"blue": 216, "green": 231, "red": 247}}, {"percentage": 4.3, "rgb": {"blue": 152, "green": 192, "red": 215}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 600, "w": 765, "resize": "fit"}, "medium": {"h": 600, "w": 765, "resize": "fit"}, "small": {"h": 533, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 600, "width": 765, "focus_rects": [{"x": 0, "y": 0, "w": 765, "h": 428}, {"x": 0, "y": 0, "w": 600, "h": 600}, {"x": 0, "y": 0, "w": 526, "h": 600}, {"x": 98, "y": 0, "w": 300, "h": 600}, {"x": 0, "y": 0, "w": 765, "h": 600}]}}]}, "favorite_count": 21, "favorited": false, "full_text": "\u3010\u4e88\u7d04\u958b\u59cb\u3011FUKUBUKU COLLECTION \u30c1\u30a7\u30f3\u30bd\u30fc\u30de\u30f3 \u30c8\u30ec\u30fc\u30c7\u30a3\u30f3\u30b0\u30de\u30b9\u30b3\u30c3\u30c8\uff08\u9650\u5b9a\u54c1/\u7279\u5178\u4ed8\uff09\nhttps://t.co/bJP4egh7fl\nTV\u30a2\u30cb\u30e1\u300e\u30c1\u30a7\u30f3\u30bd\u30fc\u30de\u30f3\u300f\u3088\u308a\u3001\u798f\u798f\u3057\u3044\u8868\u60c5\u306e\u7652\u3057\u30de\u30b9\u30b3\u30c3\u30c8\u767b\u5834\uff01\nBOX\u8cfc\u5165\u7279\u5178\u3068\u3057\u3066\u300c\u30c7\u30f3\u30b8 \u30a2\u30ca\u30b6\u30fcVer. \u30de\u30b9\u30b3\u30c3\u30c8\u300d\u3092\u30d7\u30ec\u30bc\u30f3\u30c8\uff01\n#\u30c1\u30a7\u30f3\u30bd\u30fc\u30de\u30f3 #chainsawman https://t.co/zFtIfvnayF", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 8, "retweeted": false, "user_id_str": "539896161", "id_str": "1623501946677084161"}}}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623570500101488640", "sortIndex": "1623570500101488640", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623570500101488640", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Thu Feb 09 06:32:26 +0000 2023", "conversation_id_str": "1623570500101488640", "display_text_range": [0, 140], "entities": {"user_mentions": [{"id_str": "402537986", "name": "\u30c6\u30a4\u30eb\u30ba\u30c1\u30e3\u30f3\u30cd\u30eb\uff0b", "screen_name": "tales_ch", "indices": [3, 12]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "RT @tales_ch: \uff0f\n\u300c\u30c6\u30a4\u30eb\u30ba \u30aa\u30d6 \u30b7\u30f3\u30d5\u30a9\u30cb\u30a2 \u30d7\u30ec\u30df\u30a2\u30e0\u30a4\u30d9\u30f3\u30c8\u300d\n\u30b3\u30c8\u30d6\u30ad\u30e4\u79cb\u8449\u539f\u99284F\u3067\u958b\u50ac\u4e2d\u2744\n\uff3c\n\n\u4f1a\u5834\u3067\u306f\u63cf\u304d\u4e0b\u308d\u3057\u7b49\u8eab\u5927\u30d1\u30cd\u30eb\u304c\u304a\u51fa\u8fce\u3048\u266a\n\n\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058\u306e\u8ca9\u58f2\u3084\u3001\u5546\u54c1\u30b5\u30f3\u30d7\u30eb\u3082\u5c55\u793a\u4e2d\ud83d\udca8\n\u305c\u3072\u3054\u6765\u5e97\u304f\u3060\u3055\u3044\u2728\n\n\u25bc\u8a73\u7d30\u306f\u3053\u3061\u3089\nhttps://t\u2026", "is_quote_status": false, "lang": "ja", "quote_count": 0, "reply_count": 0, "retweet_count": 368, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623570500101488640", "retweeted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1623154661560619008", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo0MDI1Mzc5ODY=", "rest_id": "402537986", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Tue Nov 01 07:01:20 +0000 2011", "default_profile": false, "default_profile_image": false, "description": "\u300e\u30c6\u30a4\u30eb\u30ba \u30aa\u30d6\u300f\u30b7\u30ea\u30fc\u30ba\u516c\u5f0f\u30dd\u30fc\u30bf\u30eb\u30b5\u30a4\u30c8\uff62\u30c6\u30a4\u30eb\u30ba\u30c1\u30e3\u30f3\u30cd\u30eb\uff0b\uff63\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002 \u300e\u30c6\u30a4\u30eb\u30ba \u30aa\u30d6\u300f\u30b7\u30ea\u30fc\u30ba\u306e\u6700\u65b0\u4f5c\u306e\u60c5\u5831\u3084\u3001\u304a\u5f97\u306a\u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u306a\u3069\u3092\u5404\u62c5\u5f53\u8005\u304b\u3089\u304a\u77e5\u3089\u305b\u3057\u307e\u3059\u3002", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "tales-ch.jp", "expanded_url": "http://tales-ch.jp/", "url": "http://t.co/6R32t0j89e", "indices": [0, 22]}]}}, "fast_followers_count": 0, "favourites_count": 244, "followers_count": 140682, "friends_count": 23, "has_custom_timelines": false, "is_translator": false, "listed_count": 1630, "location": "", "media_count": 2832, "name": "\u30c6\u30a4\u30eb\u30ba\u30c1\u30e3\u30f3\u30cd\u30eb\uff0b", "normal_followers_count": 140682, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 72.26, "rgb": {"blue": 32, "green": 28, "red": 23}}, {"percentage": 14.06, "rgb": {"blue": 58, "green": 80, "red": 107}}, {"percentage": 7.79, "rgb": {"blue": 138, "green": 166, "red": 180}}, {"percentage": 1.84, "rgb": {"blue": 149, "green": 140, "red": 143}}, {"percentage": 0.96, "rgb": {"blue": 57, "green": 46, "red": 85}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/402537986/1593679965", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 66.05, "rgb": {"blue": 187, "green": 235, "red": 249}}, {"percentage": 22.71, "rgb": {"blue": 138, "green": 217, "red": 245}}, {"percentage": 7.76, "rgb": {"blue": 34, "green": 62, "red": 38}}, {"percentage": 0.75, "rgb": {"blue": 197, "green": 208, "red": 199}}, {"percentage": 0.46, "rgb": {"blue": 21, "green": 211, "red": 232}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1278612561487777793/EDuqA0KI_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "tales_ch", "statuses_count": 13138, "translator_type": "none", "url": "http://t.co/6R32t0j89e", "verified": true, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Wed Feb 08 03:00:02 +0000 2023", "conversation_id_str": "1623154661560619008", "display_text_range": [0, 164], "entities": {"media": [{"display_url": "pic.twitter.com/NpuGR33pjr", "expanded_url": "https://twitter.com/tales_ch/status/1623154661560619008/photo/1", "id_str": "1622601938218143749", "indices": [165, 188], "media_url_https": "https://pbs.twimg.com/media/FoSj3ataUAUNbzy.jpg", "type": "photo", "url": "https://t.co/NpuGR33pjr", "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 540, "w": 781, "resize": "fit"}, "medium": {"h": 540, "w": 781, "resize": "fit"}, "small": {"h": 470, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 540, "width": 781, "focus_rects": [{"x": 0, "y": 0, "w": 781, "h": 437}, {"x": 140, "y": 0, "w": 540, "h": 540}, {"x": 173, "y": 0, "w": 474, "h": 540}, {"x": 275, "y": 0, "w": 270, "h": 540}, {"x": 0, "y": 0, "w": 781, "h": 540}]}}], "user_mentions": [], "urls": [{"display_url": "kotobukiya.co.jp/?post_type=eve\u2026", "expanded_url": "https://www.kotobukiya.co.jp/?post_type=event&p=295322&preview=true", "url": "https://t.co/PO3hFjzTYG", "indices": [116, 139]}], "hashtags": [{"indices": [141, 146], "text": "\u30c6\u30a4\u30eb\u30ba"}, {"indices": [147, 152], "text": "TOSR"}, {"indices": [153, 164], "text": "\u30b7\u30f3\u30d5\u30a9\u30cb\u30a220\u5468\u5e74"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/NpuGR33pjr", "expanded_url": "https://twitter.com/tales_ch/status/1623154661560619008/photo/1", "id_str": "1622601938218143749", "indices": [165, 188], "media_key": "3_1622601938218143749", "media_url_https": "https://pbs.twimg.com/media/FoSj3ataUAUNbzy.jpg", "type": "photo", "url": "https://t.co/NpuGR33pjr", "ext_media_color": {"palette": [{"percentage": 57.54, "rgb": {"blue": 188, "green": 193, "red": 204}}, {"percentage": 19.77, "rgb": {"blue": 43, "green": 39, "red": 28}}, {"percentage": 6.77, "rgb": {"blue": 173, "green": 151, "red": 152}}, {"percentage": 5.92, "rgb": {"blue": 124, "green": 172, "red": 197}}, {"percentage": 3.15, "rgb": {"blue": 121, "green": 131, "red": 188}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 540, "w": 781, "resize": "fit"}, "medium": {"h": 540, "w": 781, "resize": "fit"}, "small": {"h": 470, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 540, "width": 781, "focus_rects": [{"x": 0, "y": 0, "w": 781, "h": 437}, {"x": 140, "y": 0, "w": 540, "h": 540}, {"x": 173, "y": 0, "w": 474, "h": 540}, {"x": 275, "y": 0, "w": 270, "h": 540}, {"x": 0, "y": 0, "w": 781, "h": 540}]}}, {"display_url": "pic.twitter.com/NpuGR33pjr", "expanded_url": "https://twitter.com/tales_ch/status/1623154661560619008/photo/1", "id_str": "1622601948645183492", "indices": [165, 188], "media_key": "3_1622601948645183492", "media_url_https": "https://pbs.twimg.com/media/FoSj4BjaUAQNRBf.jpg", "type": "photo", "url": "https://t.co/NpuGR33pjr", "ext_media_color": {"palette": [{"percentage": 46.55, "rgb": {"blue": 195, "green": 204, "red": 209}}, {"percentage": 28.62, "rgb": {"blue": 136, "green": 126, "red": 96}}, {"percentage": 6.65, "rgb": {"blue": 114, "green": 155, "red": 205}}, {"percentage": 5.51, "rgb": {"blue": 181, "green": 167, "red": 132}}, {"percentage": 4.48, "rgb": {"blue": 75, "green": 89, "red": 115}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 425, "y": 523, "h": 103, "w": 103}, {"x": 1869, "y": 277, "h": 123, "w": 123}]}, "medium": {"faces": [{"x": 249, "y": 306, "h": 60, "w": 60}, {"x": 1095, "y": 162, "h": 72, "w": 72}]}, "small": {"faces": [{"x": 141, "y": 173, "h": 34, "w": 34}, {"x": 620, "y": 92, "h": 41, "w": 41}]}, "orig": {"faces": [{"x": 759, "y": 934, "h": 185, "w": 185}, {"x": 3334, "y": 495, "h": 221, "w": 221}]}}, "sizes": {"large": {"h": 1371, "w": 2048, "resize": "fit"}, "medium": {"h": 803, "w": 1200, "resize": "fit"}, "small": {"h": 455, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 2444, "width": 3652, "focus_rects": [{"x": 0, "y": 0, "w": 3652, "h": 2045}, {"x": 0, "y": 0, "w": 2444, "h": 2444}, {"x": 114, "y": 0, "w": 2144, "h": 2444}, {"x": 575, "y": 0, "w": 1222, "h": 2444}, {"x": 0, "y": 0, "w": 3652, "h": 2444}]}}, {"display_url": "pic.twitter.com/NpuGR33pjr", "expanded_url": "https://twitter.com/tales_ch/status/1623154661560619008/photo/1", "id_str": "1622601956467560450", "indices": [165, 188], "media_key": "3_1622601956467560450", "media_url_https": "https://pbs.twimg.com/media/FoSj4esaUAIXO0X.jpg", "type": "photo", "url": "https://t.co/NpuGR33pjr", "ext_media_color": {"palette": [{"percentage": 44.82, "rgb": {"blue": 188, "green": 205, "red": 218}}, {"percentage": 17.62, "rgb": {"blue": 113, "green": 158, "red": 187}}, {"percentage": 9.34, "rgb": {"blue": 99, "green": 82, "red": 59}}, {"percentage": 9.3, "rgb": {"blue": 36, "green": 28, "red": 110}}, {"percentage": 4.35, "rgb": {"blue": 109, "green": 132, "red": 199}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 854, "w": 1058, "resize": "fit"}, "medium": {"h": 854, "w": 1058, "resize": "fit"}, "small": {"h": 549, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 854, "width": 1058, "focus_rects": [{"x": 0, "y": 262, "w": 1058, "h": 592}, {"x": 0, "y": 0, "w": 854, "h": 854}, {"x": 0, "y": 0, "w": 749, "h": 854}, {"x": 130, "y": 0, "w": 427, "h": 854}, {"x": 0, "y": 0, "w": 1058, "h": 854}]}}, {"display_url": "pic.twitter.com/NpuGR33pjr", "expanded_url": "https://twitter.com/tales_ch/status/1623154661560619008/photo/1", "id_str": "1622601963857924096", "indices": [165, 188], "media_key": "3_1622601963857924096", "media_url_https": "https://pbs.twimg.com/media/FoSj46OaUAAZaja.jpg", "type": "photo", "url": "https://t.co/NpuGR33pjr", "ext_media_color": {"palette": [{"percentage": 63.77, "rgb": {"blue": 195, "green": 190, "red": 188}}, {"percentage": 8.34, "rgb": {"blue": 173, "green": 138, "red": 118}}, {"percentage": 6.73, "rgb": {"blue": 18, "green": 1, "red": 141}}, {"percentage": 5.43, "rgb": {"blue": 146, "green": 135, "red": 189}}, {"percentage": 2.96, "rgb": {"blue": 188, "green": 214, "red": 221}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 1259, "y": 209, "h": 96, "w": 96}, {"x": 953, "y": 269, "h": 117, "w": 117}]}, "medium": {"faces": [{"x": 738, "y": 122, "h": 56, "w": 56}, {"x": 558, "y": 157, "h": 68, "w": 68}]}, "small": {"faces": [{"x": 418, "y": 69, "h": 31, "w": 31}, {"x": 316, "y": 89, "h": 39, "w": 39}]}, "orig": {"faces": [{"x": 2401, "y": 400, "h": 183, "w": 183}, {"x": 1818, "y": 514, "h": 224, "w": 224}]}}, "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": 2196, "width": 3904, "focus_rects": [{"x": 0, "y": 0, "w": 3904, "h": 2186}, {"x": 0, "y": 0, "w": 2196, "h": 2196}, {"x": 110, "y": 0, "w": 1926, "h": 2196}, {"x": 524, "y": 0, "w": 1098, "h": 2196}, {"x": 0, "y": 0, "w": 3904, "h": 2196}]}}]}, "favorite_count": 997, "favorited": false, "full_text": "\uff0f\n\u300c\u30c6\u30a4\u30eb\u30ba \u30aa\u30d6 \u30b7\u30f3\u30d5\u30a9\u30cb\u30a2 \u30d7\u30ec\u30df\u30a2\u30e0\u30a4\u30d9\u30f3\u30c8\u300d\n\u30b3\u30c8\u30d6\u30ad\u30e4\u79cb\u8449\u539f\u99284F\u3067\u958b\u50ac\u4e2d\u2744\n\uff3c\n\n\u4f1a\u5834\u3067\u306f\u63cf\u304d\u4e0b\u308d\u3057\u7b49\u8eab\u5927\u30d1\u30cd\u30eb\u304c\u304a\u51fa\u8fce\u3048\u266a\n\n\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058\u306e\u8ca9\u58f2\u3084\u3001\u5546\u54c1\u30b5\u30f3\u30d7\u30eb\u3082\u5c55\u793a\u4e2d\ud83d\udca8\n\u305c\u3072\u3054\u6765\u5e97\u304f\u3060\u3055\u3044\u2728\n\n\u25bc\u8a73\u7d30\u306f\u3053\u3061\u3089\nhttps://t.co/PO3hFjzTYG\n\n#\u30c6\u30a4\u30eb\u30ba #TOSR #\u30b7\u30f3\u30d5\u30a9\u30cb\u30a220\u5468\u5e74 https://t.co/NpuGR33pjr", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 42, "reply_count": 0, "retweet_count": 368, "retweeted": false, "user_id_str": "402537986", "id_str": "1623154661560619008"}}}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623547296179961857", "sortIndex": "1623547296179961857", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623547296179961857", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Thu Feb 09 05:00:14 +0000 2023", "conversation_id_str": "1623547296179961857", "display_text_range": [0, 140], "entities": {"user_mentions": [{"id_str": "352036856", "name": "\u30b3\u30c8\u30d6\u30ad\u30e4es", "screen_name": "es_series", "indices": [3, 13]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "RT @es_series: \u3010\u4e88\u7d04\u53d7\u4ed8\u4e2d\u3011\n\u307e\u3069\u30b9\u30bf \u30d6\u30eb\u30fc\u30ed\u30c3\u30af\uff08\u51686\u7a2e\uff09\n\u30a4\u30e9\u30b9\u30c8\u30ec\u30fc\u30bf\u30fc\u30fb\u30b5\u30af\u30e9\u30a4\u63cf\u304d\u4e0b\u308d\u3057\u306e\u30c7\u30d5\u30a9\u30eb\u30e1\u30a4\u30e9\u30b9\u30c8\u304c\u30ad\u30e5\u30fc\u30c8\u306a\u30a2\u30a4\u30c6\u30e0\u2728\n\u30b9\u30bf\u30f3\u30c9\u306b\u3057\u305f\u308a\u3001\u30c1\u30e3\u30fc\u30e0\u306b\u3057\u305f\u308a\u69d8\u3005\u306a\u697d\u3057\u307f\u65b9\u304c\u53ef\u80fd\uff01\n\u30b3\u30c8\u30d6\u30ad\u30e4\u30b7\u30e7\u30c3\u30d7\u9650\u5b9a\u5546\u54c1\u3067\u3059\u26bd\n\n\u25bc\u3054\u4e88\u7d04\u306f\u30b3\u30c1\u30e9\nhtt\u2026", "is_quote_status": false, "lang": "ja", "quote_count": 0, "reply_count": 0, "retweet_count": 3, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623547296179961857", "retweeted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1623247764497870848", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjozNTIwMzY4NTY=", "rest_id": "352036856", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Wed Aug 10 02:04:23 +0000 2011", "default_profile": false, "default_profile_image": false, "description": "\u682a\u5f0f\u4f1a\u793e\u58fd\u5c4b\u3010es\u30c1\u30fc\u30e0\u3011\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u96d1\u8ca8\u3001\u306c\u3044\u3050\u308b\u307f\u3001\u30b9\u30b1\u30fc\u30eb\u30d5\u30a3\u30ae\u30e5\u30a2\u3001\u306a\u3069\u306a\u3069\u2026\u3002\u30e1\u30fc\u30ab\u30fc\u65b0\u5546\u54c1\u60c5\u5831\u3084\u30b5\u30f3\u30d7\u30eb\u7d39\u4ecb\u3001\u5c55\u793a\u60c5\u5831\u3001\u3055\u3089\u306bes\u30c1\u30fc\u30e0\u304c\u904b\u55b6\u3059\u308b\u30a4\u30d9\u30f3\u30c8\u60c5\u5831\u306a\u3069\u3092\u304a\u5c4a\u3051\u3044\u305f\u3057\u307e\u3059\u3002", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/kotobukiya_es/", "expanded_url": "https://www.instagram.com/kotobukiya_es/", "url": "https://t.co/gqIu6HUnjp", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 155, "followers_count": 41737, "friends_count": 155, "has_custom_timelines": true, "is_translator": false, "listed_count": 950, "location": "", "media_count": 2536, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4es", "normal_followers_count": 41737, "pinned_tweet_ids_str": ["1613702499550232577"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 64.95, "rgb": {"blue": 255, "green": 251, "red": 226}}, {"percentage": 18.02, "rgb": {"blue": 236, "green": 233, "red": 165}}, {"percentage": 12.32, "rgb": {"blue": 244, "green": 160, "red": 202}}, {"percentage": 2.13, "rgb": {"blue": 177, "green": 229, "red": 252}}, {"percentage": 1.05, "rgb": {"blue": 253, "green": 205, "red": 183}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/352036856/1539341227", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 30.64, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 24.92, "rgb": {"blue": 1, "green": 1, "red": 1}}, {"percentage": 16.42, "rgb": {"blue": 0, "green": 222, "red": 255}}, {"percentage": 4.64, "rgb": {"blue": 136, "green": 1, "red": 254}}, {"percentage": 3.62, "rgb": {"blue": 254, "green": 135, "red": 1}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1487821918/usa_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "es_series", "statuses_count": 10442, "translator_type": "none", "url": "https://t.co/gqIu6HUnjp", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Wed Feb 08 09:10:00 +0000 2023", "conversation_id_str": "1623247764497870848", "display_text_range": [0, 158], "entities": {"media": [{"display_url": "pic.twitter.com/wahMhQWKOX", "expanded_url": "https://twitter.com/es_series/status/1623247764497870848/photo/1", "id_str": "1623190545836425217", "indices": [159, 182], "media_url_https": "https://pbs.twimg.com/media/Foa7M49aQAE3IRn.jpg", "type": "photo", "url": "https://t.co/wahMhQWKOX", "features": {"large": {"faces": [{"x": 478, "y": 242, "h": 44, "w": 44}, {"x": 418, "y": 242, "h": 207, "w": 207}]}, "medium": {"faces": [{"x": 478, "y": 242, "h": 44, "w": 44}, {"x": 418, "y": 242, "h": 207, "w": 207}]}, "small": {"faces": [{"x": 424, "y": 215, "h": 39, "w": 39}, {"x": 371, "y": 215, "h": 184, "w": 184}]}, "orig": {"faces": [{"x": 478, "y": 242, "h": 44, "w": 44}, {"x": 418, "y": 242, "h": 207, "w": 207}]}}, "sizes": {"large": {"h": 600, "w": 765, "resize": "fit"}, "medium": {"h": 600, "w": 765, "resize": "fit"}, "small": {"h": 533, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 600, "width": 765, "focus_rects": [{"x": 0, "y": 72, "w": 765, "h": 428}, {"x": 0, "y": 0, "w": 600, "h": 600}, {"x": 0, "y": 0, "w": 526, "h": 600}, {"x": 22, "y": 0, "w": 300, "h": 600}, {"x": 0, "y": 0, "w": 765, "h": 600}]}}], "user_mentions": [], "urls": [{"display_url": "kotobukiya.co.jp/product/produc\u2026", "expanded_url": "https://www.kotobukiya.co.jp/product/product-0000004722/", "url": "https://t.co/58VgT47hnB", "indices": [121, 144]}], "hashtags": [{"indices": [146, 153], "text": "\u30d6\u30eb\u30fc\u30ed\u30c3\u30af"}, {"indices": [154, 158], "text": "\u30a8\u30b4\u3044"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/wahMhQWKOX", "expanded_url": "https://twitter.com/es_series/status/1623247764497870848/photo/1", "id_str": "1623190545836425217", "indices": [159, 182], "media_key": "3_1623190545836425217", "media_url_https": "https://pbs.twimg.com/media/Foa7M49aQAE3IRn.jpg", "type": "photo", "url": "https://t.co/wahMhQWKOX", "ext_media_color": {"palette": [{"percentage": 58.38, "rgb": {"blue": 244, "green": 243, "red": 243}}, {"percentage": 12.36, "rgb": {"blue": 156, "green": 73, "red": 16}}, {"percentage": 8.04, "rgb": {"blue": 181, "green": 133, "red": 107}}, {"percentage": 5.27, "rgb": {"blue": 90, "green": 76, "red": 73}}, {"percentage": 1.89, "rgb": {"blue": 43, "green": 216, "red": 201}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 478, "y": 242, "h": 44, "w": 44}, {"x": 418, "y": 242, "h": 207, "w": 207}]}, "medium": {"faces": [{"x": 478, "y": 242, "h": 44, "w": 44}, {"x": 418, "y": 242, "h": 207, "w": 207}]}, "small": {"faces": [{"x": 424, "y": 215, "h": 39, "w": 39}, {"x": 371, "y": 215, "h": 184, "w": 184}]}, "orig": {"faces": [{"x": 478, "y": 242, "h": 44, "w": 44}, {"x": 418, "y": 242, "h": 207, "w": 207}]}}, "sizes": {"large": {"h": 600, "w": 765, "resize": "fit"}, "medium": {"h": 600, "w": 765, "resize": "fit"}, "small": {"h": 533, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 600, "width": 765, "focus_rects": [{"x": 0, "y": 72, "w": 765, "h": 428}, {"x": 0, "y": 0, "w": 600, "h": 600}, {"x": 0, "y": 0, "w": 526, "h": 600}, {"x": 22, "y": 0, "w": 300, "h": 600}, {"x": 0, "y": 0, "w": 765, "h": 600}]}}]}, "favorite_count": 12, "favorited": false, "full_text": "\u3010\u4e88\u7d04\u53d7\u4ed8\u4e2d\u3011\n\u307e\u3069\u30b9\u30bf \u30d6\u30eb\u30fc\u30ed\u30c3\u30af\uff08\u51686\u7a2e\uff09\n\u30a4\u30e9\u30b9\u30c8\u30ec\u30fc\u30bf\u30fc\u30fb\u30b5\u30af\u30e9\u30a4\u63cf\u304d\u4e0b\u308d\u3057\u306e\u30c7\u30d5\u30a9\u30eb\u30e1\u30a4\u30e9\u30b9\u30c8\u304c\u30ad\u30e5\u30fc\u30c8\u306a\u30a2\u30a4\u30c6\u30e0\u2728\n\u30b9\u30bf\u30f3\u30c9\u306b\u3057\u305f\u308a\u3001\u30c1\u30e3\u30fc\u30e0\u306b\u3057\u305f\u308a\u69d8\u3005\u306a\u697d\u3057\u307f\u65b9\u304c\u53ef\u80fd\uff01\n\u30b3\u30c8\u30d6\u30ad\u30e4\u30b7\u30e7\u30c3\u30d7\u9650\u5b9a\u5546\u54c1\u3067\u3059\u26bd\n\n\u25bc\u3054\u4e88\u7d04\u306f\u30b3\u30c1\u30e9\nhttps://t.co/58VgT47hnB\n\n#\u30d6\u30eb\u30fc\u30ed\u30c3\u30af #\u30a8\u30b4\u3044 https://t.co/wahMhQWKOX", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 1, "reply_count": 0, "retweet_count": 3, "retweeted": false, "user_id_str": "352036856", "id_str": "1623247764497870848"}}}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623547285371224064", "sortIndex": "1623547285371224064", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623547285371224064", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "card": {"rest_id": "https://t.co/gt2fW7vGXJ", "legacy": {"binding_values": [{"key": "photo_image_full_size_large", "value": {"image_value": {"height": 401, "width": 765, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=jpg&name=800x419"}, "type": "IMAGE"}}, {"key": "thumbnail_image", "value": {"image_value": {"height": 150, "width": 191, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=jpg&name=280x150"}, "type": "IMAGE"}}, {"key": "description", "value": {"string_value": "\u8a71\u984c\u6cb8\u9a30\u4e2d\u306eTV\u30a2\u30cb\u30e1\u300e\u30d6\u30eb\u30fc\u30ed\u30c3\u30af\u300f\u3088\u308a\u3001\u304e\u3085\u3063\u3068\u306f\u3055\u3093\u3067\u201c\u3074\u305f\u3063\u201d\u3068\u5bc4\u308a\u6dfb\u3046\u306c\u3044\u3050\u308b\u307f\u30de\u30b9\u30b3\u30c3\u30c8\u304c\u767b\u5834\uff01", "type": "STRING"}}, {"key": "domain", "value": {"string_value": "www.kotobukiya.co.jp", "type": "STRING"}}, {"key": "thumbnail_image_large", "value": {"image_value": {"height": 314, "width": 400, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?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/1623605753620873216/mcu6bvCE?format=jpg&name=386x202"}, "type": "IMAGE"}}, {"key": "thumbnail_image_original", "value": {"image_value": {"height": 600, "width": 765, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=jpg&name=orig"}, "type": "IMAGE"}}, {"key": "site", "value": {"scribe_key": "publisher_id", "type": "USER", "user_value": {"id_str": "242610861", "path": []}}}, {"key": "photo_image_full_size_small", "value": {"image_value": {"height": 202, "width": 386, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=jpg&name=386x202"}, "type": "IMAGE"}}, {"key": "summary_photo_image_large", "value": {"image_value": {"height": 401, "width": 765, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=jpg&name=800x419"}, "type": "IMAGE"}}, {"key": "thumbnail_image_small", "value": {"image_value": {"height": 78, "width": 100, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=jpg&name=100x100"}, "type": "IMAGE"}}, {"key": "thumbnail_image_x_large", "value": {"image_value": {"height": 600, "width": 765, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=png&name=2048x2048_2_exp"}, "type": "IMAGE"}}, {"key": "photo_image_full_size_original", "value": {"image_value": {"height": 600, "width": 765, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=jpg&name=orig"}, "type": "IMAGE"}}, {"key": "vanity_url", "value": {"scribe_key": "vanity_url", "string_value": "kotobukiya.co.jp", "type": "STRING"}}, {"key": "photo_image_full_size", "value": {"image_value": {"height": 314, "width": 600, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=jpg&name=600x314"}, "type": "IMAGE"}}, {"key": "thumbnail_image_color", "value": {"image_color_value": {"palette": [{"rgb": {"blue": 150, "green": 67, "red": 12}, "percentage": 62.09}, {"rgb": {"blue": 117, "green": 68, "red": 49}, "percentage": 9.63}, {"rgb": {"blue": 71, "green": 65, "red": 62}, "percentage": 7.46}, {"rgb": {"blue": 199, "green": 208, "red": 231}, "percentage": 6.7}, {"rgb": {"blue": 71, "green": 157, "red": 228}, "percentage": 3.83}]}, "type": "IMAGE_COLOR"}}, {"key": "title", "value": {"string_value": "\u30d6\u30eb\u30fc\u30ed\u30c3\u30af \u3074\u305f\u306c\u3044 \u6f54 \u4e16\u4e00\u3001\u8702\u697d \u5efb\u3001\u570b\u795e\u932c\u4ecb\u3001\u5343\u5207\u8c79\u99ac | es\u30fb\u7537\u6027\u30ad\u30e3\u30e9 | KOTOBUKIYA", "type": "STRING"}}, {"key": "summary_photo_image_color", "value": {"image_color_value": {"palette": [{"rgb": {"blue": 150, "green": 67, "red": 12}, "percentage": 62.09}, {"rgb": {"blue": 117, "green": 68, "red": 49}, "percentage": 9.63}, {"rgb": {"blue": 71, "green": 65, "red": 62}, "percentage": 7.46}, {"rgb": {"blue": 199, "green": 208, "red": 231}, "percentage": 6.7}, {"rgb": {"blue": 71, "green": 157, "red": 228}, "percentage": 3.83}]}, "type": "IMAGE_COLOR"}}, {"key": "summary_photo_image_x_large", "value": {"image_value": {"height": 600, "width": 765, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?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/1623605753620873216/mcu6bvCE?format=jpg&name=600x314"}, "type": "IMAGE"}}, {"key": "photo_image_full_size_color", "value": {"image_color_value": {"palette": [{"rgb": {"blue": 150, "green": 67, "red": 12}, "percentage": 62.09}, {"rgb": {"blue": 117, "green": 68, "red": 49}, "percentage": 9.63}, {"rgb": {"blue": 71, "green": 65, "red": 62}, "percentage": 7.46}, {"rgb": {"blue": 199, "green": 208, "red": 231}, "percentage": 6.7}, {"rgb": {"blue": 71, "green": 157, "red": 228}, "percentage": 3.83}]}, "type": "IMAGE_COLOR"}}, {"key": "photo_image_full_size_x_large", "value": {"image_value": {"height": 600, "width": 765, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=png&name=2048x2048_2_exp"}, "type": "IMAGE"}}, {"key": "card_url", "value": {"scribe_key": "card_url", "string_value": "https://t.co/gt2fW7vGXJ", "type": "STRING"}}, {"key": "summary_photo_image_original", "value": {"image_value": {"height": 600, "width": 765, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?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/gt2fW7vGXJ", "user_refs": [{"id": "VXNlcjoyNDI2MTA4NjE=", "rest_id": "242610861", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Tue Jan 25 05:08:37 +0000 2011", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u516c\u5f0f\u5ba3\u4f1d\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\n\u5546\u54c1\u60c5\u5831\u3092\u306f\u3058\u3081\u3001\u30a4\u30d9\u30f3\u30c8\u3084\u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u306a\u3069\u306e\u6700\u65b0\u60c5\u5831\u3092\u3064\u3076\u3084\u3044\u3066\u3044\u307e\u3059\u3002\u30b5\u30d6\u30ab\u30eb\u30c1\u30e3\u30fc\u3092\u611b\u3059\u308b\u65b9\u3092\u5168\u529b\u5fdc\u63f4\uff01\n\n#kotobukiya #\u30b3\u30c8\u30d6\u30ad\u30e4", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kotobukiya.co.jp", "expanded_url": "https://www.kotobukiya.co.jp/", "url": "https://t.co/S4ki7XUEAu", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 10497, "followers_count": 186677, "friends_count": 938, "has_custom_timelines": true, "is_translator": false, "listed_count": 1896, "location": "\u6771\u4eac\u90fd\u7acb\u5ddd\u5e02", "media_count": 11306, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u5ba3\u4f1d", "normal_followers_count": 186677, "pinned_tweet_ids_str": ["1618896684502876160"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 28.92, "rgb": {"blue": 209, "green": 211, "red": 238}}, {"percentage": 28.36, "rgb": {"blue": 70, "green": 77, "red": 222}}, {"percentage": 11.97, "rgb": {"blue": 141, "green": 196, "red": 219}}, {"percentage": 8.25, "rgb": {"blue": 143, "green": 149, "red": 235}}, {"percentage": 3.85, "rgb": {"blue": 49, "green": 60, "red": 218}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/242610861/1675136194", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 48.29, "rgb": {"blue": 68, "green": 153, "red": 1}}, {"percentage": 45.41, "rgb": {"blue": 254, "green": 254, "red": 254}}, {"percentage": 5.26, "rgb": {"blue": 165, "green": 197, "red": 129}}, {"percentage": 1.02, "rgb": {"blue": 123, "green": 176, "red": 70}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1333205460929810433/9TmdVzlJ_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiyas", "statuses_count": 46191, "translator_type": "none", "url": "https://t.co/S4ki7XUEAu", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}]}}, "legacy": {"created_at": "Thu Feb 09 05:00:11 +0000 2023", "conversation_id_str": "1623547285371224064", "display_text_range": [0, 90], "entities": {"user_mentions": [{"id_str": "352036856", "name": "\u30b3\u30c8\u30d6\u30ad\u30e4es", "screen_name": "es_series", "indices": [3, 13]}], "urls": [{"display_url": "kotobukiya.co.jp/product/produc\u2026", "expanded_url": "https://www.kotobukiya.co.jp/product/product-0000004682/", "url": "https://t.co/gt2fW7vGXJ", "indices": [67, 90]}], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "RT @es_series: \u3074\u305f\u306c\u3044 \u30d6\u30eb\u30fc\u30ed\u30c3\u30af \u7b2c\u4e00\u5f3e\uff08\u6f54 \u4e16\u4e00\uff0f\u8702\u697d \u5efb\uff0f\u570b\u795e\u932c\u4ecb\uff0f\u5343\u5207\u8c79\u99ac\uff09\u3082\u3054\u4e88\u7d04\u53d7\u4ed8\u4e2d\u3067\u3059\uff01\n\n\u25bc\u8a73\u7d30\nhttps://t.co/gt2fW7vGXJ", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 3, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623547285371224064", "retweeted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1623263661069570049", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjozNTIwMzY4NTY=", "rest_id": "352036856", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Wed Aug 10 02:04:23 +0000 2011", "default_profile": false, "default_profile_image": false, "description": "\u682a\u5f0f\u4f1a\u793e\u58fd\u5c4b\u3010es\u30c1\u30fc\u30e0\u3011\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u96d1\u8ca8\u3001\u306c\u3044\u3050\u308b\u307f\u3001\u30b9\u30b1\u30fc\u30eb\u30d5\u30a3\u30ae\u30e5\u30a2\u3001\u306a\u3069\u306a\u3069\u2026\u3002\u30e1\u30fc\u30ab\u30fc\u65b0\u5546\u54c1\u60c5\u5831\u3084\u30b5\u30f3\u30d7\u30eb\u7d39\u4ecb\u3001\u5c55\u793a\u60c5\u5831\u3001\u3055\u3089\u306bes\u30c1\u30fc\u30e0\u304c\u904b\u55b6\u3059\u308b\u30a4\u30d9\u30f3\u30c8\u60c5\u5831\u306a\u3069\u3092\u304a\u5c4a\u3051\u3044\u305f\u3057\u307e\u3059\u3002", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/kotobukiya_es/", "expanded_url": "https://www.instagram.com/kotobukiya_es/", "url": "https://t.co/gqIu6HUnjp", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 155, "followers_count": 41737, "friends_count": 155, "has_custom_timelines": true, "is_translator": false, "listed_count": 950, "location": "", "media_count": 2536, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4es", "normal_followers_count": 41737, "pinned_tweet_ids_str": ["1613702499550232577"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 64.95, "rgb": {"blue": 255, "green": 251, "red": 226}}, {"percentage": 18.02, "rgb": {"blue": 236, "green": 233, "red": 165}}, {"percentage": 12.32, "rgb": {"blue": 244, "green": 160, "red": 202}}, {"percentage": 2.13, "rgb": {"blue": 177, "green": 229, "red": 252}}, {"percentage": 1.05, "rgb": {"blue": 253, "green": 205, "red": 183}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/352036856/1539341227", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 30.64, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 24.92, "rgb": {"blue": 1, "green": 1, "red": 1}}, {"percentage": 16.42, "rgb": {"blue": 0, "green": 222, "red": 255}}, {"percentage": 4.64, "rgb": {"blue": 136, "green": 1, "red": 254}}, {"percentage": 3.62, "rgb": {"blue": 254, "green": 135, "red": 1}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1487821918/usa_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "es_series", "statuses_count": 10442, "translator_type": "none", "url": "https://t.co/gqIu6HUnjp", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "card": {"rest_id": "https://t.co/gt2fW7vGXJ", "legacy": {"binding_values": [{"key": "photo_image_full_size_large", "value": {"image_value": {"height": 401, "width": 765, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=jpg&name=800x419"}, "type": "IMAGE"}}, {"key": "thumbnail_image", "value": {"image_value": {"height": 150, "width": 191, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=jpg&name=280x150"}, "type": "IMAGE"}}, {"key": "description", "value": {"string_value": "\u8a71\u984c\u6cb8\u9a30\u4e2d\u306eTV\u30a2\u30cb\u30e1\u300e\u30d6\u30eb\u30fc\u30ed\u30c3\u30af\u300f\u3088\u308a\u3001\u304e\u3085\u3063\u3068\u306f\u3055\u3093\u3067\u201c\u3074\u305f\u3063\u201d\u3068\u5bc4\u308a\u6dfb\u3046\u306c\u3044\u3050\u308b\u307f\u30de\u30b9\u30b3\u30c3\u30c8\u304c\u767b\u5834\uff01", "type": "STRING"}}, {"key": "domain", "value": {"string_value": "www.kotobukiya.co.jp", "type": "STRING"}}, {"key": "thumbnail_image_large", "value": {"image_value": {"height": 314, "width": 400, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?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/1623605753620873216/mcu6bvCE?format=jpg&name=386x202"}, "type": "IMAGE"}}, {"key": "thumbnail_image_original", "value": {"image_value": {"height": 600, "width": 765, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=jpg&name=orig"}, "type": "IMAGE"}}, {"key": "site", "value": {"scribe_key": "publisher_id", "type": "USER", "user_value": {"id_str": "242610861", "path": []}}}, {"key": "photo_image_full_size_small", "value": {"image_value": {"height": 202, "width": 386, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=jpg&name=386x202"}, "type": "IMAGE"}}, {"key": "summary_photo_image_large", "value": {"image_value": {"height": 401, "width": 765, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=jpg&name=800x419"}, "type": "IMAGE"}}, {"key": "thumbnail_image_small", "value": {"image_value": {"height": 78, "width": 100, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=jpg&name=100x100"}, "type": "IMAGE"}}, {"key": "thumbnail_image_x_large", "value": {"image_value": {"height": 600, "width": 765, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=png&name=2048x2048_2_exp"}, "type": "IMAGE"}}, {"key": "photo_image_full_size_original", "value": {"image_value": {"height": 600, "width": 765, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=jpg&name=orig"}, "type": "IMAGE"}}, {"key": "vanity_url", "value": {"scribe_key": "vanity_url", "string_value": "kotobukiya.co.jp", "type": "STRING"}}, {"key": "photo_image_full_size", "value": {"image_value": {"height": 314, "width": 600, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=jpg&name=600x314"}, "type": "IMAGE"}}, {"key": "thumbnail_image_color", "value": {"image_color_value": {"palette": [{"rgb": {"blue": 150, "green": 67, "red": 12}, "percentage": 62.09}, {"rgb": {"blue": 117, "green": 68, "red": 49}, "percentage": 9.63}, {"rgb": {"blue": 71, "green": 65, "red": 62}, "percentage": 7.46}, {"rgb": {"blue": 199, "green": 208, "red": 231}, "percentage": 6.7}, {"rgb": {"blue": 71, "green": 157, "red": 228}, "percentage": 3.83}]}, "type": "IMAGE_COLOR"}}, {"key": "title", "value": {"string_value": "\u30d6\u30eb\u30fc\u30ed\u30c3\u30af \u3074\u305f\u306c\u3044 \u6f54 \u4e16\u4e00\u3001\u8702\u697d \u5efb\u3001\u570b\u795e\u932c\u4ecb\u3001\u5343\u5207\u8c79\u99ac | es\u30fb\u7537\u6027\u30ad\u30e3\u30e9 | KOTOBUKIYA", "type": "STRING"}}, {"key": "summary_photo_image_color", "value": {"image_color_value": {"palette": [{"rgb": {"blue": 150, "green": 67, "red": 12}, "percentage": 62.09}, {"rgb": {"blue": 117, "green": 68, "red": 49}, "percentage": 9.63}, {"rgb": {"blue": 71, "green": 65, "red": 62}, "percentage": 7.46}, {"rgb": {"blue": 199, "green": 208, "red": 231}, "percentage": 6.7}, {"rgb": {"blue": 71, "green": 157, "red": 228}, "percentage": 3.83}]}, "type": "IMAGE_COLOR"}}, {"key": "summary_photo_image_x_large", "value": {"image_value": {"height": 600, "width": 765, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?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/1623605753620873216/mcu6bvCE?format=jpg&name=600x314"}, "type": "IMAGE"}}, {"key": "photo_image_full_size_color", "value": {"image_color_value": {"palette": [{"rgb": {"blue": 150, "green": 67, "red": 12}, "percentage": 62.09}, {"rgb": {"blue": 117, "green": 68, "red": 49}, "percentage": 9.63}, {"rgb": {"blue": 71, "green": 65, "red": 62}, "percentage": 7.46}, {"rgb": {"blue": 199, "green": 208, "red": 231}, "percentage": 6.7}, {"rgb": {"blue": 71, "green": 157, "red": 228}, "percentage": 3.83}]}, "type": "IMAGE_COLOR"}}, {"key": "photo_image_full_size_x_large", "value": {"image_value": {"height": 600, "width": 765, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?format=png&name=2048x2048_2_exp"}, "type": "IMAGE"}}, {"key": "card_url", "value": {"scribe_key": "card_url", "string_value": "https://t.co/gt2fW7vGXJ", "type": "STRING"}}, {"key": "summary_photo_image_original", "value": {"image_value": {"height": 600, "width": 765, "url": "https://pbs.twimg.com/card_img/1623605753620873216/mcu6bvCE?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/gt2fW7vGXJ", "user_refs": [{"id": "VXNlcjoyNDI2MTA4NjE=", "rest_id": "242610861", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Tue Jan 25 05:08:37 +0000 2011", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u516c\u5f0f\u5ba3\u4f1d\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\n\u5546\u54c1\u60c5\u5831\u3092\u306f\u3058\u3081\u3001\u30a4\u30d9\u30f3\u30c8\u3084\u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u306a\u3069\u306e\u6700\u65b0\u60c5\u5831\u3092\u3064\u3076\u3084\u3044\u3066\u3044\u307e\u3059\u3002\u30b5\u30d6\u30ab\u30eb\u30c1\u30e3\u30fc\u3092\u611b\u3059\u308b\u65b9\u3092\u5168\u529b\u5fdc\u63f4\uff01\n\n#kotobukiya #\u30b3\u30c8\u30d6\u30ad\u30e4", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kotobukiya.co.jp", "expanded_url": "https://www.kotobukiya.co.jp/", "url": "https://t.co/S4ki7XUEAu", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 10497, "followers_count": 186677, "friends_count": 938, "has_custom_timelines": true, "is_translator": false, "listed_count": 1896, "location": "\u6771\u4eac\u90fd\u7acb\u5ddd\u5e02", "media_count": 11306, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u5ba3\u4f1d", "normal_followers_count": 186677, "pinned_tweet_ids_str": ["1618896684502876160"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 28.92, "rgb": {"blue": 209, "green": 211, "red": 238}}, {"percentage": 28.36, "rgb": {"blue": 70, "green": 77, "red": 222}}, {"percentage": 11.97, "rgb": {"blue": 141, "green": 196, "red": 219}}, {"percentage": 8.25, "rgb": {"blue": 143, "green": 149, "red": 235}}, {"percentage": 3.85, "rgb": {"blue": 49, "green": 60, "red": 218}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/242610861/1675136194", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 48.29, "rgb": {"blue": 68, "green": 153, "red": 1}}, {"percentage": 45.41, "rgb": {"blue": 254, "green": 254, "red": 254}}, {"percentage": 5.26, "rgb": {"blue": 165, "green": 197, "red": 129}}, {"percentage": 1.02, "rgb": {"blue": 123, "green": 176, "red": 70}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1333205460929810433/9TmdVzlJ_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiyas", "statuses_count": 46191, "translator_type": "none", "url": "https://t.co/S4ki7XUEAu", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}]}}, "legacy": {"created_at": "Wed Feb 08 10:13:10 +0000 2023", "conversation_id_str": "1623245257587724288", "display_text_range": [0, 75], "entities": {"user_mentions": [], "urls": [{"display_url": "kotobukiya.co.jp/product/produc\u2026", "expanded_url": "https://www.kotobukiya.co.jp/product/product-0000004682/", "url": "https://t.co/gt2fW7vGXJ", "indices": [52, 75]}], "hashtags": [], "symbols": []}, "favorite_count": 4, "favorited": false, "full_text": "\u3074\u305f\u306c\u3044 \u30d6\u30eb\u30fc\u30ed\u30c3\u30af \u7b2c\u4e00\u5f3e\uff08\u6f54 \u4e16\u4e00\uff0f\u8702\u697d \u5efb\uff0f\u570b\u795e\u932c\u4ecb\uff0f\u5343\u5207\u8c79\u99ac\uff09\u3082\u3054\u4e88\u7d04\u53d7\u4ed8\u4e2d\u3067\u3059\uff01\n\n\u25bc\u8a73\u7d30\nhttps://t.co/gt2fW7vGXJ", "in_reply_to_screen_name": "es_series", "in_reply_to_status_id_str": "1623245257587724288", "in_reply_to_user_id_str": "352036856", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 3, "retweeted": false, "user_id_str": "352036856", "id_str": "1623263661069570049", "self_thread": {"id_str": "1623245257587724288"}}}}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623547278161219584", "sortIndex": "1623547278161219584", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623547278161219584", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Thu Feb 09 05:00:09 +0000 2023", "conversation_id_str": "1623547278161219584", "display_text_range": [0, 140], "entities": {"user_mentions": [{"id_str": "352036856", "name": "\u30b3\u30c8\u30d6\u30ad\u30e4es", "screen_name": "es_series", "indices": [3, 13]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "RT @es_series: \u3010\u30b5\u30f3\u30d7\u30eb\u7d39\u4ecb\u3011\n\u30c8\u30ec\u30fc\u30c7\u30a3\u30f3\u30b0 \u3069\u3053\u3067\u3082\u3059\u3084\u3059\u3084\u30af\u30ea\u30c3\u30d7 \u30d6\u30eb\u30fc\u30ed\u30c3\u30af\n\n\u30af\u30ea\u30c3\u30d7\u3068\u30de\u30b0\u30cd\u30c3\u30c8\u3067\u3001\u631f\u3093\u3060\u308a\u304f\u3063\u3064\u3051\u305f\u308a\u2728\n\u3074\u305f\u306c\u3044\u306b\u6301\u3063\u3066\u3082\u3089\u3063\u3066\u3082\u53ef\u611b\u3044\u3067\u3059\u266a\n\n\uff3c\u78ba\u5b9f\u306b\u624b\u306b\u5165\u308c\u305f\u3044\u65b9\u306f\uff1c2/14\uff08\u706b\uff09\uff1e\u307e\u3067\u306b\u3054\u4e88\u7d04\u3092\uff0f\n\n\u3054\u4e88\u7d04\u306f\u30b3\u30c1\u30e9\u26bd\nh\u2026", "is_quote_status": false, "lang": "ja", "quote_count": 0, "reply_count": 0, "retweet_count": 121, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623547278161219584", "retweeted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1623245257587724288", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjozNTIwMzY4NTY=", "rest_id": "352036856", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Wed Aug 10 02:04:23 +0000 2011", "default_profile": false, "default_profile_image": false, "description": "\u682a\u5f0f\u4f1a\u793e\u58fd\u5c4b\u3010es\u30c1\u30fc\u30e0\u3011\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u96d1\u8ca8\u3001\u306c\u3044\u3050\u308b\u307f\u3001\u30b9\u30b1\u30fc\u30eb\u30d5\u30a3\u30ae\u30e5\u30a2\u3001\u306a\u3069\u306a\u3069\u2026\u3002\u30e1\u30fc\u30ab\u30fc\u65b0\u5546\u54c1\u60c5\u5831\u3084\u30b5\u30f3\u30d7\u30eb\u7d39\u4ecb\u3001\u5c55\u793a\u60c5\u5831\u3001\u3055\u3089\u306bes\u30c1\u30fc\u30e0\u304c\u904b\u55b6\u3059\u308b\u30a4\u30d9\u30f3\u30c8\u60c5\u5831\u306a\u3069\u3092\u304a\u5c4a\u3051\u3044\u305f\u3057\u307e\u3059\u3002", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/kotobukiya_es/", "expanded_url": "https://www.instagram.com/kotobukiya_es/", "url": "https://t.co/gqIu6HUnjp", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 155, "followers_count": 41737, "friends_count": 155, "has_custom_timelines": true, "is_translator": false, "listed_count": 950, "location": "", "media_count": 2536, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4es", "normal_followers_count": 41737, "pinned_tweet_ids_str": ["1613702499550232577"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 64.95, "rgb": {"blue": 255, "green": 251, "red": 226}}, {"percentage": 18.02, "rgb": {"blue": 236, "green": 233, "red": 165}}, {"percentage": 12.32, "rgb": {"blue": 244, "green": 160, "red": 202}}, {"percentage": 2.13, "rgb": {"blue": 177, "green": 229, "red": 252}}, {"percentage": 1.05, "rgb": {"blue": 253, "green": 205, "red": 183}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/352036856/1539341227", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 30.64, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 24.92, "rgb": {"blue": 1, "green": 1, "red": 1}}, {"percentage": 16.42, "rgb": {"blue": 0, "green": 222, "red": 255}}, {"percentage": 4.64, "rgb": {"blue": 136, "green": 1, "red": 254}}, {"percentage": 3.62, "rgb": {"blue": 254, "green": 135, "red": 1}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1487821918/usa_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "es_series", "statuses_count": 10442, "translator_type": "none", "url": "https://t.co/gqIu6HUnjp", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Wed Feb 08 09:00:02 +0000 2023", "conversation_id_str": "1623245257587724288", "display_text_range": [0, 160], "entities": {"media": [{"display_url": "pic.twitter.com/3eAbXRW4tA", "expanded_url": "https://twitter.com/es_series/status/1623245257587724288/photo/1", "id_str": "1623186464975773698", "indices": [161, 184], "media_url_https": "https://pbs.twimg.com/media/Foa3fWkaYAIdugk.jpg", "type": "photo", "url": "https://t.co/3eAbXRW4tA", "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 1167, "w": 1751, "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": 1167, "width": 1751, "focus_rects": [{"x": 0, "y": 186, "w": 1751, "h": 981}, {"x": 584, "y": 0, "w": 1167, "h": 1167}, {"x": 727, "y": 0, "w": 1024, "h": 1167}, {"x": 977, "y": 0, "w": 584, "h": 1167}, {"x": 0, "y": 0, "w": 1751, "h": 1167}]}}], "user_mentions": [], "urls": [{"display_url": "kotobukiya.co.jp/product/produc\u2026", "expanded_url": "https://www.kotobukiya.co.jp/product/product-0000004721/", "url": "https://t.co/9gA6FRkmqx", "indices": [123, 146]}], "hashtags": [{"indices": [148, 155], "text": "\u30d6\u30eb\u30fc\u30ed\u30c3\u30af"}, {"indices": [156, 160], "text": "\u30a8\u30b4\u3044"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/3eAbXRW4tA", "expanded_url": "https://twitter.com/es_series/status/1623245257587724288/photo/1", "id_str": "1623186464975773698", "indices": [161, 184], "media_key": "3_1623186464975773698", "media_url_https": "https://pbs.twimg.com/media/Foa3fWkaYAIdugk.jpg", "type": "photo", "url": "https://t.co/3eAbXRW4tA", "ext_media_color": {"palette": [{"percentage": 39.83, "rgb": {"blue": 75, "green": 123, "red": 189}}, {"percentage": 24.82, "rgb": {"blue": 201, "green": 210, "red": 202}}, {"percentage": 24.03, "rgb": {"blue": 33, "green": 38, "red": 51}}, {"percentage": 2.03, "rgb": {"blue": 69, "green": 149, "red": 243}}, {"percentage": 1.68, "rgb": {"blue": 67, "green": 58, "red": 191}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 1167, "w": 1751, "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": 1167, "width": 1751, "focus_rects": [{"x": 0, "y": 186, "w": 1751, "h": 981}, {"x": 584, "y": 0, "w": 1167, "h": 1167}, {"x": 727, "y": 0, "w": 1024, "h": 1167}, {"x": 977, "y": 0, "w": 584, "h": 1167}, {"x": 0, "y": 0, "w": 1751, "h": 1167}]}}, {"display_url": "pic.twitter.com/3eAbXRW4tA", "expanded_url": "https://twitter.com/es_series/status/1623245257587724288/photo/1", "id_str": "1623186495707439105", "indices": [161, 184], "media_key": "3_1623186495707439105", "media_url_https": "https://pbs.twimg.com/media/Foa3hJDaYAEYbAE.jpg", "type": "photo", "url": "https://t.co/3eAbXRW4tA", "ext_media_color": {"palette": [{"percentage": 90.73, "rgb": {"blue": 204, "green": 215, "red": 219}}, {"percentage": 3.27, "rgb": {"blue": 48, "green": 51, "red": 59}}, {"percentage": 2.58, "rgb": {"blue": 49, "green": 84, "red": 116}}, {"percentage": 0.99, "rgb": {"blue": 160, "green": 164, "red": 192}}, {"percentage": 0.99, "rgb": {"blue": 104, "green": 65, "red": 191}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 1167, "w": 1751, "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": 1167, "width": 1751, "focus_rects": [{"x": 0, "y": 0, "w": 1751, "h": 981}, {"x": 584, "y": 0, "w": 1167, "h": 1167}, {"x": 727, "y": 0, "w": 1024, "h": 1167}, {"x": 1167, "y": 0, "w": 584, "h": 1167}, {"x": 0, "y": 0, "w": 1751, "h": 1167}]}}, {"display_url": "pic.twitter.com/3eAbXRW4tA", "expanded_url": "https://twitter.com/es_series/status/1623245257587724288/photo/1", "id_str": "1623186524744581120", "indices": [161, 184], "media_key": "3_1623186524744581120", "media_url_https": "https://pbs.twimg.com/media/Foa3i1OaAAAwVu7.jpg", "type": "photo", "url": "https://t.co/3eAbXRW4tA", "ext_media_color": {"palette": [{"percentage": 83.82, "rgb": {"blue": 190, "green": 204, "red": 212}}, {"percentage": 10.32, "rgb": {"blue": 47, "green": 52, "red": 59}}, {"percentage": 1.76, "rgb": {"blue": 71, "green": 154, "red": 208}}, {"percentage": 1.59, "rgb": {"blue": 78, "green": 77, "red": 174}}, {"percentage": 1.28, "rgb": {"blue": 131, "green": 84, "red": 119}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 1167, "w": 1751, "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": 1167, "width": 1751, "focus_rects": [{"x": 0, "y": 0, "w": 1751, "h": 981}, {"x": 336, "y": 0, "w": 1167, "h": 1167}, {"x": 407, "y": 0, "w": 1024, "h": 1167}, {"x": 627, "y": 0, "w": 584, "h": 1167}, {"x": 0, "y": 0, "w": 1751, "h": 1167}]}}, {"display_url": "pic.twitter.com/3eAbXRW4tA", "expanded_url": "https://twitter.com/es_series/status/1623245257587724288/photo/1", "id_str": "1623186567929163776", "indices": [161, 184], "media_key": "3_1623186567929163776", "media_url_https": "https://pbs.twimg.com/media/Foa3lWGacAA5XvS.jpg", "type": "photo", "url": "https://t.co/3eAbXRW4tA", "ext_media_color": {"palette": [{"percentage": 74.0, "rgb": {"blue": 231, "green": 238, "red": 243}}, {"percentage": 5.51, "rgb": {"blue": 83, "green": 57, "red": 50}}, {"percentage": 4.99, "rgb": {"blue": 67, "green": 76, "red": 81}}, {"percentage": 4.66, "rgb": {"blue": 76, "green": 145, "red": 196}}, {"percentage": 4.21, "rgb": {"blue": 98, "green": 99, "red": 193}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 1236, "y": 646, "h": 102, "w": 102}]}, "medium": {"faces": [{"x": 847, "y": 442, "h": 69, "w": 69}]}, "small": {"faces": [{"x": 480, "y": 250, "h": 39, "w": 39}]}, "orig": {"faces": [{"x": 1236, "y": 646, "h": 102, "w": 102}]}}, "sizes": {"large": {"h": 1167, "w": 1751, "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": 1167, "width": 1751, "focus_rects": [{"x": 0, "y": 166, "w": 1751, "h": 981}, {"x": 0, "y": 0, "w": 1167, "h": 1167}, {"x": 0, "y": 0, "w": 1024, "h": 1167}, {"x": 14, "y": 0, "w": 584, "h": 1167}, {"x": 0, "y": 0, "w": 1751, "h": 1167}]}}]}, "favorite_count": 726, "favorited": false, "full_text": "\u3010\u30b5\u30f3\u30d7\u30eb\u7d39\u4ecb\u3011\n\u30c8\u30ec\u30fc\u30c7\u30a3\u30f3\u30b0 \u3069\u3053\u3067\u3082\u3059\u3084\u3059\u3084\u30af\u30ea\u30c3\u30d7 \u30d6\u30eb\u30fc\u30ed\u30c3\u30af\n\n\u30af\u30ea\u30c3\u30d7\u3068\u30de\u30b0\u30cd\u30c3\u30c8\u3067\u3001\u631f\u3093\u3060\u308a\u304f\u3063\u3064\u3051\u305f\u308a\u2728\n\u3074\u305f\u306c\u3044\u306b\u6301\u3063\u3066\u3082\u3089\u3063\u3066\u3082\u53ef\u611b\u3044\u3067\u3059\u266a\n\n\uff3c\u78ba\u5b9f\u306b\u624b\u306b\u5165\u308c\u305f\u3044\u65b9\u306f\uff1c2/14\uff08\u706b\uff09\uff1e\u307e\u3067\u306b\u3054\u4e88\u7d04\u3092\uff0f\n\n\u3054\u4e88\u7d04\u306f\u30b3\u30c1\u30e9\u26bd\nhttps://t.co/9gA6FRkmqx\n\n#\u30d6\u30eb\u30fc\u30ed\u30c3\u30af #\u30a8\u30b4\u3044 https://t.co/3eAbXRW4tA", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 40, "reply_count": 2, "retweet_count": 121, "retweeted": false, "user_id_str": "352036856", "id_str": "1623245257587724288", "self_thread": {"id_str": "1623245257587724288"}}}}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623547268480778240", "sortIndex": "1623547268480778240", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623547268480778240", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Thu Feb 09 05:00:07 +0000 2023", "conversation_id_str": "1623547268480778240", "display_text_range": [0, 140], "entities": {"user_mentions": [{"id_str": "1247827367466164226", "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\ud83e\uddf8\u306c\u3044\u3050\u308b\u307f\u901a\u4fe1\ud83d\udc8c", "screen_name": "kotobukiya_nui", "indices": [3, 18]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "RT @kotobukiya_nui: \u3010\u4e88\u7d04\u958b\u59cb\u3011\nFUKUBUKU COLLECTION \u30c1\u30a7\u30f3\u30bd\u30fc\u30de\u30f3 \u30c8\u30ec\u30fc\u30c7\u30a3\u30f3\u30b0\u30de\u30b9\u30b3\u30c3\u30c8\nTV\u30a2\u30cb\u30e1\u300e\u30c1\u30a7\u30f3\u30bd\u30fc\u30de\u30f3\u300f\u306e\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\u305f\u3061\u304c\u3001\u3075\u3063\u304f\u3089\u304b\u308f\u3044\u3044\u30de\u30b9\u30b3\u30c3\u30c8\u306b\u306a\u3063\u3066\u767b\u5834\u2728\n\u30b3\u30c8\u30d6\u30ad\u30e4\u30b7\u30e7\u30c3\u30d7\u9650\u5b9a\u5546\u54c1\u3067\u3059\uff01\n\n\u25bc\u3054\u4e88\u7d04\u306f\u30b3\u30c1\u2026", "is_quote_status": false, "lang": "ja", "quote_count": 0, "reply_count": 0, "retweet_count": 19, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623547268480778240", "retweeted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1623502191154827265", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMjQ3ODI3MzY3NDY2MTY0MjI2", "rest_id": "1247827367466164226", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Wed Apr 08 10:06:57 +0000 2020", "default_profile": true, "default_profile_image": false, "description": "\u682a\u5f0f\u4f1a\u793e\u58fd\u5c4b\u306e\u306c\u3044\u3050\u308b\u307f\u60c5\u5831\u3092\u304a\u5c4a\u3051\u3059\u308b\u30a2\u30ab\u30a6\u30f3\u30c8\uff0f\u3074\u305f\u306c\u3044\uff0fPitanui mode\uff0fMy Dear Bear\uff0f\u3082\u3061\u30d5\u30ec\uff0f\u798f\u30b3\u30ec\uff0f\u306c\u3044\u3050\u308b\u307f\u4ee5\u5916\u306e\u60c5\u5831\u306f\u3053\u3061\u3089\u3010@es_series\u3011\ud83e\uddf8\u8da3\u5473\u306f\u306c\u3044\u64ae\u308a\ud83e\uddf8", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 41, "followers_count": 6499, "friends_count": 28, "has_custom_timelines": true, "is_translator": false, "listed_count": 45, "location": "", "media_count": 380, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\ud83e\uddf8\u306c\u3044\u3050\u308b\u307f\u901a\u4fe1\ud83d\udc8c", "normal_followers_count": 6499, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 54.31, "rgb": {"blue": 241, "green": 223, "red": 193}}, {"percentage": 16.59, "rgb": {"blue": 206, "green": 174, "red": 194}}, {"percentage": 10.23, "rgb": {"blue": 178, "green": 235, "red": 243}}, {"percentage": 6.87, "rgb": {"blue": 227, "green": 179, "red": 104}}, {"percentage": 2.74, "rgb": {"blue": 143, "green": 228, "red": 250}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1247827367466164226/1674180335", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 34.61, "rgb": {"blue": 211, "green": 235, "red": 250}}, {"percentage": 19.67, "rgb": {"blue": 37, "green": 77, "red": 200}}, {"percentage": 18.89, "rgb": {"blue": 109, "green": 180, "red": 206}}, {"percentage": 6.24, "rgb": {"blue": 44, "green": 139, "red": 186}}, {"percentage": 4.38, "rgb": {"blue": 250, "green": 251, "red": 251}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1488074357435875329/yNF4KZyS_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya_nui", "statuses_count": 777, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Thu Feb 09 02:01:00 +0000 2023", "conversation_id_str": "1623502191154827265", "display_text_range": [0, 168], "entities": {"media": [{"display_url": "pic.twitter.com/5lUCaS9D6F", "expanded_url": "https://twitter.com/kotobukiya_nui/status/1623502191154827265/photo/1", "id_str": "1622833851411341318", "indices": [169, 192], "media_url_https": "https://pbs.twimg.com/media/FoV2yiraIAYJ07Y.jpg", "type": "photo", "url": "https://t.co/5lUCaS9D6F", "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 600, "w": 765, "resize": "fit"}, "medium": {"h": 600, "w": 765, "resize": "fit"}, "small": {"h": 533, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 600, "width": 765, "focus_rects": [{"x": 0, "y": 0, "w": 765, "h": 428}, {"x": 0, "y": 0, "w": 600, "h": 600}, {"x": 0, "y": 0, "w": 526, "h": 600}, {"x": 98, "y": 0, "w": 300, "h": 600}, {"x": 0, "y": 0, "w": 765, "h": 600}]}}], "user_mentions": [], "urls": [{"display_url": "shop.kotobukiya.co.jp/shop/g/g493405\u2026", "expanded_url": "https://shop.kotobukiya.co.jp/shop/g/g4934054046645/", "url": "https://t.co/AWfTXLQ5XK", "indices": [122, 145]}], "hashtags": [{"indices": [147, 155], "text": "\u30c1\u30a7\u30f3\u30bd\u30fc\u30de\u30f3"}, {"indices": [156, 168], "text": "chainsawman"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/5lUCaS9D6F", "expanded_url": "https://twitter.com/kotobukiya_nui/status/1623502191154827265/photo/1", "id_str": "1622833851411341318", "indices": [169, 192], "media_key": "3_1622833851411341318", "media_url_https": "https://pbs.twimg.com/media/FoV2yiraIAYJ07Y.jpg", "type": "photo", "url": "https://t.co/5lUCaS9D6F", "ext_media_color": {"palette": [{"percentage": 33.48, "rgb": {"blue": 1, "green": 1, "red": 1}}, {"percentage": 17.27, "rgb": {"blue": 3, "green": 112, "red": 214}}, {"percentage": 15.06, "rgb": {"blue": 1, "green": 240, "red": 254}}, {"percentage": 11.94, "rgb": {"blue": 217, "green": 230, "red": 246}}, {"percentage": 4.3, "rgb": {"blue": 152, "green": 190, "red": 212}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 600, "w": 765, "resize": "fit"}, "medium": {"h": 600, "w": 765, "resize": "fit"}, "small": {"h": 533, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 600, "width": 765, "focus_rects": [{"x": 0, "y": 0, "w": 765, "h": 428}, {"x": 0, "y": 0, "w": 600, "h": 600}, {"x": 0, "y": 0, "w": 526, "h": 600}, {"x": 98, "y": 0, "w": 300, "h": 600}, {"x": 0, "y": 0, "w": 765, "h": 600}]}}]}, "favorite_count": 71, "favorited": false, "full_text": "\u3010\u4e88\u7d04\u958b\u59cb\u3011\nFUKUBUKU COLLECTION \u30c1\u30a7\u30f3\u30bd\u30fc\u30de\u30f3 \u30c8\u30ec\u30fc\u30c7\u30a3\u30f3\u30b0\u30de\u30b9\u30b3\u30c3\u30c8\nTV\u30a2\u30cb\u30e1\u300e\u30c1\u30a7\u30f3\u30bd\u30fc\u30de\u30f3\u300f\u306e\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\u305f\u3061\u304c\u3001\u3075\u3063\u304f\u3089\u304b\u308f\u3044\u3044\u30de\u30b9\u30b3\u30c3\u30c8\u306b\u306a\u3063\u3066\u767b\u5834\u2728\n\u30b3\u30c8\u30d6\u30ad\u30e4\u30b7\u30e7\u30c3\u30d7\u9650\u5b9a\u5546\u54c1\u3067\u3059\uff01\n\n\u25bc\u3054\u4e88\u7d04\u306f\u30b3\u30c1\u30e9\uff01\nhttps://t.co/AWfTXLQ5XK\n\n#\u30c1\u30a7\u30f3\u30bd\u30fc\u30de\u30f3 #chainsawman https://t.co/5lUCaS9D6F", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 1, "reply_count": 0, "retweet_count": 19, "retweeted": false, "user_id_str": "1247827367466164226", "id_str": "1623502191154827265"}}}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "tweet-1623547245235929089", "sortIndex": "1623547245235929089", "content": {"entryType": "TimelineTimelineItem", "itemContent": {"itemType": "TimelineTweet", "tweet_results": {"result": {"__typename": "Tweet", "rest_id": "1623547245235929089", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTY1MjkzNzc0", "rest_id": "2965293774", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Thu Jan 08 06:57:18 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "\u30db\u30d3\u30fc\u30e1\u30fc\u30ab\u30fc\u30b3\u30c8\u30d6\u30ad\u30e4\u76f4\u55b6\u5e97\u60c5\u5831\u3092\u304d\u306a\u3053\u3068\u76f8\u68d2\u306e\u30d0\u30b9\u30bf\u30fc\u304c\u306e\u3093\u3073\u308a\u304a\u5c4a\u3051\u266a \u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u306f\u500b\u5225\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u3002\u5404\u5e97\u3078\u306e\u3054\u8cea\u554f\u306f\u304a\u8fd1\u304f\u306e\u30b3\u30c8\u30d6\u30ad\u30e4\u5e97\u8217\u307e\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002\u76f4\u55b6\u5e97\u4e00\u89a7\u2192 https://t.co/puiLckCWUK", "entities": {"description": {"urls": [{"display_url": "kotobukiya.co.jp/store/", "expanded_url": "http://kotobukiya.co.jp/store/", "url": "https://t.co/puiLckCWUK", "indices": [109, 132]}]}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/hayamimi/", "expanded_url": "http://www.kotobukiya.co.jp/hayamimi/", "url": "https://t.co/dlhGYx1Dj1", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4270, "followers_count": 13864, "friends_count": 245, "has_custom_timelines": true, "is_translator": false, "listed_count": 214, "location": "\u7acb\u5ddd\u3001\u79cb\u8449\u539f\u3001\u5927\u962a\u65e5\u672c\u6a4b\u3001\u30aa\u30f3\u30e9\u30a4\u30f3", "media_count": 819, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304d\u306a\u3053\u3010\u516c\u5f0f\u3011", "normal_followers_count": 13864, "pinned_tweet_ids_str": ["1623954931911913473"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.85, "rgb": {"blue": 16, "green": 21, "red": 34}}, {"percentage": 13.5, "rgb": {"blue": 4, "green": 35, "red": 117}}, {"percentage": 9.99, "rgb": {"blue": 164, "green": 174, "red": 188}}, {"percentage": 9.87, "rgb": {"blue": 93, "green": 220, "red": 92}}, {"percentage": 3.11, "rgb": {"blue": 6, "green": 55, "red": 182}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2965293774/1671010372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.79, "rgb": {"blue": 24, "green": 21, "red": 23}}, {"percentage": 25.81, "rgb": {"blue": 58, "green": 79, "red": 231}}, {"percentage": 25.6, "rgb": {"blue": 222, "green": 233, "red": 254}}, {"percentage": 4.63, "rgb": {"blue": 28, "green": 224, "red": 253}}, {"percentage": 2.5, "rgb": {"blue": 182, "green": 205, "red": 30}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1327186285258186754/T7ABIDKE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kotobukiya__85", "statuses_count": 9411, "translator_type": "none", "url": "https://t.co/dlhGYx1Dj1", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Thu Feb 09 05:00:01 +0000 2023", "conversation_id_str": "1623547245235929089", "display_text_range": [0, 140], "entities": {"user_mentions": [{"id_str": "1250976770", "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u79cb\u8449\u539f\u9928\uff2012\uff1a00\uff5e20\uff1a00", "screen_name": "Kotobukiya_akb", "indices": [3, 18]}], "urls": [], "hashtags": [{"indices": [52, 60], "text": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058"}, {"indices": [121, 126], "text": "TOSR"}, {"indices": [127, 132], "text": "\u30c6\u30a4\u30eb\u30ba"}], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "RT @Kotobukiya_akb: \u3010\u79cb\u8449\u539f\u99282F\u3011\u5c55\u793a\u60c5\u5831\uff1a\u79cb\u8449\u539f\u99284F\u3068\u30aa\u30f3\u30e9\u30a4\u30f3\u306b\u3066\u8ca9\u58f2\u4e2d\u306e #\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058 \u300c\u30c6\u30a4\u30eb\u30ba \u30aa\u30d6 \u30b7\u30f3\u30d5\u30a9\u30cb\u30a2\u300d\u306e\u30b5\u30f3\u30d7\u30eb\u5c55\u793a\u4e2d\u3067\u3059\uff01\n\u3054\u6765\u5e97\u306e\u969b\u306f\u305c\u3072\u3054\u89a7\u304f\u3060\u3055\u3044\uff01\n\u203b2F\u3067\u306f\u8ca9\u58f2\u3057\u3066\u304a\u308a\u307e\u305b\u3093\u3002\n#TOSR #\u30c6\u30a4\u30eb\u30ba #\u30b7\u30f3\u30d5\u30a9\u30cb\u2026", "is_quote_status": false, "lang": "ja", "quote_count": 0, "reply_count": 0, "retweet_count": 12, "retweeted": false, "user_id_str": "2965293774", "id_str": "1623547245235929089", "retweeted_status_result": {"result": {"__typename": "Tweet", "rest_id": "1623521400819687424", "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMjUwOTc2Nzcw", "rest_id": "1250976770", "affiliates_highlighted_label": {}, "has_nft_avatar": false, "legacy": {"created_at": "Fri Mar 08 06:57:14 +0000 2013", "default_profile": false, "default_profile_image": false, "description": "\u30b9\u30bf\u30c3\u30d5\u304c\u5546\u54c1\u3084\u65b0\u7740\u60c5\u5831\u3092\u66f4\u65b0\u4e2d\uff01\uff01\u203b\u672c\u30a2\u30ab\u30a6\u30f3\u30c8\u304b\u3089\u500b\u5225\u306e\u8fd4\u7b54\u306f\u884c\u3063\u3066\u304a\u308a\u307e\u305b\u3093\u3002\u79cb\u8449\u539f\u9928(03-5298-6300)\u307e\u3067\u304a\u96fb\u8a71\u3067\u304a\u554f\u3044\u5408\u308f\u305b\u304f\u3060\u3055\u3044\u307e\u305b\u3002", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "kotobukiya.co.jp/store/akiba/", "expanded_url": "http://www.kotobukiya.co.jp/store/akiba/", "url": "https://t.co/3Ggefzkn2m", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 1948, "followers_count": 40977, "friends_count": 261, "has_custom_timelines": true, "is_translator": false, "listed_count": 792, "location": "\u6771\u4eac\u90fd\u5343\u4ee3\u7530\u533a\u5916\u795e\u75301-8-8", "media_count": 23348, "name": "\u30b3\u30c8\u30d6\u30ad\u30e4\u79cb\u8449\u539f\u9928\uff202\u670811\u65e5\uff5e2\u670812\u65e5 10\uff1a00\uff5e20\uff1a00", "normal_followers_count": 40977, "pinned_tweet_ids_str": ["1585852493048999936"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 28.92, "rgb": {"blue": 209, "green": 211, "red": 238}}, {"percentage": 28.36, "rgb": {"blue": 70, "green": 77, "red": 222}}, {"percentage": 11.97, "rgb": {"blue": 141, "green": 196, "red": 219}}, {"percentage": 8.25, "rgb": {"blue": 143, "green": 149, "red": 235}}, {"percentage": 3.85, "rgb": {"blue": 49, "green": 60, "red": 218}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1250976770/1675212639", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 82.35, "rgb": {"blue": 70, "green": 153, "red": 1}}, {"percentage": 13.03, "rgb": {"blue": 251, "green": 252, "red": 250}}, {"percentage": 4.24, "rgb": {"blue": 173, "green": 208, "red": 141}}, {"percentage": 0.37, "rgb": {"blue": 136, "green": 187, "red": 88}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/882041994498908161/_HPyuPSf_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Kotobukiya_akb", "statuses_count": 37710, "translator_type": "none", "url": "https://t.co/3Ggefzkn2m", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Thu Feb 09 03:17:20 +0000 2023", "conversation_id_str": "1623521400819687424", "display_text_range": [0, 163], "entities": {"media": [{"display_url": "pic.twitter.com/6AycpYRP4T", "expanded_url": "https://twitter.com/Kotobukiya_akb/status/1623521400819687424/photo/1", "id_str": "1623521299900538883", "indices": [164, 187], "media_url_https": "https://pbs.twimg.com/media/FofoBT3aIAMbLGm.jpg", "type": "photo", "url": "https://t.co/6AycpYRP4T", "features": {"large": {"faces": [{"x": 918, "y": 267, "h": 63, "w": 63}, {"x": 384, "y": 584, "h": 59, "w": 59}]}, "medium": {"faces": [{"x": 710, "y": 206, "h": 48, "w": 48}, {"x": 297, "y": 452, "h": 45, "w": 45}]}, "small": {"faces": [{"x": 402, "y": 117, "h": 27, "w": 27}, {"x": 168, "y": 256, "h": 25, "w": 25}]}, "orig": {"faces": [{"x": 918, "y": 267, "h": 63, "w": 63}, {"x": 384, "y": 584, "h": 59, "w": 59}]}}, "sizes": {"large": {"h": 808, "w": 1550, "resize": "fit"}, "medium": {"h": 626, "w": 1200, "resize": "fit"}, "small": {"h": 354, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 808, "width": 1550, "focus_rects": [{"x": 107, "y": 0, "w": 1443, "h": 808}, {"x": 486, "y": 0, "w": 808, "h": 808}, {"x": 536, "y": 0, "w": 709, "h": 808}, {"x": 688, "y": 0, "w": 404, "h": 808}, {"x": 0, "y": 0, "w": 1550, "h": 808}]}}], "user_mentions": [], "urls": [{"display_url": "kuji.kotobukiya.co.jp/lp/tos20th/?ut\u2026", "expanded_url": "https://kuji.kotobukiya.co.jp/lp/tos20th/?utm_source=twitter&utm_medium=social&utm_campaign=230209", "url": "https://t.co/qZDbqlBlNG", "indices": [140, 163]}], "hashtags": [{"indices": [32, 40], "text": "\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058"}, {"indices": [101, 106], "text": "TOSR"}, {"indices": [107, 112], "text": "\u30c6\u30a4\u30eb\u30ba"}, {"indices": [113, 124], "text": "\u30b7\u30f3\u30d5\u30a9\u30cb\u30a220\u5468\u5e74"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/6AycpYRP4T", "expanded_url": "https://twitter.com/Kotobukiya_akb/status/1623521400819687424/photo/1", "id_str": "1623521299900538883", "indices": [164, 187], "media_key": "3_1623521299900538883", "media_url_https": "https://pbs.twimg.com/media/FofoBT3aIAMbLGm.jpg", "type": "photo", "url": "https://t.co/6AycpYRP4T", "ext_media_color": {"palette": [{"percentage": 41.36, "rgb": {"blue": 167, "green": 174, "red": 180}}, {"percentage": 13.23, "rgb": {"blue": 62, "green": 67, "red": 73}}, {"percentage": 9.97, "rgb": {"blue": 112, "green": 85, "red": 80}}, {"percentage": 8.16, "rgb": {"blue": 171, "green": 143, "red": 138}}, {"percentage": 4.47, "rgb": {"blue": 58, "green": 93, "red": 121}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 918, "y": 267, "h": 63, "w": 63}, {"x": 384, "y": 584, "h": 59, "w": 59}]}, "medium": {"faces": [{"x": 710, "y": 206, "h": 48, "w": 48}, {"x": 297, "y": 452, "h": 45, "w": 45}]}, "small": {"faces": [{"x": 402, "y": 117, "h": 27, "w": 27}, {"x": 168, "y": 256, "h": 25, "w": 25}]}, "orig": {"faces": [{"x": 918, "y": 267, "h": 63, "w": 63}, {"x": 384, "y": 584, "h": 59, "w": 59}]}}, "sizes": {"large": {"h": 808, "w": 1550, "resize": "fit"}, "medium": {"h": 626, "w": 1200, "resize": "fit"}, "small": {"h": 354, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 808, "width": 1550, "focus_rects": [{"x": 107, "y": 0, "w": 1443, "h": 808}, {"x": 486, "y": 0, "w": 808, "h": 808}, {"x": 536, "y": 0, "w": 709, "h": 808}, {"x": 688, "y": 0, "w": 404, "h": 808}, {"x": 0, "y": 0, "w": 1550, "h": 808}]}}, {"display_url": "pic.twitter.com/6AycpYRP4T", "expanded_url": "https://twitter.com/Kotobukiya_akb/status/1623521400819687424/photo/1", "id_str": "1623521299938308096", "indices": [164, 187], "media_key": "3_1623521299938308096", "media_url_https": "https://pbs.twimg.com/media/FofoBUAacAAjlPT.jpg", "type": "photo", "url": "https://t.co/6AycpYRP4T", "ext_media_color": {"palette": [{"percentage": 34.71, "rgb": {"blue": 52, "green": 53, "red": 43}}, {"percentage": 26.94, "rgb": {"blue": 185, "green": 181, "red": 181}}, {"percentage": 5.59, "rgb": {"blue": 123, "green": 159, "red": 177}}, {"percentage": 4.88, "rgb": {"blue": 86, "green": 89, "red": 113}}, {"percentage": 2.27, "rgb": {"blue": 88, "green": 63, "red": 26}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 472, "y": 122, "h": 64, "w": 64}]}, "medium": {"faces": [{"x": 461, "y": 119, "h": 62, "w": 62}]}, "small": {"faces": [{"x": 261, "y": 67, "h": 35, "w": 35}]}, "orig": {"faces": [{"x": 472, "y": 122, "h": 64, "w": 64}]}}, "sizes": {"large": {"h": 620, "w": 1228, "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": 620, "width": 1228, "focus_rects": [{"x": 0, "y": 0, "w": 1107, "h": 620}, {"x": 0, "y": 0, "w": 620, "h": 620}, {"x": 0, "y": 0, "w": 544, "h": 620}, {"x": 59, "y": 0, "w": 310, "h": 620}, {"x": 0, "y": 0, "w": 1228, "h": 620}]}}, {"display_url": "pic.twitter.com/6AycpYRP4T", "expanded_url": "https://twitter.com/Kotobukiya_akb/status/1623521400819687424/photo/1", "id_str": "1623521299917332481", "indices": [164, 187], "media_key": "3_1623521299917332481", "media_url_https": "https://pbs.twimg.com/media/FofoBT7aYAE00HD.jpg", "type": "photo", "url": "https://t.co/6AycpYRP4T", "ext_media_color": {"palette": [{"percentage": 35.43, "rgb": {"blue": 173, "green": 181, "red": 186}}, {"percentage": 19.25, "rgb": {"blue": 49, "green": 50, "red": 41}}, {"percentage": 8.99, "rgb": {"blue": 180, "green": 149, "red": 141}}, {"percentage": 6.57, "rgb": {"blue": 72, "green": 97, "red": 124}}, {"percentage": 3.55, "rgb": {"blue": 104, "green": 144, "red": 164}}]}, "ext_media_availability": {"status": "Available"}, "features": {"large": {"faces": [{"x": 634, "y": 179, "h": 46, "w": 46}, {"x": 556, "y": 833, "h": 48, "w": 48}, {"x": 680, "y": 292, "h": 76, "w": 76}, {"x": 989, "y": 237, "h": 82, "w": 82}, {"x": 525, "y": 744, "h": 104, "w": 104}]}, "medium": {"faces": [{"x": 634, "y": 179, "h": 46, "w": 46}, {"x": 556, "y": 833, "h": 48, "w": 48}, {"x": 680, "y": 292, "h": 76, "w": 76}, {"x": 989, "y": 237, "h": 82, "w": 82}, {"x": 525, "y": 744, "h": 104, "w": 104}]}, "small": {"faces": [{"x": 399, "y": 112, "h": 28, "w": 28}, {"x": 350, "y": 524, "h": 30, "w": 30}, {"x": 428, "y": 183, "h": 47, "w": 47}, {"x": 622, "y": 149, "h": 51, "w": 51}, {"x": 330, "y": 468, "h": 65, "w": 65}]}, "orig": {"faces": [{"x": 634, "y": 179, "h": 46, "w": 46}, {"x": 556, "y": 833, "h": 48, "w": 48}, {"x": 680, "y": 292, "h": 76, "w": 76}, {"x": 989, "y": 237, "h": 82, "w": 82}, {"x": 525, "y": 744, "h": 104, "w": 104}]}}, "sizes": {"large": {"h": 972, "w": 1080, "resize": "fit"}, "medium": {"h": 972, "w": 1080, "resize": "fit"}, "small": {"h": 612, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 972, "width": 1080, "focus_rects": [{"x": 0, "y": 367, "w": 1080, "h": 605}, {"x": 108, "y": 0, "w": 972, "h": 972}, {"x": 227, "y": 0, "w": 853, "h": 972}, {"x": 540, "y": 0, "w": 486, "h": 972}, {"x": 0, "y": 0, "w": 1080, "h": 972}]}}]}, "favorite_count": 16, "favorited": false, "full_text": "\u3010\u79cb\u8449\u539f\u99282F\u3011\u5c55\u793a\u60c5\u5831\uff1a\u79cb\u8449\u539f\u99284F\u3068\u30aa\u30f3\u30e9\u30a4\u30f3\u306b\u3066\u8ca9\u58f2\u4e2d\u306e #\u30b3\u30c8\u30d6\u30ad\u30e4\u304f\u3058 \u300c\u30c6\u30a4\u30eb\u30ba \u30aa\u30d6 \u30b7\u30f3\u30d5\u30a9\u30cb\u30a2\u300d\u306e\u30b5\u30f3\u30d7\u30eb\u5c55\u793a\u4e2d\u3067\u3059\uff01\n\u3054\u6765\u5e97\u306e\u969b\u306f\u305c\u3072\u3054\u89a7\u304f\u3060\u3055\u3044\uff01\n\u203b2F\u3067\u306f\u8ca9\u58f2\u3057\u3066\u304a\u308a\u307e\u305b\u3093\u3002\n#TOSR #\u30c6\u30a4\u30eb\u30ba #\u30b7\u30f3\u30d5\u30a9\u30cb\u30a220\u5468\u5e74\n\u25bc\u30aa\u30f3\u30e9\u30a4\u30f3\u3067\u306e\u8cfc\u5165\u306f\u3053\u3061\u3089\nhttps://t.co/qZDbqlBlNG https://t.co/6AycpYRP4T", "is_quote_status": false, "lang": "ja", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 12, "retweeted": false, "user_id_str": "1250976770", "id_str": "1623521400819687424"}}}}}}, "tweetDisplayType": "Tweet"}}}, {"entryId": "cursor-top-1623992062695178241", "sortIndex": "1623992062695178241", "content": {"entryType": "TimelineTimelineCursor", "value": "HCaAgIDwp4vKiS0AAA==", "cursorType": "Top"}}, {"entryId": "cursor-bottom-1623547245235929088", "sortIndex": "1623547245235929088", "content": {"entryType": "TimelineTimelineCursor", "value": "HBaCgNDFw+f/hy0AAA==", "cursorType": "Bottom", "stopOnEmptyResponse": true}}]}], "responseObjects": {"feedbackActions": [], "immediateReactions": []}}}}}}} \ No newline at end of file diff --git a/tests/platforms/static/twitter/twitter_user.json b/tests/platforms/static/twitter/twitter_user.json new file mode 100644 index 000000000..938441f5f --- /dev/null +++ b/tests/platforms/static/twitter/twitter_user.json @@ -0,0 +1 @@ +{"data": {"user": {"id": "VXNlcjo4NDY5NjE2Ng==", "rest_id": "84696166", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri Oct 23 21:41:52 +0000 2009", "default_profile": false, "default_profile_image": false, "description": "\u0424\u0430\u0439. \u041f\u0435\u0434\u0430\u0433\u043e\u0433 \u043f\u043e \u0432\u043e\u043a\u0430\u043b\u0443, \u0432\u043e\u043a\u0430\u043b\u0438\u0441\u0442\u043a\u0430.\n\u0424\u0438\u043a\u0438: https://t.co/7CWridYbpP\n\u0412\u0438\u0448\u043b\u0438\u0441\u0442: https://t.co/PnPS1Ch5jc", "entities": {"description": {"urls": [{"display_url": "ficbook.net/authors/4709266", "expanded_url": "http://ficbook.net/authors/4709266", "url": "https://t.co/7CWridYbpP", "indices": [42, 65]}, {"display_url": "mywishboard.com/@mksmooney", "expanded_url": "http://mywishboard.com/@mksmooney", "url": "https://t.co/PnPS1Ch5jc", "indices": [75, 98]}]}, "url": {"urls": [{"display_url": "mksmooney.ru", "expanded_url": "https://mksmooney.ru/", "url": "https://t.co/6adBbngXhL", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 18156, "followers_count": 405, "friends_count": 21, "has_custom_timelines": true, "is_translator": false, "listed_count": 6, "location": "Russia, Moscow", "media_count": 5543, "name": "\u043b\u0438\u043b \u043f\u0441\u0438\u043d\u0430", "normal_followers_count": 405, "pinned_tweet_ids_str": ["1556976675656712193"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 89.75, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 6.49, "rgb": {"blue": 78, "green": 78, "red": 78}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/84696166/1607688052", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 45.22, "rgb": {"blue": 62, "green": 64, "red": 51}}, {"percentage": 44.91, "rgb": {"blue": 30, "green": 52, "red": 97}}, {"percentage": 7.04, "rgb": {"blue": 113, "green": 130, "red": 138}}, {"percentage": 1.86, "rgb": {"blue": 36, "green": 44, "red": 49}}, {"percentage": 0.74, "rgb": {"blue": 84, "green": 106, "red": 133}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1621980464431960066/Qt6KO6KG_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "mksmooney", "statuses_count": 48878, "translator_type": "none", "url": "https://t.co/6adBbngXhL", "verified": false, "withheld_in_countries": []}, "legacy_extended_profile": {"birthdate": {"day": 5, "month": 2, "visibility": "Public", "year_visibility": "Self"}}, "is_profile_translatable": false}}} \ No newline at end of file diff --git a/tests/platforms/test_twitter.py b/tests/platforms/test_twitter.py new file mode 100644 index 000000000..a363e3f0c --- /dev/null +++ b/tests/platforms/test_twitter.py @@ -0,0 +1,312 @@ +from typing import TYPE_CHECKING + +import httpx +import pytest +import respx +from nonebug import App + +if TYPE_CHECKING: + from nonebot_bison.platform.twitter import Twitter, TwitterSchedConf + from nonebot_bison.types import Target, UserSubInfo + + +@pytest.fixture +def target() -> "Target": + """获取 Twitter 用户名""" + from nonebot_bison.types import Target + + return Target("Test") + + +@pytest.fixture +def twitter_scheduler() -> "TwitterSchedConf": + from nonebot_bison.platform.twitter import TwitterSchedConf + + return TwitterSchedConf() + + +@pytest.mark.asyncio +@pytest.fixture +async def twitter( + app: App, twitter_scheduler: "TwitterSchedConf", target: "Target" +) -> "Twitter": + from nonebot_bison.platform import platform_manager + from nonebot_bison.platform.twitter import Twitter + from nonebot_bison.utils import ProcessContext + + _twitter = platform_manager["twitter"]( + ProcessContext(), await twitter_scheduler.get_client(target) + ) + assert isinstance(_twitter, Twitter) + return _twitter + + +@pytest.fixture(autouse=True) +def twitter_session_mock(): + """劫持 Twitter 的 session 获取请求""" + from httpx import Response + + first_router = respx.post("https://api.twitter.com/1.1/guest/activate.json") + first_cookies = { + "guest_id": "v1%3A167600169283947245", + "guest_id_ads": "v1%3A167600169283947245", + "guest_id_marketing": "v1%3A167600169283947245", + "personalization_id": '"v1_VDtHrDcOav78YhBjDc/2tw=="', + } + first_headers = [ + ("Set-Cookie", f"{key}={value}") for key, value in first_cookies.items() + ] + first_response = Response( + 200, text='{"guest_token":"1623894914756120576"}', headers=first_headers + ) + first_router.mock(return_value=first_response) + + second_router = respx.get("https://twitter.com/i/js_inst?c_name=ui_metrics") + second_headers = [ + ( + "Set-Cookie", + "_twitter_sess=BAh7CSIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%250ASGFzaHsABjoKQHVzZWR7ADoPY3JlYXRlZF9hdGwrCJghjDmGAToMY3NyZl9p%250AZCIlMzNkMzEzMWEwNmQ5Y2JkZWVmZDliMmUxMTExOWM3ODE6B2lkIiU1NGZi%250ANTVlYjM0Zjk3MzQ2NzIyMmYwOTNiYjcxYzlmMA%253D%253D--c62d069e898ec4c8a1a3bab26284a31214f45285", + ) + ] + second_response = Response(200, headers=second_headers) + second_router.mock(return_value=second_response) + + +@pytest.fixture(autouse=True) +def twitter_get_user(): + """劫持 Twitter 用户数据的获取""" + from httpx import Response + + from tests.platforms.utils import get_json + + user_by_screen_name_router = respx.get( + "https://twitter.com/i/api/graphql/hc-pka9A7gyS3xODIafnrQ/UserByScreenName" + ) + user_by_screen_name_router.mock( + return_value=Response(200, json=get_json("twitter/twitter_user.json")) + ) + + +@pytest.fixture(autouse=True) +def twitter_get_tweet_list(): + """劫持用户推文列表的获取""" + from httpx import Response + + from tests.platforms.utils import get_json + + mock_json = get_json("twitter/twitter_tweet_list.json") + post_router = respx.get( + "https://twitter.com/i/api/graphql/t4wEKVulW4Mbv1P0kgxTEw/UserTweetsAndReplies" + ) + post_router.mock(return_value=Response(200, json=mock_json)) + + +@pytest.mark.asyncio +@respx.mock +async def test_session_initial(twitter: "Twitter"): + """测试能否获取 Twitter 的访问 session""" + from nonebot_bison.platform.twitter import TwitterSchedConf + + await TwitterSchedConf.refresh_client(twitter.client) + assert twitter.client.headers["x-csrf-token"] is not None + assert twitter.client.headers["x-guest-token"] is not None + assert twitter.client.cookies["_twitter_sess"] is not None + + +@pytest.mark.asyncio +@respx.mock +async def test_get_target_name(twitter: "Twitter", target: "Target"): + """测试能否请求用户数据得到昵称 (screen name)""" + nickname = await twitter.get_target_name(twitter.client, target) + assert nickname == "лил псина" + + +@pytest.mark.asyncio +@respx.mock +async def test_invoke_client_refresh(twitter: "Twitter", target: "Target"): + """测试 403 错误能否触发装饰器,保证 session 重置""" + from httpx import Response + + from tests.platforms.utils import get_json + + user_by_screen_name_router = respx.get( + "https://twitter.com/i/api/graphql/hc-pka9A7gyS3xODIafnrQ/UserByScreenName" + ) + + # 404,直接报错 + user_by_screen_name_router.mock( + side_effect=[ + Response(404), + Response(200, json=get_json("twitter/twitter_user.json")), + ] + ) + with pytest.raises(httpx.HTTPStatusError): + await twitter.get_target_name(twitter.client, target) + + # 403,一次不报错 + user_by_screen_name_router.mock( + side_effect=[ + Response(403), + Response(200, json=get_json("twitter/twitter_user.json")), + ] + ) + await twitter.get_target_name(twitter.client, target) + + # 403,两次以上报错 + user_by_screen_name_router.mock( + side_effect=[ + Response(403), + Response(403), + Response(200, json=get_json("twitter/twitter_user.json")), + ] + ) + with pytest.raises(httpx.HTTPStatusError): + await twitter.get_target_name(twitter.client, target) + + +@pytest.mark.asyncio +@respx.mock +async def test_get_user_id(twitter: "Twitter", target: "Target"): + """测试能够请求用户数据得到用户 ID""" + from nonebot_bison.platform.twitter import TwitterUtils + + user_id = await TwitterUtils.get_user_id(twitter.client, target) + assert user_id == 84696166 + + +@pytest.mark.asyncio +@respx.mock +async def test_fetch_new( + twitter: "Twitter", target: "Target", dummy_user_subinfo: "UserSubInfo" +): + """测试推文列表的差异比对,修改了其中一则条目""" + from datetime import datetime, timedelta, timezone + + from httpx import Response + + from tests.platforms.utils import get_json + + mock_json = get_json("twitter/twitter_tweet_list.json") + post_router = respx.get( + "https://twitter.com/i/api/graphql/t4wEKVulW4Mbv1P0kgxTEw/UserTweetsAndReplies" + ) + post_router.mock(return_value=Response(200, json=mock_json)) + + result = await twitter.fetch_new_post(target, [dummy_user_subinfo]) + assert len(result) == 0 + + # Quote + pointer = mock_json["data"]["user"]["result"]["timeline"]["timeline"][ + "instructions" + ][1]["entries"][3]["content"]["itemContent"]["tweet_results"]["result"]["legacy"] + pointer["created_at"] = datetime.now(timezone(timedelta(0))).strftime( + "%a %b %d %H:%M:%S %z %Y" + ) + pointer["id_str"] = str(int(pointer["id_str"]) + 1) + + # Original + pointer = mock_json["data"]["user"]["result"]["timeline"]["timeline"][ + "instructions" + ][1]["entries"][4]["content"]["itemContent"]["tweet_results"]["result"]["legacy"] + pointer["created_at"] = datetime.now(timezone(timedelta(0))).strftime( + "%a %b %d %H:%M:%S %z %Y" + ) + pointer["id_str"] = str(int(pointer["id_str"]) + 1) + + # Retweet + pointer = mock_json["data"]["user"]["result"]["timeline"]["timeline"][ + "instructions" + ][1]["entries"][5]["content"]["itemContent"]["tweet_results"]["result"]["legacy"] + pointer["created_at"] = datetime.now(timezone(timedelta(0))).strftime( + "%a %b %d %H:%M:%S %z %Y" + ) + pointer["id_str"] = str(int(pointer["id_str"]) + 1) + + post_router.mock(return_value=Response(200, json=mock_json)) + result = await twitter.fetch_new_post(target, [dummy_user_subinfo]) + assert len(result) == 1 + + post = result[0][1] + for p in post: + assert p.target_type == "twitter" + assert p.target_name == "コトブキヤきなこ【公式】" + + p = post[0] + assert ( + p.text + == """【#にじさんじ コトブキヤショップ】『2023年1月デビューライバーWelcome Goods』の発売日が決定!3月4日から販売開始!ランダムチェキ風カードがお1人様20点まで、それ以外の商品は各3点までご購入いただけます #倉持めると #ソフィア・ヴァレンタイン #五十嵐梨花 #鏑木ろこ #獅子堂あかり #小清水透 +RT @にじさんじ公式🌈🕒: +【#にじさんじ 新規デビューライバーWelcome Goods&Voice登場!】 + +#にじストア にて、小清水透、獅子堂あかり、鏑木ろこ、五十嵐梨花、石神のぞみ、ソフィア・ヴァレンタイン、倉持めるとの +「Welcome Goods&Voice」が発売決定! + +1/19(木)22:00から順次発売開始! + +詳細▽ +https://prtimes.jp/main/html/rd/p/000000549.000030865.html""" + ) + assert p.url == "https://twitter.com/i/web/status/1623955176112496643" + assert len(p.pics) == 1 + + p = post[1] + assert ( + p.text + == "【#にじさんじ コトブキヤショップ】『にじさんじバレンタイン2023』の描き下ろしイラストを使った等身大パネルが2/14~3/20の期間中各店で展示されます!フチをカットした特別仕様となっております。この機会に是非ご来店ください!#愛園愛美 #海妹四葉 #笹木咲 #西園チグサ #町田ちま" + ) + assert p.url == "https://twitter.com/i/web/status/1623954931911913474" + assert len(p.pics) == 2 + + p = post[2] + assert ( + p.text + == """RT @コトブキヤくじ: +【販売終了まであと5日!】 +A賞は、「フラノ―ルの雪ウサギ」をモチーフにしたぬいぐるみ! +ここでしか買えない限定品のため、ぜひ期日までのご購入をお忘れなく! + +販売期限:2023/2/12(日)まで + +▼ご購入はこちら +https://kuji.kotobukiya.co.jp/lp/tos20th/?utm_source=twitter&utm_medium=social&utm_campaign=230207 + +#テイルズ #TOSR #コトブキヤくじ""" + ) + assert p.url == "https://twitter.com/i/web/status/1623895955241332737" + assert len(p.pics) == 1 + + +@pytest.mark.asyncio +@respx.mock +async def test_tags(twitter: "Twitter", target: "Target"): + """测试推文获取标签""" + result = (await twitter.get_sub_list(target))[4] + tags = twitter.get_tags(result) + assert tags == {"町田ちま", "西園チグサ", "笹木咲", "にじさんじ", "海妹四葉", "愛園愛美"} + + +@pytest.mark.asyncio +@respx.mock +async def test_category(twitter: "Twitter", target: "Target"): + """测试推文获取分类""" + result = (await twitter.get_sub_list(target))[4] + cat = twitter.get_category(result) + assert cat == 5 + + +@pytest.mark.asyncio +async def test_parse_target(twitter: "Twitter", target: "Target"): + """测试从 URL 中获取用户名""" + from nonebot_bison.platform.platform import Platform + + assert await twitter.parse_target("ozx_x0") == "ozx_x0" + assert await twitter.parse_target("https://twitter.com/ozx_x0") == "ozx_x0" + assert await twitter.parse_target("https://mobile.twitter.com/ozx_x0") == "ozx_x0" + assert ( + await twitter.parse_target( + "https://mobile.twitter.com/ozx_x0/status/1619978348872212480" + ) + == "ozx_x0" + ) + with pytest.raises(Platform.ParseTargetException): + await twitter.parse_target("https://twitter.com/i/status/1485063511273181184") diff --git a/tests/utils.py b/tests/utils.py index 003ed076e..246237fc0 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -1,4 +1,3 @@ -from ast import Str from typing import TYPE_CHECKING from typing_extensions import Literal @@ -132,7 +131,7 @@ def add_reply_subscribe_success(name): return "添加 {} 成功".format(name) @staticmethod - def add_reply_on_id(platform: object) -> Str: + def add_reply_on_id(platform: object) -> str: base_text = "请输入订阅用户的id\n查询id获取方法请回复:“查询”" extra_text = ( ("1." + platform.parse_target_promot + "\n2.")