Python 构建方便的函数调用

来源:互联网 发布:淘宝大码女装裤子店铺 编辑:程序博客网 时间:2024/05/21 09:47

CODE:

#!/usr/bin/python # -*- coding: utf-8 -*-'''Created on 2014-7-14@author: guaguastd@name: convenient_function_call.py'''if __name__ == '__main__':    # import json    import json    # import search    from search import twitter_search            # import twitter_trends    from trend import twitter_trends        # import partial    from functools import partial        # import login, see http://blog.csdn.net/guaguastd/article/details/31706155     from login import twitter_login    # get the twitter access api    twitter_api = twitter_login()        # sample usage 1    pp = partial(json.dumps, indent=1)    twitter_world_trends = partial(twitter_trends, twitter_api, 1)    print pp(twitter_world_trends())        # sample usage 2    authenticated_twitter_search = partial(twitter_search, twitter_api)    results = authenticated_twitter_search("iPhone")    print pp(results)    # sample usage 3    authenticated_iphone_twitter_search = partial(authenticated_twitter_search, "iPhone")    results = authenticated_iphone_twitter_search()    print pp(results)

RESULT:

[ {  "created_at": "2014-07-13T22:27:11Z",   "trends": [   {    "url": "http://twitter.com/search?q=%23TeBancoIgual",     "query": "%23TeBancoIgual",     "name": "#TeBancoIgual",     "promoted_content": null   },    {    "url": "http://twitter.com/search?q=%23ArgentinaCampeonBrasil2014",     "query": "%23ArgentinaCampeonBrasil2014",     "name": "#ArgentinaCampeonBrasil2014",     "promoted_content": null   },    {    "url": "http://twitter.com/search?q=%23HeroesArgentinos",     "query": "%23HeroesArgentinos",     "name": "#HeroesArgentinos",     "promoted_content": null   },    {    "url": "http://twitter.com/search?q=%22Rio+Live%22",     "query": "%22Rio+Live%22",     "name": "Rio Live",     "promoted_content": null   },    {    "url": "http://twitter.com/search?q=%23CeQueJeRetiensDeCeMondial",     "query": "%23CeQueJeRetiensDeCeMondial",     "name": "#CeQueJeRetiensDeCeMondial",     "promoted_content": null   },    {    "url": "http://twitter.com/search?q=%232014D%C3%BCnyaKupas%C4%B1Finali",     "query": "%232014D%C3%BCnyaKupas%C4%B1Finali",     "name": "#2014D\u00fcnyaKupas\u0131Finali",     "promoted_content": null   },    {    "url": "http://twitter.com/search?q=%22Diente+de+Oro%22",     "query": "%22Diente+de+Oro%22",     "name": "Diente de Oro",     "promoted_content": null   },    {    "url": "http://twitter.com/search?q=%22Deutschland+ist+Weltmeister%22",     "query": "%22Deutschland+ist+Weltmeister%22",     "name": "Deutschland ist Weltmeister",     "promoted_content": null   },    {    "url": "http://twitter.com/search?q=%22Pantas+Germany%22",     "query": "%22Pantas+Germany%22",     "name": "Pantas Germany",     "promoted_content": null   },    {    "url": "http://twitter.com/search?q=%22Weltmeister+2014%22",     "query": "%22Weltmeister+2014%22",     "name": "Weltmeister 2014",     "promoted_content": null   }  ],   "as_of": "2014-07-13T22:35:26Z",   "locations": [   {    "woeid": 1,     "name": "Worldwide"   }  ] }]

   "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 5,    "profile_sidebar_border_color": "C0DEED",    "id_str": "2343493766",    "profile_background_color": "C0DEED",    "listed_count": 0,    "is_translation_enabled": false,    "utc_offset": null,    "statuses_count": 381,    "description": "\u307b\u3063\u307b\u3063\u307b\u30fc(OKB)",    "friends_count": 161,    "location": "",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/440994218417205248/VMkeuw2R_normal.jpeg",    "following": false,    "geo_enabled": true,    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "kkyu05kk",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 1,    "name": "\u3042\u3063\u306f\u3063\u306f",    "notifications": false,    "url": null,    "created_at": "Fri Feb 14 12:12:51 +0000 2014",    "contributors_enabled": false,    "time_zone": null,    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "ja",   "created_at": "Sun Jul 13 22:40:13 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "Preferably an iPhone",   "in_reply_to_status_id": null,   "id": 488452866953056257,   "favorite_count": 0,   "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [],    "hashtags": [],    "urls": []  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 0,   "id_str": "488452866953056257",   "favorited": false,   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 1067339558,    "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/764108845/e74d640914575890738f2ebed690f8f8.gif",    "verified": false,    "profile_text_color": "FA0505",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/475815616679776256/nnseaIOe_normal.jpeg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 208,    "profile_sidebar_border_color": "000000",    "id_str": "1067339558",    "profile_background_color": "000000",    "listed_count": 0,    "is_translation_enabled": false,    "utc_offset": -14400,    "statuses_count": 3794,    "description": "Jessica Kelsey  09/12/13  @shegorjess",    "friends_count": 199,    "location": "",    "profile_link_color": "333333",    "profile_image_url": "http://pbs.twimg.com/profile_images/475815616679776256/nnseaIOe_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_banner_url": "https://pbs.twimg.com/profile_banners/1067339558/1401469844",    "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/764108845/e74d640914575890738f2ebed690f8f8.gif",    "screen_name": "Top___Gear",    "lang": "en",    "profile_background_tile": true,    "favourites_count": 1051,    "name": "Noah \u270a",    "notifications": false,    "url": null,    "created_at": "Mon Jan 07 03:28:19 +0000 2013",    "contributors_enabled": false,    "time_zone": "Eastern Time (US & Canada)",    "protected": false,    "default_profile": false,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "lang": "en",   "created_at": "Sun Jul 13 22:40:13 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "en",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "@25Dl3 @mals3eedy @Iphone_81 @Bentalshammari \n\u062a\u0645\u0635\u062e\u0631 \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02",   "in_reply_to_status_id": 488452464719310848,   "id": 488452866827235329,   "favorite_count": 0,   "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [    {     "id": 634758569,      "indices": [      0,       6     ],      "id_str": "634758569",      "screen_name": "25Dl3",      "name": "s..."    },     {     "id": 546851035,      "indices": [      7,       17     ],      "id_str": "546851035",      "screen_name": "mals3eedy",      "name": "\u0648\u0644\u062f \u0627\u0628\u0648 \u062c\u0639\u0628\u0631"    },     {     "id": 747482574,      "indices": [      18,       28     ],      "id_str": "747482574",      "screen_name": "Iphone_81",      "name": "\u0632\u063a\u0644\u0648\u0648\u0644"    },     {     "id": 2584014842,      "indices": [      29,       44     ],      "id_str": "2584014842",      "screen_name": "Bentalshammari",      "name": " \u06a4\u0640. \u0622\u0644\u0652\u0640\u0622\u0633\u0640\u0651\u0644\u0652\u0640\ufee4\u064a\u0629"    }   ],    "hashtags": [],    "urls": []  },   "in_reply_to_screen_name": "25Dl3",   "in_reply_to_user_id": 634758569,   "retweet_count": 0,   "id_str": "488452866827235329",   "favorited": false,   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 951509754,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/482260083074547712/4XPjG2LV_normal.jpeg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 877,    "profile_sidebar_border_color": "C0DEED",    "id_str": "951509754",    "profile_background_color": "C0DEED",    "listed_count": 0,    "is_translation_enabled": false,    "utc_offset": null,    "statuses_count": 21801,    "description": "Kik : dolka_",    "friends_count": 54,    "location": "",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/482260083074547712/4XPjG2LV_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_banner_url": "https://pbs.twimg.com/profile_banners/951509754/1401130049",    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "kaa_kii",    "lang": "en",    "profile_background_tile": false,    "favourites_count": 152,    "name": "\u0643\u0627\u0643\u064a \u0627\u0644\u0645\u0644\u0642\u0648\u0641   \u270c\ufe0f",    "notifications": false,    "url": null,    "created_at": "Fri Nov 16 11:39:46 +0000 2012",    "contributors_enabled": false,    "time_zone": null,    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": "634758569",   "lang": "ar",   "created_at": "Sun Jul 13 22:40:13 +0000 2014",   "in_reply_to_status_id_str": "488452464719310848",   "place": null,   "metadata": {   "iso_language_code": "ar",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "iPhone\u3067\u30e2\u30fc\u30cb\u30f3\u30b0\u30b3\u30fc\u30eb\u300e\u5927\u5cf6\u512a\u5b50\u30e2\u30fc\u30cb\u30f3\u30b0\u30b3\u30fc\u30eb\u300f(\u30d6\u30ed\u30b0) \n\nhttp://t.co/zOx2T9WEQz",   "in_reply_to_status_id": null,   "id": 488452866772697089,   "favorite_count": 0,   "source": "<a href=\"http://twittbot.net/\" rel=\"nofollow\">twittbot.net</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [],    "hashtags": [],    "urls": [    {     "url": "http://t.co/zOx2T9WEQz",      "indices": [      37,       59     ],      "expanded_url": "http://bit.ly/1c1kmB1",      "display_url": "bit.ly/1c1kmB1"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 0,   "id_str": "488452866772697089",   "favorited": false,   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 542898485,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/2022362064/wsxdf_normal.jpg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 2434,    "profile_sidebar_border_color": "C0DEED",    "id_str": "542898485",    "profile_background_color": "C0DEED",    "listed_count": 3,    "is_translation_enabled": false,    "utc_offset": 32400,    "statuses_count": 41414,    "description": "\u30a4\u30ef\u30b7\u6599\u7406\u304c\u5f97\u610f\u3067\u3059\u3002\u901a\u8ca9\u3067\u30d7\u30ea\u30f3\u306f\u304a\u85a6\u3081\u3067\u3059\u3002\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002",    "friends_count": 2701,    "location": "\u5343\u8449\u770c",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/2022362064/wsxdf_normal.jpg",    "following": false,    "geo_enabled": false,    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "iwasixx",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 0,    "name": "\u30a4\u30ef\u30b7\u30de\u30f310",    "notifications": false,    "url": null,    "created_at": "Sun Apr 01 22:25:09 +0000 2012",    "contributors_enabled": false,    "time_zone": "Irkutsk",    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "ja",   "created_at": "Sun Jul 13 22:40:13 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "@palulu_0134 iPhone\u3067\u3059\u304b\uff1f",   "in_reply_to_status_id": 488452676581998594,   "id": 488452866667868160,   "favorite_count": 0,   "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [    {     "id": 2417754901,      "indices": [      0,       12     ],      "id_str": "2417754901",      "screen_name": "palulu_0134",      "name": "\u2740Ryo\u2740@A.L.P.F"    }   ],    "hashtags": [],    "urls": []  },   "in_reply_to_screen_name": "palulu_0134",   "in_reply_to_user_id": 2417754901,   "retweet_count": 0,   "id_str": "488452866667868160",   "favorited": false,   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 1565593680,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/488309646612905985/zcYPapwR_normal.jpeg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 1071,    "profile_sidebar_border_color": "C0DEED",    "id_str": "1565593680",    "profile_background_color": "C0DEED",    "listed_count": 0,    "is_translation_enabled": false,    "utc_offset": null,    "statuses_count": 1572,    "description": "\u5927\u962a\u4f4f\u307f\u306e\u9ad81\u3067\u30fc\u3059\uff01\uff01(\u975e\u30ea\u30a2\u5145w) NMB\u597d\u304d\u3067\u3059\uff01\uff01 \u63a8\u3057\u30e1\u30f3\u306f\u3001\u307f\u308b\u308b\u3093 \u3055\u3084\u306d\u3047 \u307f\u308b\u304d\u30fc \u7d61\u3093\u3067\u306d\u30fc\uff01",    "friends_count": 959,    "location": "\u5927\u962a\u5e02",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/488309646612905985/zcYPapwR_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_banner_url": "https://pbs.twimg.com/profile_banners/1565593680/1405257066",    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "86Namba",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 35,    "name": "hideaki",    "notifications": false,    "url": null,    "created_at": "Wed Jul 03 12:11:14 +0000 2013",    "contributors_enabled": false,    "time_zone": null,    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": "2417754901",   "lang": "ja",   "created_at": "Sun Jul 13 22:40:13 +0000 2014",   "in_reply_to_status_id_str": "488452676581998594",   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "RT @lyhg4uy535: \u3010Chat Party\u3011\n\n\u30c1\u30e3\u30c3\u30c8\u3059\u308b\u306e\u3082\u898b\u308b\u5c02\u9580\u3082\u3069\u3046\u4f7f\u3046\u304b\u306f\u3042\u306a\u305f\u6b21\u7b2c\uff01\n\n\u30b2\u30fc\u30e0\u306e\u96d1\u8ac7\u3084\u9762\u767d\u3044\u753b\u50cf\u306b\u30dc\u30b1\u305f\u308a\u6687\u3064\u3076\u3057\u306e\u6c7a\u5b9a\u7248\u266a\u266a\n\n\u30c1\u30e3\u30c3\u30c8\u306b\u53c2\u52a0\u3057\u3066\u76db\u308a\u4e0a\u304c\u308d\u3046\u2606\n\niPhone\u21d2http://t.co/ydzsayEmHC http:\u2026",   "in_reply_to_status_id": null,   "id": 488452866240028672,   "favorite_count": 0,   "source": "<a href=\"http://lmfao.xsrv.jp/fms1/\" rel=\"nofollow\">FMS-retweet-service1</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [    {     "id": 2395870531,      "indices": [      3,       14     ],      "id_str": "2395870531",      "screen_name": "lyhg4uy535",      "name": "THE\u2661\u3042\u3077\u308a\u2661BEST"    }   ],    "hashtags": [],    "urls": [    {     "url": "http://t.co/ydzsayEmHC",      "indices": [      111,       133     ],      "expanded_url": "http://asty.biz/joy5",      "display_url": "asty.biz/joy5"    }   ],    "media": [    {     "source_status_id_str": "484364812021805059",      "expanded_url": "http://twitter.com/lyhg4uy535/status/484364812021805059/photo/1",      "display_url": "pic.twitter.com/YvYilnNuor",      "url": "http://t.co/YvYilnNuor",      "media_url_https": "https://pbs.twimg.com/media/BrjPOnpCcAAnwBl.jpg",      "source_status_id": 484364812021805059,      "id_str": "484364810008555520",      "sizes": {      "large": {       "h": 434,        "resize": "fit",        "w": 620      },       "small": {       "h": 238,        "resize": "fit",        "w": 340      },       "medium": {       "h": 420,        "resize": "fit",        "w": 600      },       "thumb": {       "h": 150,        "resize": "crop",        "w": 150      }     },      "indices": [      139,       140     ],      "type": "photo",      "id": 484364810008555520,      "media_url": "http://pbs.twimg.com/media/BrjPOnpCcAAnwBl.jpg"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 213,   "id_str": "488452866240028672",   "favorited": false,   "retweeted_status": {   "contributors": null,    "truncated": false,    "text": "\u3010Chat Party\u3011\n\n\u30c1\u30e3\u30c3\u30c8\u3059\u308b\u306e\u3082\u898b\u308b\u5c02\u9580\u3082\u3069\u3046\u4f7f\u3046\u304b\u306f\u3042\u306a\u305f\u6b21\u7b2c\uff01\n\n\u30b2\u30fc\u30e0\u306e\u96d1\u8ac7\u3084\u9762\u767d\u3044\u753b\u50cf\u306b\u30dc\u30b1\u305f\u308a\u6687\u3064\u3076\u3057\u306e\u6c7a\u5b9a\u7248\u266a\u266a\n\n\u30c1\u30e3\u30c3\u30c8\u306b\u53c2\u52a0\u3057\u3066\u76db\u308a\u4e0a\u304c\u308d\u3046\u2606\n\niPhone\u21d2http://t.co/ydzsayEmHC http://t.co/YvYilnNuor",    "in_reply_to_status_id": null,    "id": 484364812021805059,    "favorite_count": 3,    "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",    "retweeted": false,    "coordinates": null,    "entities": {    "symbols": [],     "user_mentions": [],     "hashtags": [],     "urls": [     {      "url": "http://t.co/ydzsayEmHC",       "indices": [       95,        117      ],       "expanded_url": "http://asty.biz/joy5",       "display_url": "asty.biz/joy5"     }    ],     "media": [     {      "expanded_url": "http://twitter.com/lyhg4uy535/status/484364812021805059/photo/1",       "display_url": "pic.twitter.com/YvYilnNuor",       "url": "http://t.co/YvYilnNuor",       "media_url_https": "https://pbs.twimg.com/media/BrjPOnpCcAAnwBl.jpg",       "id_str": "484364810008555520",       "sizes": {       "large": {        "h": 434,         "resize": "fit",         "w": 620       },        "small": {        "h": 238,         "resize": "fit",         "w": 340       },        "medium": {        "h": 420,         "resize": "fit",         "w": 600       },        "thumb": {        "h": 150,         "resize": "crop",         "w": 150       }      },       "indices": [       118,        140      ],       "type": "photo",       "id": 484364810008555520,       "media_url": "http://pbs.twimg.com/media/BrjPOnpCcAAnwBl.jpg"     }    ]   },    "in_reply_to_screen_name": null,    "in_reply_to_user_id": null,    "retweet_count": 213,    "id_str": "484364812021805059",    "favorited": false,    "user": {    "follow_request_sent": false,     "profile_use_background_image": true,     "default_profile_image": false,     "id": 2395870531,     "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",     "verified": false,     "profile_text_color": "333333",     "profile_image_url_https": "https://pbs.twimg.com/profile_images/483629761961263104/4c8oN9lj_normal.jpeg",     "profile_sidebar_fill_color": "DDEEF6",     "entities": {     "description": {      "urls": []     }    },     "followers_count": 36,     "profile_sidebar_border_color": "C0DEED",     "id_str": "2395870531",     "profile_background_color": "C0DEED",     "listed_count": 0,     "is_translation_enabled": false,     "utc_offset": null,     "statuses_count": 716,     "description": "\u4eca\u3001\u6d41\u884c\u306e\u4fbf\u5229\u306a\u3042\u3077\u308a\u3084\u6687\u3064\u3076\u3057\u3042\u3077\u308a\u7b49\u3005\u3054\u7d39\u4ecb\u3057\u3066\u3044\u304d\u307e\u3059\u266a\u7686\u3055\u3093\u306e\u30c4\u30dc\u306b\u306f\u307e\u308b\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u51fa\u6765\u308c\u3070\u3044\u3044\u306a\u3068\u601d\u3044\u307e\u3059\u306e\u3067\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u2606",     "friends_count": 0,     "location": "",     "profile_link_color": "0084B4",     "profile_image_url": "http://pbs.twimg.com/profile_images/483629761961263104/4c8oN9lj_normal.jpeg",     "following": false,     "geo_enabled": false,     "profile_banner_url": "https://pbs.twimg.com/profile_banners/2395870531/1404224764",     "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",     "screen_name": "lyhg4uy535",     "lang": "ja",     "profile_background_tile": false,     "favourites_count": 0,     "name": "THE\u2661\u3042\u3077\u308a\u2661BEST",     "notifications": false,     "url": null,     "created_at": "Tue Mar 18 08:30:52 +0000 2014",     "contributors_enabled": false,     "time_zone": null,     "protected": false,     "default_profile": true,     "is_translator": false   },    "geo": null,    "in_reply_to_user_id_str": null,    "possibly_sensitive": false,    "lang": "ja",    "created_at": "Wed Jul 02 15:55:44 +0000 2014",    "in_reply_to_status_id_str": null,    "place": null,    "metadata": {    "iso_language_code": "ja",     "result_type": "recent"   }  },   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 636662295,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/3229347782/b0f3068fe9032e4d67eaef2507ce7b6b_normal.png",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 3532,    "profile_sidebar_border_color": "C0DEED",    "id_str": "636662295",    "profile_background_color": "C0DEED",    "listed_count": 2,    "is_translation_enabled": false,    "utc_offset": 32400,    "statuses_count": 34285,    "description": "\u30c4\u30a4\u30c3\u30bf\u30fc\u306e\u304a\u3082\u3057\u308d\u3044\u30c4\u30a4\u30fc\u30c8\u3092\u307e\u3068\u3081\u305f\uff42\uff4f\uff54\u3067\u3059\u3002\uff13\uff10\u5206\u306b1\u5ea6\u545f\u304d\u307e\u3059\u3002\u9762\u767d\u304b\u3063\u305f\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u4e0b\u3055\u3044\uff61\u3082\u3057\u6c17\u306b\u3044\u3089\u308c\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3042\u308b\u3044\u306fRT\u3044\u305f\u3060\u304f\u3068\u3046\u308c\u3057\u3044\u3067\u3059\u3002",    "friends_count": 3764,    "location": "",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/3229347782/b0f3068fe9032e4d67eaef2507ce7b6b_normal.png",    "following": false,    "geo_enabled": false,    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "omowazu_warau_7",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 0,    "name": "\u601d\u308f\u305a\u7b11\u3046bot",    "notifications": false,    "url": null,    "created_at": "Mon Jul 16 00:53:20 +0000 2012",    "contributors_enabled": false,    "time_zone": "Irkutsk",    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "ja",   "created_at": "Sun Jul 13 22:40:13 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "RT @app_reporter: \u30e2\u30f3\u30b9\u30bf\u30fc\u30a8\u30c3\u30b0\u30a2\u30a4\u30e9\u30f3\u30c9\n\u80b2\u6210\u30e2\u30f3\u30b9\u30bf\u30fc\u3067\u30d1\u30ba\u30eb\u30d0\u30c8\u30eb\n\niPhone \u21d2 http://t.co/Npv7MPZrcm\n\nAndroid \u21d2 http://t.co/Gt3rxux9ba\n\n\u4ef2\u9593\u3068\u30b7\u30a7\u30a4\u30af\u3057\u3066\u9650\u5b9a\u30e2\u30f3\u30b9\u30bf\u30fcGet\uff01 htt\u2026",   "in_reply_to_status_id": null,   "id": 488452865736732673,   "favorite_count": 0,   "source": "<a href=\"http://twipon-system.net/\" rel=\"nofollow\">Twipon net</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [    {     "id": 2392621626,      "indices": [      3,       16     ],      "id_str": "2392621626",      "screen_name": "app_reporter",      "name": "\u30b9\u30de\u30db\u30a2\u30d7\u30ea\u901f\u5831"    }   ],    "hashtags": [],    "urls": [    {     "url": "http://t.co/Npv7MPZrcm",      "indices": [      57,       79     ],      "expanded_url": "http://bit.ly/1iNceHR",      "display_url": "bit.ly/1iNceHR"    },     {     "url": "http://t.co/Gt3rxux9ba",      "indices": [      91,       113     ],      "expanded_url": "http://bit.ly/1iNchDp",      "display_url": "bit.ly/1iNchDp"    }   ],    "media": [    {     "source_status_id_str": "488450312118620161",      "expanded_url": "http://twitter.com/app_reporter/status/488450312118620161/photo/1",      "display_url": "pic.twitter.com/WqCGghdH8L",      "url": "http://t.co/WqCGghdH8L",      "media_url_https": "https://pbs.twimg.com/media/BsdS-H9CcAACgT6.jpg",      "source_status_id": 488450312118620161,      "id_str": "488450311833415680",      "sizes": {      "large": {       "h": 360,        "resize": "fit",        "w": 640      },       "small": {       "h": 191,        "resize": "fit",        "w": 339      },       "medium": {       "h": 337,        "resize": "fit",        "w": 599      },       "thumb": {       "h": 150,        "resize": "crop",        "w": 150      }     },      "indices": [      139,       140     ],      "type": "photo",      "id": 488450311833415680,      "media_url": "http://pbs.twimg.com/media/BsdS-H9CcAACgT6.jpg"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 19,   "id_str": "488452865736732673",   "favorited": false,   "retweeted_status": {   "contributors": null,    "truncated": false,    "text": "\u30e2\u30f3\u30b9\u30bf\u30fc\u30a8\u30c3\u30b0\u30a2\u30a4\u30e9\u30f3\u30c9\n\u80b2\u6210\u30e2\u30f3\u30b9\u30bf\u30fc\u3067\u30d1\u30ba\u30eb\u30d0\u30c8\u30eb\n\niPhone \u21d2 http://t.co/Npv7MPZrcm\n\nAndroid \u21d2 http://t.co/Gt3rxux9ba\n\n\u4ef2\u9593\u3068\u30b7\u30a7\u30a4\u30af\u3057\u3066\u9650\u5b9a\u30e2\u30f3\u30b9\u30bf\u30fcGet\uff01 http://t.co/WqCGghdH8L",    "in_reply_to_status_id": null,    "id": 488450312118620161,    "favorite_count": 0,    "source": "<a href=\"http://twipon-system.net/\" rel=\"nofollow\">Twipon net</a>",    "retweeted": false,    "coordinates": null,    "entities": {    "symbols": [],     "user_mentions": [],     "hashtags": [],     "urls": [     {      "url": "http://t.co/Npv7MPZrcm",       "indices": [       39,        61      ],       "expanded_url": "http://bit.ly/1iNceHR",       "display_url": "bit.ly/1iNceHR"     },      {      "url": "http://t.co/Gt3rxux9ba",       "indices": [       73,        95      ],       "expanded_url": "http://bit.ly/1iNchDp",       "display_url": "bit.ly/1iNchDp"     }    ],     "media": [     {      "expanded_url": "http://twitter.com/app_reporter/status/488450312118620161/photo/1",       "display_url": "pic.twitter.com/WqCGghdH8L",       "url": "http://t.co/WqCGghdH8L",       "media_url_https": "https://pbs.twimg.com/media/BsdS-H9CcAACgT6.jpg",       "id_str": "488450311833415680",       "sizes": {       "large": {        "h": 360,         "resize": "fit",         "w": 640       },        "small": {        "h": 191,         "resize": "fit",         "w": 339       },        "medium": {        "h": 337,         "resize": "fit",         "w": 599       },        "thumb": {        "h": 150,         "resize": "crop",         "w": 150       }      },       "indices": [       118,        140      ],       "type": "photo",       "id": 488450311833415680,       "media_url": "http://pbs.twimg.com/media/BsdS-H9CcAACgT6.jpg"     }    ]   },    "in_reply_to_screen_name": null,    "in_reply_to_user_id": null,    "retweet_count": 19,    "id_str": "488450312118620161",    "favorited": false,    "user": {    "follow_request_sent": false,     "profile_use_background_image": true,     "default_profile_image": false,     "id": 2392621626,     "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",     "verified": false,     "profile_text_color": "333333",     "profile_image_url_https": "https://pbs.twimg.com/profile_images/445184291056521216/jtIYsA5R_normal.jpeg",     "profile_sidebar_fill_color": "DDEEF6",     "entities": {     "description": {      "urls": []     }    },     "followers_count": 49,     "profile_sidebar_border_color": "C0DEED",     "id_str": "2392621626",     "profile_background_color": "C0DEED",     "listed_count": 0,     "is_translation_enabled": false,     "utc_offset": null,     "statuses_count": 1318,     "description": "\u4eba\u6c17\u306e\u30b9\u30de\u30db\u30a2\u30d7\u30ea\u3092\u30c4\u30a4\u30fc\u30c8\u3057\u307e\u3059\u3002\r\n\u4f7f\u3063\u3066\u307f\u3066\u4e0b\u3055\u3044\u306d\uff01",     "friends_count": 0,     "location": "",     "profile_link_color": "0084B4",     "profile_image_url": "http://pbs.twimg.com/profile_images/445184291056521216/jtIYsA5R_normal.jpeg",     "following": false,     "geo_enabled": false,     "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",     "screen_name": "app_reporter",     "lang": "ja",     "profile_background_tile": false,     "favourites_count": 0,     "name": "\u30b9\u30de\u30db\u30a2\u30d7\u30ea\u901f\u5831",     "notifications": false,     "url": null,     "created_at": "Sun Mar 16 12:18:35 +0000 2014",     "contributors_enabled": false,     "time_zone": null,     "protected": false,     "default_profile": true,     "is_translator": false   },    "geo": null,    "in_reply_to_user_id_str": null,    "possibly_sensitive": false,    "lang": "ja",    "created_at": "Sun Jul 13 22:30:04 +0000 2014",    "in_reply_to_status_id_str": null,    "place": null,    "metadata": {    "iso_language_code": "ja",     "result_type": "recent"   }  },   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 2212441454,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000783986007/6c8de95a151105705435c96051faa58c_normal.png",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 3183,    "profile_sidebar_border_color": "C0DEED",    "id_str": "2212441454",    "profile_background_color": "C0DEED",    "listed_count": 4,    "is_translation_enabled": false,    "utc_offset": null,    "statuses_count": 94163,    "description": "\u30a2\u30cb\u30e1\u306e\u3044\u308d\u3044\u308d\u306a\u60c5\u5831\u3092\u30c4\u30a4\u30fc\u30c8\u3057\u307e\u3059\u3002",    "friends_count": 2918,    "location": "",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/378800000783986007/6c8de95a151105705435c96051faa58c_normal.png",    "following": false,    "geo_enabled": false,    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "sophy_animer",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 0,    "name": "\u30a2\u30cb\u30e1FAN",    "notifications": false,    "url": null,    "created_at": "Sun Nov 24 12:54:53 +0000 2013",    "contributors_enabled": false,    "time_zone": null,    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "ja",   "created_at": "Sun Jul 13 22:40:12 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "RT @beqyluxoges: \u3048\u3001\u3069\u3046\u3057\u3088\u3046\u3002\n\u5b09\u3057\u3059\u304e\u3066\u56fa\u307e\u3063\u3066\u308b(\u00b0_\u00b0) \n\niPhone\u21d2http://t.co/PC3KkSGWNC\n\u203b\u53f3\u4e0aSafari\u3067\u958b\u304f\n\nAndroid\u21d2http://t.co/3J37mfRLYe\n\n\u521d\u3081\u3066\u9001\u3063\u305f\u30cf\u30c3\u30d4\u30fc\u30e1\u30fc\u30eb\u266a http\u2026",   "in_reply_to_status_id": null,   "id": 488452865229201408,   "favorite_count": 0,   "source": "<a href=\"http://bit.ly/IDJHUI\" rel=\"nofollow\">\u8a71\u984c\u306e\u30cb\u30e5\u30fc\u30b9\uff13</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [    {     "id": 2484718088,      "indices": [      3,       15     ],      "id_str": "2484718088",      "screen_name": "beqyluxoges",      "name": "\u304a\u3059\u3059\u3081\u30a2\u30d7\u30ea"    }   ],    "hashtags": [],    "urls": [    {     "url": "http://t.co/PC3KkSGWNC",      "indices": [      51,       73     ],      "expanded_url": "http://tinyurl.com/m5zw2k7",      "display_url": "tinyurl.com/m5zw2k7"    },     {     "url": "http://t.co/3J37mfRLYe",      "indices": [      96,       118     ],      "expanded_url": "http://tinyurl.com/q9tnkzd",      "display_url": "tinyurl.com/q9tnkzd"    }   ],    "media": [    {     "source_status_id_str": "488452844383526913",      "expanded_url": "http://twitter.com/beqyluxoges/status/488452844383526913/photo/1",      "display_url": "pic.twitter.com/cFEuwZjhqp",      "url": "http://t.co/cFEuwZjhqp",      "media_url_https": "https://pbs.twimg.com/media/BsdVRhKCEAAVpFX.png",      "source_status_id": 488452844383526913,      "id_str": "488452844039573504",      "sizes": {      "large": {       "h": 519,        "resize": "fit",        "w": 450      },       "small": {       "h": 392,        "resize": "fit",        "w": 339      },       "medium": {       "h": 519,        "resize": "fit",        "w": 450      },       "thumb": {       "h": 150,        "resize": "crop",        "w": 150      }     },      "indices": [      139,       140     ],      "type": "photo",      "id": 488452844039573504,      "media_url": "http://pbs.twimg.com/media/BsdVRhKCEAAVpFX.png"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 151,   "id_str": "488452865229201408",   "favorited": false,   "retweeted_status": {   "contributors": null,    "truncated": false,    "text": "\u3048\u3001\u3069\u3046\u3057\u3088\u3046\u3002\n\u5b09\u3057\u3059\u304e\u3066\u56fa\u307e\u3063\u3066\u308b(\u00b0_\u00b0) \n\niPhone\u21d2http://t.co/PC3KkSGWNC\n\u203b\u53f3\u4e0aSafari\u3067\u958b\u304f\n\nAndroid\u21d2http://t.co/3J37mfRLYe\n\n\u521d\u3081\u3066\u9001\u3063\u305f\u30cf\u30c3\u30d4\u30fc\u30e1\u30fc\u30eb\u266a http://t.co/cFEuwZjhqp",    "in_reply_to_status_id": null,    "id": 488452844383526913,    "favorite_count": 0,    "source": "<a href=\"http://bit.ly/IDJHUI\" rel=\"nofollow\">\u8a71\u984c\u306e\u30cb\u30e5\u30fc\u30b9785</a>",    "retweeted": false,    "coordinates": null,    "entities": {    "symbols": [],     "user_mentions": [],     "hashtags": [],     "urls": [     {      "url": "http://t.co/PC3KkSGWNC",       "indices": [       34,        56      ],       "expanded_url": "http://tinyurl.com/m5zw2k7",       "display_url": "tinyurl.com/m5zw2k7"     },      {      "url": "http://t.co/3J37mfRLYe",       "indices": [       79,        101      ],       "expanded_url": "http://tinyurl.com/q9tnkzd",       "display_url": "tinyurl.com/q9tnkzd"     }    ],     "media": [     {      "expanded_url": "http://twitter.com/beqyluxoges/status/488452844383526913/photo/1",       "display_url": "pic.twitter.com/cFEuwZjhqp",       "url": "http://t.co/cFEuwZjhqp",       "media_url_https": "https://pbs.twimg.com/media/BsdVRhKCEAAVpFX.png",       "id_str": "488452844039573504",       "sizes": {       "large": {        "h": 519,         "resize": "fit",         "w": 450       },        "small": {        "h": 392,         "resize": "fit",         "w": 339       },        "medium": {        "h": 519,         "resize": "fit",         "w": 450       },        "thumb": {        "h": 150,         "resize": "crop",         "w": 150       }      },       "indices": [       118,        140      ],       "type": "photo",       "id": 488452844039573504,       "media_url": "http://pbs.twimg.com/media/BsdVRhKCEAAVpFX.png"     }    ]   },    "in_reply_to_screen_name": null,    "in_reply_to_user_id": null,    "retweet_count": 151,    "id_str": "488452844383526913",    "favorited": false,    "user": {    "follow_request_sent": false,     "profile_use_background_image": true,     "default_profile_image": false,     "id": 2484718088,     "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",     "verified": false,     "profile_text_color": "333333",     "profile_image_url_https": "https://pbs.twimg.com/profile_images/468627401958645761/PEKdiYWl_normal.png",     "profile_sidebar_fill_color": "DDEEF6",     "entities": {     "description": {      "urls": []     }    },     "followers_count": 89,     "profile_sidebar_border_color": "C0DEED",     "id_str": "2484718088",     "profile_background_color": "C0DEED",     "listed_count": 2,     "is_translation_enabled": false,     "utc_offset": 32400,     "statuses_count": 1,     "description": "",     "friends_count": 5,     "location": "",     "profile_link_color": "0084B4",     "profile_image_url": "http://pbs.twimg.com/profile_images/468627401958645761/PEKdiYWl_normal.png",     "following": false,     "geo_enabled": false,     "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",     "screen_name": "beqyluxoges",     "lang": "ja",     "profile_background_tile": false,     "favourites_count": 0,     "name": "\u304a\u3059\u3059\u3081\u30a2\u30d7\u30ea",     "notifications": false,     "url": null,     "created_at": "Fri May 09 00:16:30 +0000 2014",     "contributors_enabled": false,     "time_zone": "Irkutsk",     "protected": false,     "default_profile": true,     "is_translator": false   },    "geo": null,    "in_reply_to_user_id_str": null,    "possibly_sensitive": false,    "lang": "ja",    "created_at": "Sun Jul 13 22:40:07 +0000 2014",    "in_reply_to_status_id_str": null,    "place": null,    "metadata": {    "iso_language_code": "ja",     "result_type": "recent"   }  },   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 2458784101,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/484327623611277313/A4t5xOmY_normal.jpeg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 69,    "profile_sidebar_border_color": "C0DEED",    "id_str": "2458784101",    "profile_background_color": "C0DEED",    "listed_count": 0,    "is_translation_enabled": false,    "utc_offset": null,    "statuses_count": 160,    "description": "",    "friends_count": 77,    "location": "\u5927\u962a\u5e02\u6771\u4f4f\u5409\u533a",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/484327623611277313/A4t5xOmY_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_banner_url": "https://pbs.twimg.com/profile_banners/2458784101/1404307679",    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "kalassynikof19",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 30,    "name": "\u5409\u7530\u3001\u5e73\u91ce\u9054\u4e5f",    "notifications": false,    "url": null,    "created_at": "Tue Apr 22 22:23:23 +0000 2014",    "contributors_enabled": false,    "time_zone": null,    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "ja",   "created_at": "Sun Jul 13 22:40:12 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "\u3010\u3046\u3061\u306b\u6cca\u307e\u308a\u306b\u304d\u305f\u53cb\u4eba\u304c\u5fc5\u305a\u8a00\u3046\u3053\u3068\u30e9\u30f3\u30ad\u30f3\u30b0\u3011\n\n3\u4f4d: \u4f55\u3067\u3053\u3093\u306a\u306b\u30d9\u30c3\u30c9\u5bdd\u6613\u3044\u306e\uff1f\n\n2\u4f4d: \u30a8\u30ec\u30d9\u30fc\u30bf\u30fc\u7121\u3044\u306e\uff1f\n\n1\u4f4d: iPhone\u306e\u5145\u96fb\u6e80\u30bf\u30f3\u306b\u306a\u308b\u306e\u65e9\u304f\u306d\uff1f",   "in_reply_to_status_id": null,   "id": 488452864360972288,   "favorite_count": 0,   "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [],    "hashtags": [],    "urls": []  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 0,   "id_str": "488452864360972288",   "favorited": false,   "user": {   "follow_request_sent": false,    "profile_use_background_image": false,    "default_profile_image": false,    "id": 1200703704,    "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000138730008/dAhktTOJ.jpeg",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/486297438626398209/kcDxoo_e_normal.jpeg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 141,    "profile_sidebar_border_color": "FFFFFF",    "id_str": "1200703704",    "profile_background_color": "C0DEED",    "listed_count": 2,    "is_translation_enabled": false,    "utc_offset": 32400,    "statuses_count": 6521,    "description": "\u5584\u826f\u306a\u5343\u8449\u770c\u6c11\uff0f\u30a2\u30a4\u30c9\u30eb\u3068\u821e\u53f0\u3068\u91ce\u5cf6\u4f38\u53f8 \u304c\u5927\u597d\u304d\u306a\u65e5\u672c\u306e\u5973\u5b50\u5927\u751f\uff08\u9032\u7d1a\u4e0d\u900f\u660e\u25a8)",    "friends_count": 131,    "location": "",    "profile_link_color": "164CE0",    "profile_image_url": "http://pbs.twimg.com/profile_images/486297438626398209/kcDxoo_e_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_banner_url": "https://pbs.twimg.com/profile_banners/1200703704/1404948736",    "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000138730008/dAhktTOJ.jpeg",    "screen_name": "ophist123",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 3646,    "name": "\u25c8\u3042\u3051\u307f\u25c8",    "notifications": false,    "url": null,    "created_at": "Wed Feb 20 11:56:01 +0000 2013",    "contributors_enabled": false,    "time_zone": "Irkutsk",    "protected": false,    "default_profile": false,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "lang": "ja",   "created_at": "Sun Jul 13 22:40:12 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "RT @YazMontana97: my iPhone changes \"good\" to \"food\" knows me too well\ud83d\ude02",   "in_reply_to_status_id": null,   "id": 488452864251928576,   "favorite_count": 0,   "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [    {     "id": 1220055403,      "indices": [      3,       16     ],      "id_str": "1220055403",      "screen_name": "YazMontana97",      "name": "s l (u) t"    }   ],    "hashtags": [],    "urls": []  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 12,   "id_str": "488452864251928576",   "favorited": false,   "retweeted_status": {   "contributors": null,    "truncated": false,    "text": "my iPhone changes \"good\" to \"food\" knows me too well\ud83d\ude02",    "in_reply_to_status_id": null,    "id": 488452218459521024,    "favorite_count": 14,    "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",    "retweeted": false,    "coordinates": null,    "entities": {    "symbols": [],     "user_mentions": [],     "hashtags": [],     "urls": []   },    "in_reply_to_screen_name": null,    "in_reply_to_user_id": null,    "retweet_count": 12,    "id_str": "488452218459521024",    "favorited": false,    "user": {    "follow_request_sent": false,     "profile_use_background_image": true,     "default_profile_image": false,     "id": 1220055403,     "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",     "verified": false,     "profile_text_color": "333333",     "profile_image_url_https": "https://pbs.twimg.com/profile_images/436174378418847744/J17XqwMb_normal.jpeg",     "profile_sidebar_fill_color": "DDEEF6",     "entities": {     "description": {      "urls": []     }    },     "followers_count": 19186,     "profile_sidebar_border_color": "C0DEED",     "id_str": "1220055403",     "profile_background_color": "C0DEED",     "listed_count": 5,     "is_translation_enabled": false,     "utc_offset": null,     "statuses_count": 6553,     "description": "bat for both teams;) // armykid&proud",     "friends_count": 18664,     "location": "Farnborough\u270c\ufe0f",     "profile_link_color": "0084B4",     "profile_image_url": "http://pbs.twimg.com/profile_images/436174378418847744/J17XqwMb_normal.jpeg",     "following": false,     "geo_enabled": false,     "profile_banner_url": "https://pbs.twimg.com/profile_banners/1220055403/1403788230",     "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",     "screen_name": "YazMontana97",     "lang": "en",     "profile_background_tile": false,     "favourites_count": 1245,     "name": "s l (u) t",     "notifications": false,     "url": null,     "created_at": "Mon Feb 25 23:55:39 +0000 2013",     "contributors_enabled": false,     "time_zone": null,     "protected": false,     "default_profile": true,     "is_translator": false   },    "geo": null,    "in_reply_to_user_id_str": null,    "lang": "en",    "created_at": "Sun Jul 13 22:37:38 +0000 2014",    "in_reply_to_status_id_str": null,    "place": null,    "metadata": {    "iso_language_code": "en",     "result_type": "recent"   }  },   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 175091009,    "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/378800000059701489/39d1bb886dde09f2cad06ef757ca846b.jpeg",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/485964503788425216/TCb0bbOt_normal.jpeg",    "profile_sidebar_fill_color": "EFEFEF",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 611,    "profile_sidebar_border_color": "000000",    "id_str": "175091009",    "profile_background_color": "131516",    "listed_count": 0,    "is_translation_enabled": false,    "utc_offset": -25200,    "statuses_count": 51464,    "description": "I'm all yours.",    "friends_count": 511,    "location": "West Egg",    "profile_link_color": "00FF7F",    "profile_image_url": "http://pbs.twimg.com/profile_images/485964503788425216/TCb0bbOt_normal.jpeg",    "following": false,    "geo_enabled": true,    "profile_banner_url": "https://pbs.twimg.com/profile_banners/175091009/1404712657",    "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/378800000059701489/39d1bb886dde09f2cad06ef757ca846b.jpeg",    "screen_name": "kiddohmonstuhh",    "lang": "en",    "profile_background_tile": true,    "favourites_count": 4332,    "name": "Old Sport (-:",    "notifications": false,    "url": null,    "created_at": "Thu Aug 05 16:25:27 +0000 2010",    "contributors_enabled": false,    "time_zone": "Arizona",    "protected": false,    "default_profile": false,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "lang": "en",   "created_at": "Sun Jul 13 22:40:12 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "en",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "RT @lyhg4uy535: \u3010Chat Party\u3011\n\n\u30c1\u30e3\u30c3\u30c8\u3059\u308b\u306e\u3082\u898b\u308b\u5c02\u9580\u3082\u3069\u3046\u4f7f\u3046\u304b\u306f\u3042\u306a\u305f\u6b21\u7b2c\uff01\n\n\u30b2\u30fc\u30e0\u306e\u96d1\u8ac7\u3084\u9762\u767d\u3044\u753b\u50cf\u306b\u30dc\u30b1\u305f\u308a\u6687\u3064\u3076\u3057\u306e\u6c7a\u5b9a\u7248\u266a\u266a\n\n\u30c1\u30e3\u30c3\u30c8\u306b\u53c2\u52a0\u3057\u3066\u76db\u308a\u4e0a\u304c\u308d\u3046\u2606\n\niPhone\u21d2http://t.co/ydzsayEmHC http:\u2026",   "in_reply_to_status_id": null,   "id": 488452864079970305,   "favorite_count": 0,   "source": "<a href=\"http://lmfao.xsrv.jp/fms1/\" rel=\"nofollow\">FMS-retweet-service1</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [    {     "id": 2395870531,      "indices": [      3,       14     ],      "id_str": "2395870531",      "screen_name": "lyhg4uy535",      "name": "THE\u2661\u3042\u3077\u308a\u2661BEST"    }   ],    "hashtags": [],    "urls": [    {     "url": "http://t.co/ydzsayEmHC",      "indices": [      111,       133     ],      "expanded_url": "http://asty.biz/joy5",      "display_url": "asty.biz/joy5"    }   ],    "media": [    {     "source_status_id_str": "484364812021805059",      "expanded_url": "http://twitter.com/lyhg4uy535/status/484364812021805059/photo/1",      "display_url": "pic.twitter.com/YvYilnNuor",      "url": "http://t.co/YvYilnNuor",      "media_url_https": "https://pbs.twimg.com/media/BrjPOnpCcAAnwBl.jpg",      "source_status_id": 484364812021805059,      "id_str": "484364810008555520",      "sizes": {      "large": {       "h": 434,        "resize": "fit",        "w": 620      },       "small": {       "h": 238,        "resize": "fit",        "w": 340      },       "medium": {       "h": 420,        "resize": "fit",        "w": 600      },       "thumb": {       "h": 150,        "resize": "crop",        "w": 150      }     },      "indices": [      139,       140     ],      "type": "photo",      "id": 484364810008555520,      "media_url": "http://pbs.twimg.com/media/BrjPOnpCcAAnwBl.jpg"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 213,   "id_str": "488452864079970305",   "favorited": false,   "retweeted_status": {   "contributors": null,    "truncated": false,    "text": "\u3010Chat Party\u3011\n\n\u30c1\u30e3\u30c3\u30c8\u3059\u308b\u306e\u3082\u898b\u308b\u5c02\u9580\u3082\u3069\u3046\u4f7f\u3046\u304b\u306f\u3042\u306a\u305f\u6b21\u7b2c\uff01\n\n\u30b2\u30fc\u30e0\u306e\u96d1\u8ac7\u3084\u9762\u767d\u3044\u753b\u50cf\u306b\u30dc\u30b1\u305f\u308a\u6687\u3064\u3076\u3057\u306e\u6c7a\u5b9a\u7248\u266a\u266a\n\n\u30c1\u30e3\u30c3\u30c8\u306b\u53c2\u52a0\u3057\u3066\u76db\u308a\u4e0a\u304c\u308d\u3046\u2606\n\niPhone\u21d2http://t.co/ydzsayEmHC http://t.co/YvYilnNuor",    "in_reply_to_status_id": null,    "id": 484364812021805059,    "favorite_count": 3,    "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",    "retweeted": false,    "coordinates": null,    "entities": {    "symbols": [],     "user_mentions": [],     "hashtags": [],     "urls": [     {      "url": "http://t.co/ydzsayEmHC",       "indices": [       95,        117      ],       "expanded_url": "http://asty.biz/joy5",       "display_url": "asty.biz/joy5"     }    ],     "media": [     {      "expanded_url": "http://twitter.com/lyhg4uy535/status/484364812021805059/photo/1",       "display_url": "pic.twitter.com/YvYilnNuor",       "url": "http://t.co/YvYilnNuor",       "media_url_https": "https://pbs.twimg.com/media/BrjPOnpCcAAnwBl.jpg",       "id_str": "484364810008555520",       "sizes": {       "large": {        "h": 434,         "resize": "fit",         "w": 620       },        "small": {        "h": 238,         "resize": "fit",         "w": 340       },        "medium": {        "h": 420,         "resize": "fit",         "w": 600       },        "thumb": {        "h": 150,         "resize": "crop",         "w": 150       }      },       "indices": [       118,        140      ],       "type": "photo",       "id": 484364810008555520,       "media_url": "http://pbs.twimg.com/media/BrjPOnpCcAAnwBl.jpg"     }    ]   },    "in_reply_to_screen_name": null,    "in_reply_to_user_id": null,    "retweet_count": 213,    "id_str": "484364812021805059",    "favorited": false,    "user": {    "follow_request_sent": false,     "profile_use_background_image": true,     "default_profile_image": false,     "id": 2395870531,     "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",     "verified": false,     "profile_text_color": "333333",     "profile_image_url_https": "https://pbs.twimg.com/profile_images/483629761961263104/4c8oN9lj_normal.jpeg",     "profile_sidebar_fill_color": "DDEEF6",     "entities": {     "description": {      "urls": []     }    },     "followers_count": 36,     "profile_sidebar_border_color": "C0DEED",     "id_str": "2395870531",     "profile_background_color": "C0DEED",     "listed_count": 0,     "is_translation_enabled": false,     "utc_offset": null,     "statuses_count": 716,     "description": "\u4eca\u3001\u6d41\u884c\u306e\u4fbf\u5229\u306a\u3042\u3077\u308a\u3084\u6687\u3064\u3076\u3057\u3042\u3077\u308a\u7b49\u3005\u3054\u7d39\u4ecb\u3057\u3066\u3044\u304d\u307e\u3059\u266a\u7686\u3055\u3093\u306e\u30c4\u30dc\u306b\u306f\u307e\u308b\u30a2\u30d7\u30ea\u3092\u7d39\u4ecb\u51fa\u6765\u308c\u3070\u3044\u3044\u306a\u3068\u601d\u3044\u307e\u3059\u306e\u3067\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u2606",     "friends_count": 0,     "location": "",     "profile_link_color": "0084B4",     "profile_image_url": "http://pbs.twimg.com/profile_images/483629761961263104/4c8oN9lj_normal.jpeg",     "following": false,     "geo_enabled": false,     "profile_banner_url": "https://pbs.twimg.com/profile_banners/2395870531/1404224764",     "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",     "screen_name": "lyhg4uy535",     "lang": "ja",     "profile_background_tile": false,     "favourites_count": 0,     "name": "THE\u2661\u3042\u3077\u308a\u2661BEST",     "notifications": false,     "url": null,     "created_at": "Tue Mar 18 08:30:52 +0000 2014",     "contributors_enabled": false,     "time_zone": null,     "protected": false,     "default_profile": true,     "is_translator": false   },    "geo": null,    "in_reply_to_user_id_str": null,    "possibly_sensitive": false,    "lang": "ja",    "created_at": "Wed Jul 02 15:55:44 +0000 2014",    "in_reply_to_status_id_str": null,    "place": null,    "metadata": {    "iso_language_code": "ja",     "result_type": "recent"   }  },   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 565951392,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/3649860030/43220ef6ef8bc4b7506a02ae56f4c82c_normal.jpeg",    "profile_sidebar_fill_color": "EFEFEF",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 62956,    "profile_sidebar_border_color": "EEEEEE",    "id_str": "565951392",    "profile_background_color": "131516",    "listed_count": 36,    "is_translation_enabled": false,    "utc_offset": null,    "statuses_count": 40603,    "description": "\u9762\u767d\u3064\u3076\u3084\u304dbot\u3002\u30c4\u30a4\u30c3\u30bf\u30fc\u306e\u304a\u3082\u3057\u308d\u3044\u30c4\u30a4\u30fc\u30c8\u3092\u307e\u3068\u3081\u305f\uff42\uff4f\uff54\u3067\u3059\u3002\u3053\u308c\u306f\u9762\u767d\u3044\uff01\u3068\u601d\u3063\u305f\u3064\u3076\u3084\u304d\u306f\u662f\u975eRT\u3057\u3066\u304f\u3060\u3055\u3044\u3002",    "friends_count": 24272,    "location": "",    "profile_link_color": "009999",    "profile_image_url": "http://pbs.twimg.com/profile_images/3649860030/43220ef6ef8bc4b7506a02ae56f4c82c_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif",    "screen_name": "chapoo2012",    "lang": "ja",    "profile_background_tile": true,    "favourites_count": 20,    "name": "\u7b11\u3044\u304c\u3068\u307e\u3089\u306a\u3044BOT",    "notifications": false,    "url": null,    "created_at": "Sun Apr 29 01:06:35 +0000 2012",    "contributors_enabled": false,    "time_zone": null,    "protected": false,    "default_profile": false,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "ja",   "created_at": "Sun Jul 13 22:40:12 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "Australia 71. Dark Horse (feat. Juicy J) - Katy Perry http://t.co/GktP5HjA7y #Music #iTunes #iPhone #Apple",   "in_reply_to_status_id": null,   "id": 488452863614398466,   "favorite_count": 0,   "source": "<a href=\"http://blog.77jp.net\" rel=\"nofollow\">iTunes Store Top 10 Songs</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [],    "hashtags": [    {     "indices": [      77,       83     ],      "text": "Music"    },     {     "indices": [      84,       91     ],      "text": "iTunes"    },     {     "indices": [      92,       99     ],      "text": "iPhone"    },     {     "indices": [      100,       106     ],      "text": "Apple"    }   ],    "urls": [    {     "url": "http://t.co/GktP5HjA7y",      "indices": [      54,       76     ],      "expanded_url": "http://tinyurl.com/latl6fs",      "display_url": "tinyurl.com/latl6fs"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 0,   "id_str": "488452863614398466",   "favorited": false,   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 2453263052,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif",    "verified": false,    "profile_text_color": "634047",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/457530367457513472/d8-2fII5_normal.png",    "profile_sidebar_fill_color": "E3E2DE",    "entities": {    "url": {     "urls": [      {       "url": "http://t.co/UBaFeqTc4O",        "indices": [        0,         22       ],        "expanded_url": "http://j.mp/YolpPN",        "display_url": "j.mp/YolpPN"      }     ]    },     "description": {     "urls": [      {       "url": "http://t.co/BIIZY2zulT",        "indices": [        0,         22       ],        "expanded_url": "http://j.mp/1mMfen3",        "display_url": "j.mp/1mMfen3"      },       {       "url": "http://t.co/UBaFeqTc4O",        "indices": [        135,         157       ],        "expanded_url": "http://j.mp/YolpPN",        "display_url": "j.mp/YolpPN"      }     ]    }   },    "followers_count": 215,    "profile_sidebar_border_color": "D3D2CF",    "id_str": "2453263052",    "profile_background_color": "EDECE9",    "listed_count": 5,    "is_translation_enabled": false,    "utc_offset": null,    "statuses_count": 53100,    "description": "http://t.co/BIIZY2zulT iTunes Top 10 Songs. United States, China, Korea, United Kingdom, France, Australia, Germany, Japan, and others http://t.co/UBaFeqTc4O",    "friends_count": 17,    "location": "",    "profile_link_color": "088253",    "profile_image_url": "http://pbs.twimg.com/profile_images/457530367457513472/d8-2fII5_normal.png",    "following": false,    "geo_enabled": false,    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif",    "screen_name": "mitrank",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 0,    "name": "iTunes Top 10 Songs",    "notifications": false,    "url": "http://t.co/UBaFeqTc4O",    "created_at": "Sat Apr 19 14:35:36 +0000 2014",    "contributors_enabled": false,    "time_zone": null,    "protected": false,    "default_profile": false,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "en",   "created_at": "Sun Jul 13 22:40:12 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "en",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "RT @app_reporter: \u30e2\u30f3\u30b9\u30bf\u30fc\u30a8\u30c3\u30b0\u30a2\u30a4\u30e9\u30f3\u30c9\n\u80b2\u6210\u30e2\u30f3\u30b9\u30bf\u30fc\u3067\u30d1\u30ba\u30eb\u30d0\u30c8\u30eb\n\niPhone \u21d2 http://t.co/Npv7MPZrcm\n\nAndroid \u21d2 http://t.co/Gt3rxux9ba\n\n\u4ef2\u9593\u3068\u30b7\u30a7\u30a4\u30af\u3057\u3066\u9650\u5b9a\u30e2\u30f3\u30b9\u30bf\u30fcGet\uff01 htt\u2026",   "in_reply_to_status_id": null,   "id": 488452863513722880,   "favorite_count": 0,   "source": "<a href=\"http://twipon-system.net/\" rel=\"nofollow\">Twipon net</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [    {     "id": 2392621626,      "indices": [      3,       16     ],      "id_str": "2392621626",      "screen_name": "app_reporter",      "name": "\u30b9\u30de\u30db\u30a2\u30d7\u30ea\u901f\u5831"    }   ],    "hashtags": [],    "urls": [    {     "url": "http://t.co/Npv7MPZrcm",      "indices": [      57,       79     ],      "expanded_url": "http://bit.ly/1iNceHR",      "display_url": "bit.ly/1iNceHR"    },     {     "url": "http://t.co/Gt3rxux9ba",      "indices": [      91,       113     ],      "expanded_url": "http://bit.ly/1iNchDp",      "display_url": "bit.ly/1iNchDp"    }   ],    "media": [    {     "source_status_id_str": "488450312118620161",      "expanded_url": "http://twitter.com/app_reporter/status/488450312118620161/photo/1",      "display_url": "pic.twitter.com/WqCGghdH8L",      "url": "http://t.co/WqCGghdH8L",      "media_url_https": "https://pbs.twimg.com/media/BsdS-H9CcAACgT6.jpg",      "source_status_id": 488450312118620161,      "id_str": "488450311833415680",      "sizes": {      "large": {       "h": 360,        "resize": "fit",        "w": 640      },       "small": {       "h": 191,        "resize": "fit",        "w": 339      },       "medium": {       "h": 337,        "resize": "fit",        "w": 599      },       "thumb": {       "h": 150,        "resize": "crop",        "w": 150      }     },      "indices": [      139,       140     ],      "type": "photo",      "id": 488450311833415680,      "media_url": "http://pbs.twimg.com/media/BsdS-H9CcAACgT6.jpg"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 19,   "id_str": "488452863513722880",   "favorited": false,   "retweeted_status": {   "contributors": null,    "truncated": false,    "text": "\u30e2\u30f3\u30b9\u30bf\u30fc\u30a8\u30c3\u30b0\u30a2\u30a4\u30e9\u30f3\u30c9\n\u80b2\u6210\u30e2\u30f3\u30b9\u30bf\u30fc\u3067\u30d1\u30ba\u30eb\u30d0\u30c8\u30eb\n\niPhone \u21d2 http://t.co/Npv7MPZrcm\n\nAndroid \u21d2 http://t.co/Gt3rxux9ba\n\n\u4ef2\u9593\u3068\u30b7\u30a7\u30a4\u30af\u3057\u3066\u9650\u5b9a\u30e2\u30f3\u30b9\u30bf\u30fcGet\uff01 http://t.co/WqCGghdH8L",    "in_reply_to_status_id": null,    "id": 488450312118620161,    "favorite_count": 0,    "source": "<a href=\"http://twipon-system.net/\" rel=\"nofollow\">Twipon net</a>",    "retweeted": false,    "coordinates": null,    "entities": {    "symbols": [],     "user_mentions": [],     "hashtags": [],     "urls": [     {      "url": "http://t.co/Npv7MPZrcm",       "indices": [       39,        61      ],       "expanded_url": "http://bit.ly/1iNceHR",       "display_url": "bit.ly/1iNceHR"     },      {      "url": "http://t.co/Gt3rxux9ba",       "indices": [       73,        95      ],       "expanded_url": "http://bit.ly/1iNchDp",       "display_url": "bit.ly/1iNchDp"     }    ],     "media": [     {      "expanded_url": "http://twitter.com/app_reporter/status/488450312118620161/photo/1",       "display_url": "pic.twitter.com/WqCGghdH8L",       "url": "http://t.co/WqCGghdH8L",       "media_url_https": "https://pbs.twimg.com/media/BsdS-H9CcAACgT6.jpg",       "id_str": "488450311833415680",       "sizes": {       "large": {        "h": 360,         "resize": "fit",         "w": 640       },        "small": {        "h": 191,         "resize": "fit",         "w": 339       },        "medium": {        "h": 337,         "resize": "fit",         "w": 599       },        "thumb": {        "h": 150,         "resize": "crop",         "w": 150       }      },       "indices": [       118,        140      ],       "type": "photo",       "id": 488450311833415680,       "media_url": "http://pbs.twimg.com/media/BsdS-H9CcAACgT6.jpg"     }    ]   },    "in_reply_to_screen_name": null,    "in_reply_to_user_id": null,    "retweet_count": 19,    "id_str": "488450312118620161",    "favorited": false,    "user": {    "follow_request_sent": false,     "profile_use_background_image": true,     "default_profile_image": false,     "id": 2392621626,     "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",     "verified": false,     "profile_text_color": "333333",     "profile_image_url_https": "https://pbs.twimg.com/profile_images/445184291056521216/jtIYsA5R_normal.jpeg",     "profile_sidebar_fill_color": "DDEEF6",     "entities": {     "description": {      "urls": []     }    },     "followers_count": 49,     "profile_sidebar_border_color": "C0DEED",     "id_str": "2392621626",     "profile_background_color": "C0DEED",     "listed_count": 0,     "is_translation_enabled": false,     "utc_offset": null,     "statuses_count": 1318,     "description": "\u4eba\u6c17\u306e\u30b9\u30de\u30db\u30a2\u30d7\u30ea\u3092\u30c4\u30a4\u30fc\u30c8\u3057\u307e\u3059\u3002\r\n\u4f7f\u3063\u3066\u307f\u3066\u4e0b\u3055\u3044\u306d\uff01",     "friends_count": 0,     "location": "",     "profile_link_color": "0084B4",     "profile_image_url": "http://pbs.twimg.com/profile_images/445184291056521216/jtIYsA5R_normal.jpeg",     "following": false,     "geo_enabled": false,     "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",     "screen_name": "app_reporter",     "lang": "ja",     "profile_background_tile": false,     "favourites_count": 0,     "name": "\u30b9\u30de\u30db\u30a2\u30d7\u30ea\u901f\u5831",     "notifications": false,     "url": null,     "created_at": "Sun Mar 16 12:18:35 +0000 2014",     "contributors_enabled": false,     "time_zone": null,     "protected": false,     "default_profile": true,     "is_translator": false   },    "geo": null,    "in_reply_to_user_id_str": null,    "possibly_sensitive": false,    "lang": "ja",    "created_at": "Sun Jul 13 22:30:04 +0000 2014",    "in_reply_to_status_id_str": null,    "place": null,    "metadata": {    "iso_language_code": "ja",     "result_type": "recent"   }  },   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 2487854748,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/465108487479914496/FtoZ7vUO_normal.jpeg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 1985,    "profile_sidebar_border_color": "C0DEED",    "id_str": "2487854748",    "profile_background_color": "C0DEED",    "listed_count": 2,    "is_translation_enabled": false,    "utc_offset": null,    "statuses_count": 401,    "description": "\u767d\u8863\u306e\u5929\u4f7f\u3001\u770b\u8b77\u5e2b\u3055\u3093\u3092\u5fdc\u63f4\u3067\u304d\u308b\u60c5\u5831\u3092\u30c4\u30a4\u30fc\u30c8\u3057\u307e\u3059\u3002\u304a\u5f79\u306b\u305f\u3066\u308b\u3088\u3046\u9811\u5f35\u308a\u307e\u3059\uff01",    "friends_count": 2035,    "location": "",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/465108487479914496/FtoZ7vUO_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "nurse_worker",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 0,    "name": "\u770b\u8b77\u5e2b\u306e\u304a\u4ed5\u4e8b",    "notifications": false,    "url": null,    "created_at": "Sat May 10 12:33:40 +0000 2014",    "contributors_enabled": false,    "time_zone": null,    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "ja",   "created_at": "Sun Jul 13 22:40:12 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0435 \u0421\u041c\u0418 \u043d\u0430\u0437\u0432\u0430\u043b\u0438 iPhone \u0443\u0433\u0440\u043e\u0437\u043e\u0439 \u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438",   "in_reply_to_status_id": null,   "id": 488452863191166977,   "favorite_count": 0,   "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [],    "hashtags": [],    "urls": []  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 0,   "id_str": "488452863191166977",   "favorited": false,   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 2606418608,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/488451965563576320/F3kDTfEG_normal.jpeg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 4,    "profile_sidebar_border_color": "C0DEED",    "id_str": "2606418608",    "profile_background_color": "C0DEED",    "listed_count": 0,    "is_translation_enabled": false,    "utc_offset": null,    "statuses_count": 12,    "description": "\u042f \u043d\u0435 \u0433\u0438\u043a. \u042f \u0442\u0432\u0438\u043a!",    "friends_count": 13,    "location": "\u0410\u0440\u0445\u0430\u043d\u0433\u0435\u043b\u044c\u0441\u043a",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/488451965563576320/F3kDTfEG_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_banner_url": "https://pbs.twimg.com/profile_banners/2606418608/1405291029",    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "cylcdeglycdescb",    "lang": "en",    "profile_background_tile": false,    "favourites_count": 0,    "name": "\u0410\u043d\u0434\u0440\u0435\u0439 \u041c\u0438\u0445\u0430\u0439\u043b\u043e\u0432\u0438\u0447",    "notifications": false,    "url": null,    "created_at": "Sun Jul 06 00:33:47 +0000 2014",    "contributors_enabled": false,    "time_zone": null,    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "lang": "ru",   "created_at": "Sun Jul 13 22:40:12 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ru",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "RT @TrueStoryPL: Nigdy nie zrozumiem, dlaczego ludzie z iPhone'm czuj\u0105 potrzeb\u0119 robienia zdj\u0119\u0107 w lustrze.\n\nKamera z przodu jest tam z jakie\u2026",   "in_reply_to_status_id": null,   "id": 488452862926946306,   "favorite_count": 0,   "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [    {     "id": 2407556030,      "indices": [      3,       15     ],      "id_str": "2407556030",      "screen_name": "TrueStoryPL",      "name": "LMAO \u2740"    }   ],    "hashtags": [],    "urls": []  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 336,   "id_str": "488452862926946306",   "favorited": false,   "retweeted_status": {   "contributors": null,    "truncated": false,    "text": "Nigdy nie zrozumiem, dlaczego ludzie z iPhone'm czuj\u0105 potrzeb\u0119 robienia zdj\u0119\u0107 w lustrze.\n\nKamera z przodu jest tam z jakiego\u015b powodu.",    "in_reply_to_status_id": null,    "id": 488005086862671872,    "favorite_count": 126,    "source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",    "retweeted": false,    "coordinates": null,    "entities": {    "symbols": [],     "user_mentions": [],     "hashtags": [],     "urls": []   },    "in_reply_to_screen_name": null,    "in_reply_to_user_id": null,    "retweet_count": 336,    "id_str": "488005086862671872",    "favorited": false,    "user": {    "follow_request_sent": false,     "profile_use_background_image": true,     "default_profile_image": false,     "id": 2407556030,     "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif",     "verified": false,     "profile_text_color": "3C3940",     "profile_image_url_https": "https://pbs.twimg.com/profile_images/461493481517502465/y2krLYc4_normal.png",     "profile_sidebar_fill_color": "95E8EC",     "entities": {     "url": {      "urls": [       {        "url": "http://t.co/BcENTAmBSC",         "indices": [         0,          22        ],         "expanded_url": "http://ask.fm/TrueStoryPL",         "display_url": "ask.fm/TrueStoryPL"       }      ]     },      "description": {      "urls": []     }    },     "followers_count": 8941,     "profile_sidebar_border_color": "FFFFFF",     "id_str": "2407556030",     "profile_background_color": "0099B9",     "listed_count": 17,     "is_translation_enabled": false,     "utc_offset": 7200,     "statuses_count": 2272,     "description": "Tweety wymy\u015blam sama, lub ewentualnie czerpi\u0119 z r\u00f3\u017cnych \u017ar\u00f3de\u0142. Zapraszam do zagl\u0105dania do okienka Ulubione! :) SARKAZM \u270c",     "friends_count": 2718,     "location": "Konto za\u0142o\u017cone 23.03.2014",     "profile_link_color": "45E0FF",     "profile_image_url": "http://pbs.twimg.com/profile_images/461493481517502465/y2krLYc4_normal.png",     "following": false,     "geo_enabled": false,     "profile_banner_url": "https://pbs.twimg.com/profile_banners/2407556030/1401547353",     "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif",     "screen_name": "TrueStoryPL",     "lang": "pl",     "profile_background_tile": false,     "favourites_count": 1231,     "name": "LMAO \u2740",     "notifications": false,     "url": "http://t.co/BcENTAmBSC",     "created_at": "Sun Mar 23 18:40:20 +0000 2014",     "contributors_enabled": false,     "time_zone": "Warsaw",     "protected": false,     "default_profile": false,     "is_translator": false   },    "geo": null,    "in_reply_to_user_id_str": null,    "lang": "pl",    "created_at": "Sat Jul 12 17:00:54 +0000 2014",    "in_reply_to_status_id_str": null,    "place": null,    "metadata": {    "iso_language_code": "pl",     "result_type": "recent"   }  },   "user": {   "follow_request_sent": false,    "profile_use_background_image": false,    "default_profile_image": false,    "id": 784845906,    "profile_background_image_url_https": "https://pbs.twimg.com/profile_background_images/487219832106938368/uj83ms5v.jpeg",    "verified": false,    "profile_text_color": "D00018",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/487899039388532736/VDQXWQIo_normal.png",    "profile_sidebar_fill_color": "FDF1E1",    "entities": {    "url": {     "urls": [      {       "url": "http://t.co/a6E0Lfveu3",        "indices": [        0,         22       ],        "expanded_url": "http://bbabykissme.tumblr.com/",        "display_url": "bbabykissme.tumblr.com"      }     ]    },     "description": {     "urls": []    }   },    "followers_count": 1123,    "profile_sidebar_border_color": "FFFFFF",    "id_str": "784845906",    "profile_background_color": "F5F5F5",    "listed_count": 2,    "is_translation_enabled": false,    "utc_offset": 10800,    "statuses_count": 15606,    "description": "26.06.13 & 23.03.14 - ROOM94 \r\n12.06.14 - BLACK RADIO\r\nKieran Lemon & Room94 followed",    "friends_count": 1948,    "location": "Poland",    "profile_link_color": "E8B1C3",    "profile_image_url": "http://pbs.twimg.com/profile_images/487899039388532736/VDQXWQIo_normal.png",    "following": false,    "geo_enabled": true,    "profile_banner_url": "https://pbs.twimg.com/profile_banners/784845906/1405159210",    "profile_background_image_url": "http://pbs.twimg.com/profile_background_images/487219832106938368/uj83ms5v.jpeg",    "screen_name": "TheCrystal16",    "lang": "pl",    "profile_background_tile": true,    "favourites_count": 825,    "name": "Styles ",    "notifications": false,    "url": "http://t.co/a6E0Lfveu3",    "created_at": "Mon Aug 27 15:04:31 +0000 2012",    "contributors_enabled": false,    "time_zone": "Athens",    "protected": false,    "default_profile": false,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "lang": "pl",   "created_at": "Sun Jul 13 22:40:12 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "pl",    "result_type": "recent"  } }]

    "url": null,     "created_at": "Thu May 01 11:57:00 +0000 2014",     "contributors_enabled": false,     "time_zone": null,     "protected": false,     "default_profile": true,     "is_translator": false   },    "geo": null,    "in_reply_to_user_id_str": null,    "possibly_sensitive": false,    "lang": "ja",    "created_at": "Sun Jul 13 16:07:44 +0000 2014",    "in_reply_to_status_id_str": null,    "place": null,    "metadata": {    "iso_language_code": "ja",     "result_type": "recent"   }  },   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 913981824,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/344513261570994986/69ef1d334e04067d0dc1234e5fdec301_normal.jpeg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 295,    "profile_sidebar_border_color": "C0DEED",    "id_str": "913981824",    "profile_background_color": "C0DEED",    "listed_count": 1,    "is_translation_enabled": false,    "utc_offset": null,    "statuses_count": 5932,    "description": "\u7dd1\u5ca1\u4e2d#4\u2192\u6c34\u6238\u4e00\u9ad8\u5143\u91ce\u7403\u90e8 \uff13\u5e74 #8",    "friends_count": 283,    "location": "\u307f\u3068\u3057",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/344513261570994986/69ef1d334e04067d0dc1234e5fdec301_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_banner_url": "https://pbs.twimg.com/profile_banners/913981824/1400766610",    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "t_melonman123",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 123,    "name": "\u6d77\u91ce\u667a\u6d0b",    "notifications": false,    "url": null,    "created_at": "Tue Oct 30 05:58:40 +0000 2012",    "contributors_enabled": false,    "time_zone": null,    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "ja",   "created_at": "Sun Jul 13 22:44:12 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "RT @beqyluxoges: \u3048\u3001\u3069\u3046\u3057\u3088\u3046\u3002\n\u5b09\u3057\u3059\u304e\u3066\u56fa\u307e\u3063\u3066\u308b(\u00b0_\u00b0) \n\niPhone\u21d2http://t.co/PC3KkSGWNC\n\u203b\u53f3\u4e0aSafari\u3067\u958b\u304f\n\nAndroid\u21d2http://t.co/3J37mfRLYe\n\n\u521d\u3081\u3066\u9001\u3063\u305f\u30cf\u30c3\u30d4\u30fc\u30e1\u30fc\u30eb\u266a http\u2026",   "in_reply_to_status_id": null,   "id": 488453868829696000,   "favorite_count": 0,   "source": "<a href=\"http://bit.ly/IDJHUI\" rel=\"nofollow\">\u8a71\u984c\u306e\u30cb\u30e5\u30fc\u30b9\uff13</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [    {     "id": 2484718088,      "indices": [      3,       15     ],      "id_str": "2484718088",      "screen_name": "beqyluxoges",      "name": "\u304a\u3059\u3059\u3081\u30a2\u30d7\u30ea"    }   ],    "hashtags": [],    "urls": [    {     "url": "http://t.co/PC3KkSGWNC",      "indices": [      51,       73     ],      "expanded_url": "http://tinyurl.com/m5zw2k7",      "display_url": "tinyurl.com/m5zw2k7"    },     {     "url": "http://t.co/3J37mfRLYe",      "indices": [      96,       118     ],      "expanded_url": "http://tinyurl.com/q9tnkzd",      "display_url": "tinyurl.com/q9tnkzd"    }   ],    "media": [    {     "source_status_id_str": "488452844383526913",      "expanded_url": "http://twitter.com/beqyluxoges/status/488452844383526913/photo/1",      "display_url": "pic.twitter.com/cFEuwZjhqp",      "url": "http://t.co/cFEuwZjhqp",      "media_url_https": "https://pbs.twimg.com/media/BsdVRhKCEAAVpFX.png",      "source_status_id": 488452844383526913,      "id_str": "488452844039573504",      "sizes": {      "large": {       "h": 519,        "resize": "fit",        "w": 450      },       "small": {       "h": 392,        "resize": "fit",        "w": 339      },       "medium": {       "h": 519,        "resize": "fit",        "w": 450      },       "thumb": {       "h": 150,        "resize": "crop",        "w": 150      }     },      "indices": [      139,       140     ],      "type": "photo",      "id": 488452844039573504,      "media_url": "http://pbs.twimg.com/media/BsdVRhKCEAAVpFX.png"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 468,   "id_str": "488453868829696000",   "favorited": false,   "retweeted_status": {   "contributors": null,    "truncated": false,    "text": "\u3048\u3001\u3069\u3046\u3057\u3088\u3046\u3002\n\u5b09\u3057\u3059\u304e\u3066\u56fa\u307e\u3063\u3066\u308b(\u00b0_\u00b0) \n\niPhone\u21d2http://t.co/PC3KkSGWNC\n\u203b\u53f3\u4e0aSafari\u3067\u958b\u304f\n\nAndroid\u21d2http://t.co/3J37mfRLYe\n\n\u521d\u3081\u3066\u9001\u3063\u305f\u30cf\u30c3\u30d4\u30fc\u30e1\u30fc\u30eb\u266a http://t.co/cFEuwZjhqp",    "in_reply_to_status_id": null,    "id": 488452844383526913,    "favorite_count": 3,    "source": "<a href=\"http://bit.ly/IDJHUI\" rel=\"nofollow\">\u8a71\u984c\u306e\u30cb\u30e5\u30fc\u30b9785</a>",    "retweeted": false,    "coordinates": null,    "entities": {    "symbols": [],     "user_mentions": [],     "hashtags": [],     "urls": [     {      "url": "http://t.co/PC3KkSGWNC",       "indices": [       34,        56      ],       "expanded_url": "http://tinyurl.com/m5zw2k7",       "display_url": "tinyurl.com/m5zw2k7"     },      {      "url": "http://t.co/3J37mfRLYe",       "indices": [       79,        101      ],       "expanded_url": "http://tinyurl.com/q9tnkzd",       "display_url": "tinyurl.com/q9tnkzd"     }    ],     "media": [     {      "expanded_url": "http://twitter.com/beqyluxoges/status/488452844383526913/photo/1",       "display_url": "pic.twitter.com/cFEuwZjhqp",       "url": "http://t.co/cFEuwZjhqp",       "media_url_https": "https://pbs.twimg.com/media/BsdVRhKCEAAVpFX.png",       "id_str": "488452844039573504",       "sizes": {       "large": {        "h": 519,         "resize": "fit",         "w": 450       },        "small": {        "h": 392,         "resize": "fit",         "w": 339       },        "medium": {        "h": 519,         "resize": "fit",         "w": 450       },        "thumb": {        "h": 150,         "resize": "crop",         "w": 150       }      },       "indices": [       118,        140      ],       "type": "photo",       "id": 488452844039573504,       "media_url": "http://pbs.twimg.com/media/BsdVRhKCEAAVpFX.png"     }    ]   },    "in_reply_to_screen_name": null,    "in_reply_to_user_id": null,    "retweet_count": 468,    "id_str": "488452844383526913",    "favorited": false,    "user": {    "follow_request_sent": false,     "profile_use_background_image": true,     "default_profile_image": false,     "id": 2484718088,     "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",     "verified": false,     "profile_text_color": "333333",     "profile_image_url_https": "https://pbs.twimg.com/profile_images/468627401958645761/PEKdiYWl_normal.png",     "profile_sidebar_fill_color": "DDEEF6",     "entities": {     "description": {      "urls": []     }    },     "followers_count": 89,     "profile_sidebar_border_color": "C0DEED",     "id_str": "2484718088",     "profile_background_color": "C0DEED",     "listed_count": 2,     "is_translation_enabled": false,     "utc_offset": 32400,     "statuses_count": 1,     "description": "",     "friends_count": 5,     "location": "",     "profile_link_color": "0084B4",     "profile_image_url": "http://pbs.twimg.com/profile_images/468627401958645761/PEKdiYWl_normal.png",     "following": false,     "geo_enabled": false,     "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",     "screen_name": "beqyluxoges",     "lang": "ja",     "profile_background_tile": false,     "favourites_count": 0,     "name": "\u304a\u3059\u3059\u3081\u30a2\u30d7\u30ea",     "notifications": false,     "url": null,     "created_at": "Fri May 09 00:16:30 +0000 2014",     "contributors_enabled": false,     "time_zone": "Irkutsk",     "protected": false,     "default_profile": true,     "is_translator": false   },    "geo": null,    "in_reply_to_user_id_str": null,    "possibly_sensitive": false,    "lang": "ja",    "created_at": "Sun Jul 13 22:40:07 +0000 2014",    "in_reply_to_status_id_str": null,    "place": null,    "metadata": {    "iso_language_code": "ja",     "result_type": "recent"   }  },   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 575427868,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/481981558635499520/eZSKaUXH_normal.jpeg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 239,    "profile_sidebar_border_color": "C0DEED",    "id_str": "575427868",    "profile_background_color": "C0DEED",    "listed_count": 0,    "is_translation_enabled": false,    "utc_offset": 32400,    "statuses_count": 4329,    "description": "19\u6b73\u2606\u304b\u305a\u30d1\u30d1love\n\u4e88\u5b9a\u65e507/26",    "friends_count": 212,    "location": "",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/481981558635499520/eZSKaUXH_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_banner_url": "https://pbs.twimg.com/profile_banners/575427868/1398593050",    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "naashan07",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 128,    "name": "\u306a\u30fc\u3057\u3083\u3093",    "notifications": false,    "url": null,    "created_at": "Wed May 09 15:02:10 +0000 2012",    "contributors_enabled": false,    "time_zone": "Tokyo",    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "ja",   "created_at": "Sun Jul 13 22:44:12 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "\u30c0\u30cb\u30fc\u30fb\u30dc\u30fc\u30a4 / \u30d3\u30eb\u30fb\u30a8\u30f4\u30a1\u30f3\u30b9\nhttp://t.co/0c33iJeuNh\n \n#iTunes #iPhone #",   "in_reply_to_status_id": null,   "id": 488453868506714113,   "favorite_count": 0,   "source": "<a href=\"http://itmsbook.mega-bit.net/\" rel=\"nofollow\">itmsbook</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [],    "hashtags": [    {     "indices": [      44,       51     ],      "text": "iTunes"    },     {     "indices": [      52,       59     ],      "text": "iPhone"    }   ],    "urls": [    {     "url": "http://t.co/0c33iJeuNh",      "indices": [      19,       41     ],      "expanded_url": "http://wp.me/p3lluZ-dyFMH",      "display_url": "wp.me/p3lluZ-dyFMH"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 0,   "id_str": "488453868506714113",   "favorited": false,   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 2378919690,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/442327473686978561/4FWNOE-v_normal.jpeg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "url": {     "urls": [      {       "url": "http://t.co/cTty2XM4Ov",        "indices": [        0,         22       ],        "expanded_url": "http://itmsjp.mega-bit.net",        "display_url": "itmsjp.mega-bit.net"      }     ]    },     "description": {     "urls": []    }   },    "followers_count": 6515,    "profile_sidebar_border_color": "C0DEED",    "id_str": "2378919690",    "profile_background_color": "C0DEED",    "listed_count": 8,    "is_translation_enabled": false,    "utc_offset": null,    "statuses_count": 25866,    "description": "iPhone\u3067\u97f3\u697d\u805e\u304f\u306e\u304c\u5927\u597d\u304d\u3002",    "friends_count": 6516,    "location": "",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/442327473686978561/4FWNOE-v_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_banner_url": "https://pbs.twimg.com/profile_banners/2378919690/1394294069",    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "mzkcava",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 2679,    "name": "mp3\u597d\u304d",    "notifications": false,    "url": "http://t.co/cTty2XM4Ov",    "created_at": "Sat Mar 08 15:54:00 +0000 2014",    "contributors_enabled": false,    "time_zone": null,    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "ja",   "created_at": "Sun Jul 13 22:44:11 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "RT @app_store_4: \u7121\u6599\u3067\u30de\u30f3\u30ac\u3092\u8aad\u307f\u653e\u984c\uff01\uff01\nCM\u3067\u3082\u8a71\u984c\u306e\n\u3010\u30de\u30f3\u30ac\u30dc\u30c3\u30af\u30b9\u3011 \n\niPhone\u21d2http://t.co/t9vS7GfeD7\n\nAndroid\u21d2http://t.co/2PkTi3s27H\n\n\u7121\u6599\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u671f\u9593\uff01\uff01 http://t.co/\u2026",   "in_reply_to_status_id": null,   "id": 488453867906949120,   "favorite_count": 0,   "source": "<a href=\"https://www.youtube.com/\" rel=\"nofollow\">\u5b66\u751f.com</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [    {     "id": 2472388760,      "indices": [      3,       15     ],      "id_str": "2472388760",      "screen_name": "app_store_4",      "name": "\u2606\u7121\u6599\u30a2\u30d7\u30eaStore\u2606"    }   ],    "hashtags": [],    "urls": [    {     "url": "http://t.co/t9vS7GfeD7",      "indices": [      58,       80     ],      "expanded_url": "http://goo.gl/E5C6GE",      "display_url": "goo.gl/E5C6GE"    },     {     "url": "http://t.co/2PkTi3s27H",      "indices": [      90,       112     ],      "expanded_url": "http://goo.gl/nQyzZy",      "display_url": "goo.gl/nQyzZy"    }   ],    "media": [    {     "source_status_id_str": "485450554479349760",      "expanded_url": "http://twitter.com/app_store_4/status/485450554479349760/photo/1",      "display_url": "pic.twitter.com/hzpYDCRmsk",      "url": "http://t.co/hzpYDCRmsk",      "media_url_https": "https://pbs.twimg.com/media/Bryqqo9CIAEi_7i.jpg",      "source_status_id": 485450554479349760,      "id_str": "485450509373808641",      "sizes": {      "small": {       "h": 255,        "resize": "fit",        "w": 340      },       "large": {       "h": 360,        "resize": "fit",        "w": 480      },       "medium": {       "h": 360,        "resize": "fit",        "w": 480      },       "thumb": {       "h": 150,        "resize": "crop",        "w": 150      }     },      "indices": [      139,       140     ],      "type": "photo",      "id": 485450509373808641,      "media_url": "http://pbs.twimg.com/media/Bryqqo9CIAEi_7i.jpg"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 27685,   "id_str": "488453867906949120",   "favorited": false,   "retweeted_status": {   "contributors": null,    "truncated": false,    "text": "\u7121\u6599\u3067\u30de\u30f3\u30ac\u3092\u8aad\u307f\u653e\u984c\uff01\uff01\nCM\u3067\u3082\u8a71\u984c\u306e\n\u3010\u30de\u30f3\u30ac\u30dc\u30c3\u30af\u30b9\u3011 \n\niPhone\u21d2http://t.co/t9vS7GfeD7\n\nAndroid\u21d2http://t.co/2PkTi3s27H\n\n\u7121\u6599\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u671f\u9593\uff01\uff01 http://t.co/hzpYDCRmsk",    "in_reply_to_status_id": null,    "id": 488354157904928768,    "favorite_count": 118,    "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>",    "retweeted": false,    "coordinates": null,    "entities": {    "symbols": [],     "user_mentions": [],     "hashtags": [],     "urls": [     {      "url": "http://t.co/t9vS7GfeD7",       "indices": [       41,        63      ],       "expanded_url": "http://goo.gl/E5C6GE",       "display_url": "goo.gl/E5C6GE"     },      {      "url": "http://t.co/2PkTi3s27H",       "indices": [       73,        95      ],       "expanded_url": "http://goo.gl/nQyzZy",       "display_url": "goo.gl/nQyzZy"     }    ],     "media": [     {      "source_status_id_str": "485450554479349760",       "expanded_url": "http://twitter.com/app_store_4/status/485450554479349760/photo/1",       "display_url": "pic.twitter.com/hzpYDCRmsk",       "url": "http://t.co/hzpYDCRmsk",       "media_url_https": "https://pbs.twimg.com/media/Bryqqo9CIAEi_7i.jpg",       "source_status_id": 485450554479349760,       "id_str": "485450509373808641",       "sizes": {       "small": {        "h": 255,         "resize": "fit",         "w": 340       },        "large": {        "h": 360,         "resize": "fit",         "w": 480       },        "medium": {        "h": 360,         "resize": "fit",         "w": 480       },        "thumb": {        "h": 150,         "resize": "crop",         "w": 150       }      },       "indices": [       110,        132      ],       "type": "photo",       "id": 485450509373808641,       "media_url": "http://pbs.twimg.com/media/Bryqqo9CIAEi_7i.jpg"     }    ]   },    "in_reply_to_screen_name": null,    "in_reply_to_user_id": null,    "retweet_count": 27685,    "id_str": "488354157904928768",    "favorited": false,    "user": {    "follow_request_sent": false,     "profile_use_background_image": true,     "default_profile_image": false,     "id": 2472388760,     "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",     "verified": false,     "profile_text_color": "333333",     "profile_image_url_https": "https://pbs.twimg.com/profile_images/485453875789312000/TzYd2FJt_normal.png",     "profile_sidebar_fill_color": "DDEEF6",     "entities": {     "description": {      "urls": []     }    },     "followers_count": 1460,     "profile_sidebar_border_color": "C0DEED",     "id_str": "2472388760",     "profile_background_color": "C0DEED",     "listed_count": 8,     "is_translation_enabled": false,     "utc_offset": null,     "statuses_count": 14,     "description": "",     "friends_count": 0,     "location": "",     "profile_link_color": "0084B4",     "profile_image_url": "http://pbs.twimg.com/profile_images/485453875789312000/TzYd2FJt_normal.png",     "following": false,     "geo_enabled": false,     "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",     "screen_name": "app_store_4",     "lang": "ja",     "profile_background_tile": false,     "favourites_count": 0,     "name": "\u2606\u7121\u6599\u30a2\u30d7\u30eaStore\u2606",     "notifications": false,     "url": null,     "created_at": "Thu May 01 11:57:00 +0000 2014",     "contributors_enabled": false,     "time_zone": null,     "protected": false,     "default_profile": true,     "is_translator": false   },    "geo": null,    "in_reply_to_user_id_str": null,    "possibly_sensitive": false,    "lang": "ja",    "created_at": "Sun Jul 13 16:07:59 +0000 2014",    "in_reply_to_status_id_str": null,    "place": null,    "metadata": {    "iso_language_code": "ja",     "result_type": "recent"   }  },   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 2479013346,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/465493390642003970/5Xc1Tsep_normal.jpeg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 263,    "profile_sidebar_border_color": "C0DEED",    "id_str": "2479013346",    "profile_background_color": "C0DEED",    "listed_count": 1,    "is_translation_enabled": false,    "utc_offset": null,    "statuses_count": 1358,    "description": "05190516\u2661\u4ed5\u4e8b\u4eba\n\u3042\u30fc\u3061\u3083\u3093\u3060\u3044\u3059\u304d\u3060\u3088\u2661",    "friends_count": 281,    "location": "",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/465493390642003970/5Xc1Tsep_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_banner_url": "https://pbs.twimg.com/profile_banners/2479013346/1404739218",    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "mizukihar",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 2375,    "name": "\u771e\u91ce\u745e\u6a39",    "notifications": false,    "url": null,    "created_at": "Tue May 06 00:38:06 +0000 2014",    "contributors_enabled": false,    "time_zone": null,    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "ja",   "created_at": "Sun Jul 13 22:44:11 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "RT @tanjyoubi_777: \u65b0\u3057\u3044iPhone\u3084\u6700\u65b0\u30b9\u30de\u30db\u3092\u8cb7\u3046\u306e\u306a\u3089\u30b3\u30b3\u304b\u306a\u3002\u6700\u592770,000\u5186\u3092\u30ad\u30e3\u30c3\u30b7\u30e5\u30d0\u30c3\u30af\uff01  http://t.co/MrLQ7iyqdU \u3000\u3000\u3000\u3000\u3000http://t.co/5bv6mKTK6M",   "in_reply_to_status_id": null,   "id": 488453867604946946,   "favorite_count": 0,   "source": "<a href=\"http://awesomestyle.biz\" rel=\"nofollow\">spiral retweeter_okusenman4</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [    {     "id": 627588873,      "indices": [      3,       17     ],      "id_str": "627588873",      "screen_name": "tanjyoubi_777",      "name": "\u8a95\u751f\u65e5\u8a3a\u65ad"    }   ],    "hashtags": [],    "urls": [    {     "url": "http://t.co/MrLQ7iyqdU",      "indices": [      66,       88     ],      "expanded_url": "http://pict-twittter.com/link/2.html",      "display_url": "pict-twittter.com/link/2.html"    }   ],    "media": [    {     "source_status_id_str": "377090824200142848",      "expanded_url": "http://twitter.com/chapoo2012/status/377090824200142848/photo/1",      "display_url": "pic.twitter.com/5bv6mKTK6M",      "url": "http://t.co/5bv6mKTK6M",      "media_url_https": "https://pbs.twimg.com/media/BTuyG1ECQAAvzTW.gif",      "source_status_id": 377090824200142848,      "id_str": "377090824208531456",      "sizes": {      "large": {       "h": 280,        "resize": "fit",        "w": 336      },       "small": {       "h": 280,        "resize": "fit",        "w": 336      },       "medium": {       "h": 280,        "resize": "fit",        "w": 336      },       "thumb": {       "h": 150,        "resize": "crop",        "w": 150      }     },      "indices": [      94,       116     ],      "type": "photo",      "id": 377090824208531456,      "media_url": "http://pbs.twimg.com/media/BTuyG1ECQAAvzTW.gif"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 20,   "id_str": "488453867604946946",   "favorited": false,   "retweeted_status": {   "contributors": null,    "truncated": false,    "text": "\u65b0\u3057\u3044iPhone\u3084\u6700\u65b0\u30b9\u30de\u30db\u3092\u8cb7\u3046\u306e\u306a\u3089\u30b3\u30b3\u304b\u306a\u3002\u6700\u592770,000\u5186\u3092\u30ad\u30e3\u30c3\u30b7\u30e5\u30d0\u30c3\u30af\uff01  http://t.co/MrLQ7iyqdU \u3000\u3000\u3000\u3000\u3000http://t.co/5bv6mKTK6M",    "in_reply_to_status_id": null,    "id": 488254152955269120,    "favorite_count": 0,    "source": "<a href=\"http://twittbot.net/\" rel=\"nofollow\">twittbot.net</a>",    "retweeted": false,    "coordinates": null,    "entities": {    "symbols": [],     "user_mentions": [],     "hashtags": [],     "urls": [     {      "url": "http://t.co/MrLQ7iyqdU",       "indices": [       47,        69      ],       "expanded_url": "http://pict-twittter.com/link/2.html",       "display_url": "pict-twittter.com/link/2.html"     }    ],     "media": [     {      "source_status_id_str": "377090824200142848",       "expanded_url": "http://twitter.com/chapoo2012/status/377090824200142848/photo/1",       "display_url": "pic.twitter.com/5bv6mKTK6M",       "url": "http://t.co/5bv6mKTK6M",       "media_url_https": "https://pbs.twimg.com/media/BTuyG1ECQAAvzTW.gif",       "source_status_id": 377090824200142848,       "id_str": "377090824208531456",       "sizes": {       "large": {        "h": 280,         "resize": "fit",         "w": 336       },        "small": {        "h": 280,         "resize": "fit",         "w": 336       },        "medium": {        "h": 280,         "resize": "fit",         "w": 336       },        "thumb": {        "h": 150,         "resize": "crop",         "w": 150       }      },       "indices": [       75,        97      ],       "type": "photo",       "id": 377090824208531456,       "media_url": "http://pbs.twimg.com/media/BTuyG1ECQAAvzTW.gif"     }    ]   },    "in_reply_to_screen_name": null,    "in_reply_to_user_id": null,    "retweet_count": 20,    "id_str": "488254152955269120",    "favorited": false,    "user": {    "follow_request_sent": false,     "profile_use_background_image": true,     "default_profile_image": false,     "id": 627588873,     "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",     "verified": false,     "profile_text_color": "333333",     "profile_image_url_https": "https://pbs.twimg.com/profile_images/467695107513143297/c61xqIyF_normal.jpeg",     "profile_sidebar_fill_color": "DDEEF6",     "entities": {     "description": {      "urls": []     }    },     "followers_count": 2530,     "profile_sidebar_border_color": "C0DEED",     "id_str": "627588873",     "profile_background_color": "C0DEED",     "listed_count": 8,     "is_translation_enabled": false,     "utc_offset": -36000,     "statuses_count": 39085,     "description": "\u751f\u307e\u308c\u305f\u65e5\u5360\u3044\uff06\u8a3a\u65ad\u3002\u76f8\u6027\u306a\u3069\u306a\u3069\u3002",     "friends_count": 2600,     "location": "",     "profile_link_color": "0084B4",     "profile_image_url": "http://pbs.twimg.com/profile_images/467695107513143297/c61xqIyF_normal.jpeg",     "following": false,     "geo_enabled": false,     "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",     "screen_name": "tanjyoubi_777",     "lang": "ja",     "profile_background_tile": false,     "favourites_count": 0,     "name": "\u8a95\u751f\u65e5\u8a3a\u65ad",     "notifications": false,     "url": null,     "created_at": "Thu Jul 05 16:13:26 +0000 2012",     "contributors_enabled": false,     "time_zone": "Hawaii",     "protected": false,     "default_profile": true,     "is_translator": false   },    "geo": null,    "in_reply_to_user_id_str": null,    "possibly_sensitive": false,    "lang": "ja",    "created_at": "Sun Jul 13 09:30:36 +0000 2014",    "in_reply_to_status_id_str": null,    "place": null,    "metadata": {    "iso_language_code": "ja",     "result_type": "recent"   }  },   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 620208438,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/3229382752/0499b74cd1f03ae5c154c1da1da1ffb1_normal.jpeg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 2482,    "profile_sidebar_border_color": "C0DEED",    "id_str": "620208438",    "profile_background_color": "C0DEED",    "listed_count": 1,    "is_translation_enabled": false,    "utc_offset": 32400,    "statuses_count": 34514,    "description": "\u601d\u308f\u305aRT\u3057\u305f\u304f\u306a\u308b\u8a71\u984c\u753b\u50cf\u3092\u7d39\u4ecb\u3057\u3066\u3044\u307e\u3059\u3002",    "friends_count": 2611,    "location": "",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/3229382752/0499b74cd1f03ae5c154c1da1da1ffb1_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "cho_wadai_gazou",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 0,    "name": "\u8d85\u8a71\u984c\u753b\u50cf",    "notifications": false,    "url": null,    "created_at": "Wed Jun 27 16:15:52 +0000 2012",    "contributors_enabled": false,    "time_zone": "Irkutsk",    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "ja",   "created_at": "Sun Jul 13 22:44:11 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "I'm now an E-List celebrity in Kim Kardashian: Hollywood. Come join me and become famous too, by playing on iPhone! http://t.co/GHWtXzuxjx",   "in_reply_to_status_id": null,   "id": 488453867206881280,   "favorite_count": 0,   "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">iOS</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [],    "hashtags": [],    "urls": [    {     "url": "http://t.co/GHWtXzuxjx",      "indices": [      116,       138     ],      "expanded_url": "http://itunes.apple.com/app/id860822992",      "display_url": "itunes.apple.com/app/id860822992"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 0,   "id_str": "488453867206881280",   "favorited": false,   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 867798350,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/451058346607792128/ZZXIdZap_normal.jpeg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 19,    "profile_sidebar_border_color": "C0DEED",    "id_str": "867798350",    "profile_background_color": "C0DEED",    "listed_count": 0,    "is_translation_enabled": false,    "utc_offset": -14400,    "statuses_count": 21,    "description": "",    "friends_count": 77,    "location": "",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/451058346607792128/ZZXIdZap_normal.jpeg",    "following": false,    "geo_enabled": true,    "profile_banner_url": "https://pbs.twimg.com/profile_banners/867798350/1393013422",    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "RieRie_Love",    "lang": "en",    "profile_background_tile": false,    "favourites_count": 1,    "name": "RieRie",    "notifications": false,    "url": null,    "created_at": "Mon Oct 08 10:59:19 +0000 2012",    "contributors_enabled": false,    "time_zone": "Eastern Time (US & Canada)",    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "en",   "created_at": "Sun Jul 13 22:44:11 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "en",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "RT @beqyluxoges: \u3048\u3001\u3069\u3046\u3057\u3088\u3046\u3002\n\u5b09\u3057\u3059\u304e\u3066\u56fa\u307e\u3063\u3066\u308b(\u00b0_\u00b0) \n\niPhone\u21d2http://t.co/PC3KkSGWNC\n\u203b\u53f3\u4e0aSafari\u3067\u958b\u304f\n\nAndroid\u21d2http://t.co/3J37mfRLYe\n\n\u521d\u3081\u3066\u9001\u3063\u305f\u30cf\u30c3\u30d4\u30fc\u30e1\u30fc\u30eb\u266a http\u2026",   "in_reply_to_status_id": null,   "id": 488453866698969088,   "favorite_count": 0,   "source": "<a href=\"http://bit.ly/IDJHUI\" rel=\"nofollow\">\u8a71\u984c\u306e\u30cb\u30e5\u30fc\u30b9\uff12</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [    {     "id": 2484718088,      "indices": [      3,       15     ],      "id_str": "2484718088",      "screen_name": "beqyluxoges",      "name": "\u304a\u3059\u3059\u3081\u30a2\u30d7\u30ea"    }   ],    "hashtags": [],    "urls": [    {     "url": "http://t.co/PC3KkSGWNC",      "indices": [      51,       73     ],      "expanded_url": "http://tinyurl.com/m5zw2k7",      "display_url": "tinyurl.com/m5zw2k7"    },     {     "url": "http://t.co/3J37mfRLYe",      "indices": [      96,       118     ],      "expanded_url": "http://tinyurl.com/q9tnkzd",      "display_url": "tinyurl.com/q9tnkzd"    }   ],    "media": [    {     "source_status_id_str": "488452844383526913",      "expanded_url": "http://twitter.com/beqyluxoges/status/488452844383526913/photo/1",      "display_url": "pic.twitter.com/cFEuwZjhqp",      "url": "http://t.co/cFEuwZjhqp",      "media_url_https": "https://pbs.twimg.com/media/BsdVRhKCEAAVpFX.png",      "source_status_id": 488452844383526913,      "id_str": "488452844039573504",      "sizes": {      "large": {       "h": 519,        "resize": "fit",        "w": 450      },       "small": {       "h": 392,        "resize": "fit",        "w": 339      },       "medium": {       "h": 519,        "resize": "fit",        "w": 450      },       "thumb": {       "h": 150,        "resize": "crop",        "w": 150      }     },      "indices": [      139,       140     ],      "type": "photo",      "id": 488452844039573504,      "media_url": "http://pbs.twimg.com/media/BsdVRhKCEAAVpFX.png"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 468,   "id_str": "488453866698969088",   "favorited": false,   "retweeted_status": {   "contributors": null,    "truncated": false,    "text": "\u3048\u3001\u3069\u3046\u3057\u3088\u3046\u3002\n\u5b09\u3057\u3059\u304e\u3066\u56fa\u307e\u3063\u3066\u308b(\u00b0_\u00b0) \n\niPhone\u21d2http://t.co/PC3KkSGWNC\n\u203b\u53f3\u4e0aSafari\u3067\u958b\u304f\n\nAndroid\u21d2http://t.co/3J37mfRLYe\n\n\u521d\u3081\u3066\u9001\u3063\u305f\u30cf\u30c3\u30d4\u30fc\u30e1\u30fc\u30eb\u266a http://t.co/cFEuwZjhqp",    "in_reply_to_status_id": null,    "id": 488452844383526913,    "favorite_count": 3,    "source": "<a href=\"http://bit.ly/IDJHUI\" rel=\"nofollow\">\u8a71\u984c\u306e\u30cb\u30e5\u30fc\u30b9785</a>",    "retweeted": false,    "coordinates": null,    "entities": {    "symbols": [],     "user_mentions": [],     "hashtags": [],     "urls": [     {      "url": "http://t.co/PC3KkSGWNC",       "indices": [       34,        56      ],       "expanded_url": "http://tinyurl.com/m5zw2k7",       "display_url": "tinyurl.com/m5zw2k7"     },      {      "url": "http://t.co/3J37mfRLYe",       "indices": [       79,        101      ],       "expanded_url": "http://tinyurl.com/q9tnkzd",       "display_url": "tinyurl.com/q9tnkzd"     }    ],     "media": [     {      "expanded_url": "http://twitter.com/beqyluxoges/status/488452844383526913/photo/1",       "display_url": "pic.twitter.com/cFEuwZjhqp",       "url": "http://t.co/cFEuwZjhqp",       "media_url_https": "https://pbs.twimg.com/media/BsdVRhKCEAAVpFX.png",       "id_str": "488452844039573504",       "sizes": {       "large": {        "h": 519,         "resize": "fit",         "w": 450       },        "small": {        "h": 392,         "resize": "fit",         "w": 339       },        "medium": {        "h": 519,         "resize": "fit",         "w": 450       },        "thumb": {        "h": 150,         "resize": "crop",         "w": 150       }      },       "indices": [       118,        140      ],       "type": "photo",       "id": 488452844039573504,       "media_url": "http://pbs.twimg.com/media/BsdVRhKCEAAVpFX.png"     }    ]   },    "in_reply_to_screen_name": null,    "in_reply_to_user_id": null,    "retweet_count": 468,    "id_str": "488452844383526913",    "favorited": false,    "user": {    "follow_request_sent": false,     "profile_use_background_image": true,     "default_profile_image": false,     "id": 2484718088,     "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",     "verified": false,     "profile_text_color": "333333",     "profile_image_url_https": "https://pbs.twimg.com/profile_images/468627401958645761/PEKdiYWl_normal.png",     "profile_sidebar_fill_color": "DDEEF6",     "entities": {     "description": {      "urls": []     }    },     "followers_count": 89,     "profile_sidebar_border_color": "C0DEED",     "id_str": "2484718088",     "profile_background_color": "C0DEED",     "listed_count": 2,     "is_translation_enabled": false,     "utc_offset": 32400,     "statuses_count": 1,     "description": "",     "friends_count": 5,     "location": "",     "profile_link_color": "0084B4",     "profile_image_url": "http://pbs.twimg.com/profile_images/468627401958645761/PEKdiYWl_normal.png",     "following": false,     "geo_enabled": false,     "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",     "screen_name": "beqyluxoges",     "lang": "ja",     "profile_background_tile": false,     "favourites_count": 0,     "name": "\u304a\u3059\u3059\u3081\u30a2\u30d7\u30ea",     "notifications": false,     "url": null,     "created_at": "Fri May 09 00:16:30 +0000 2014",     "contributors_enabled": false,     "time_zone": "Irkutsk",     "protected": false,     "default_profile": true,     "is_translator": false   },    "geo": null,    "in_reply_to_user_id_str": null,    "possibly_sensitive": false,    "lang": "ja",    "created_at": "Sun Jul 13 22:40:07 +0000 2014",    "in_reply_to_status_id_str": null,    "place": null,    "metadata": {    "iso_language_code": "ja",     "result_type": "recent"   }  },   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 1324216770,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/483936722841923584/Ibq4wQr__normal.jpeg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 234,    "profile_sidebar_border_color": "C0DEED",    "id_str": "1324216770",    "profile_background_color": "C0DEED",    "listed_count": 0,    "is_translation_enabled": false,    "utc_offset": null,    "statuses_count": 1089,    "description": "kihoku M2A\u3000 \u2661FUTSAL\u2661SOCCER\u2661James Rodriguez\u2661",    "friends_count": 206,    "location": "",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/483936722841923584/Ibq4wQr__normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_banner_url": "https://pbs.twimg.com/profile_banners/1324216770/1404214278",    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "Haya1761",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 176,    "name": "\u306f\u3084\u3068  ",    "notifications": false,    "url": null,    "created_at": "Wed Apr 03 09:39:35 +0000 2013",    "contributors_enabled": false,    "time_zone": null,    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "ja",   "created_at": "Sun Jul 13 22:44:11 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "RT @app_store_4: \u7121\u6599\u3067\u30de\u30f3\u30ac\u3092\u8aad\u307f\u653e\u984c\uff01\uff01\nCM\u3067\u3082\u8a71\u984c\u306e\n\u3010\u30de\u30f3\u30ac\u30dc\u30c3\u30af\u30b9\u3011\n\niPhone\u21d2http://t.co/t9vS7GfeD7\n\nAndroid\u21d2http://t.co/2PkTi3s27H\n\n\u7121\u6599\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u671f\u9593\uff01\uff01 http://t.co/h\u2026",   "in_reply_to_status_id": null,   "id": 488453866304724992,   "favorite_count": 0,   "source": "<a href=\"http://www.yahoo.co.jp/\" rel=\"nofollow\">\u3042\u306e\u30a8\u30de\u30fb\u30ef\u30c8\u30bd\u30f3\u304c\uff01\uff1f</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [    {     "id": 2472388760,      "indices": [      3,       15     ],      "id_str": "2472388760",      "screen_name": "app_store_4",      "name": "\u2606\u7121\u6599\u30a2\u30d7\u30eaStore\u2606"    }   ],    "hashtags": [],    "urls": [    {     "url": "http://t.co/t9vS7GfeD7",      "indices": [      57,       79     ],      "expanded_url": "http://goo.gl/E5C6GE",      "display_url": "goo.gl/E5C6GE"    },     {     "url": "http://t.co/2PkTi3s27H",      "indices": [      89,       111     ],      "expanded_url": "http://goo.gl/nQyzZy",      "display_url": "goo.gl/nQyzZy"    }   ],    "media": [    {     "source_status_id_str": "485450554479349760",      "expanded_url": "http://twitter.com/app_store_4/status/485450554479349760/photo/1",      "display_url": "pic.twitter.com/hzpYDCRmsk",      "url": "http://t.co/hzpYDCRmsk",      "media_url_https": "https://pbs.twimg.com/media/Bryqqo9CIAEi_7i.jpg",      "source_status_id": 485450554479349760,      "id_str": "485450509373808641",      "sizes": {      "small": {       "h": 255,        "resize": "fit",        "w": 340      },       "large": {       "h": 360,        "resize": "fit",        "w": 480      },       "medium": {       "h": 360,        "resize": "fit",        "w": 480      },       "thumb": {       "h": 150,        "resize": "crop",        "w": 150      }     },      "indices": [      139,       140     ],      "type": "photo",      "id": 485450509373808641,      "media_url": "http://pbs.twimg.com/media/Bryqqo9CIAEi_7i.jpg"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 19964,   "id_str": "488453866304724992",   "favorited": false,   "retweeted_status": {   "contributors": null,    "truncated": false,    "text": "\u7121\u6599\u3067\u30de\u30f3\u30ac\u3092\u8aad\u307f\u653e\u984c\uff01\uff01\nCM\u3067\u3082\u8a71\u984c\u306e\n\u3010\u30de\u30f3\u30ac\u30dc\u30c3\u30af\u30b9\u3011\n\niPhone\u21d2http://t.co/t9vS7GfeD7\n\nAndroid\u21d2http://t.co/2PkTi3s27H\n\n\u7121\u6599\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u671f\u9593\uff01\uff01 http://t.co/hzpYDCRmsk",    "in_reply_to_status_id": null,    "id": 488354098714927104,    "favorite_count": 59,    "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>",    "retweeted": false,    "coordinates": null,    "entities": {    "symbols": [],     "user_mentions": [],     "hashtags": [],     "urls": [     {      "url": "http://t.co/t9vS7GfeD7",       "indices": [       40,        62      ],       "expanded_url": "http://goo.gl/E5C6GE",       "display_url": "goo.gl/E5C6GE"     },      {      "url": "http://t.co/2PkTi3s27H",       "indices": [       72,        94      ],       "expanded_url": "http://goo.gl/nQyzZy",       "display_url": "goo.gl/nQyzZy"     }    ],     "media": [     {      "source_status_id_str": "485450554479349760",       "expanded_url": "http://twitter.com/app_store_4/status/485450554479349760/photo/1",       "display_url": "pic.twitter.com/hzpYDCRmsk",       "url": "http://t.co/hzpYDCRmsk",       "media_url_https": "https://pbs.twimg.com/media/Bryqqo9CIAEi_7i.jpg",       "source_status_id": 485450554479349760,       "id_str": "485450509373808641",       "sizes": {       "small": {        "h": 255,         "resize": "fit",         "w": 340       },        "large": {        "h": 360,         "resize": "fit",         "w": 480       },        "medium": {        "h": 360,         "resize": "fit",         "w": 480       },        "thumb": {        "h": 150,         "resize": "crop",         "w": 150       }      },       "indices": [       109,        131      ],       "type": "photo",       "id": 485450509373808641,       "media_url": "http://pbs.twimg.com/media/Bryqqo9CIAEi_7i.jpg"     }    ]   },    "in_reply_to_screen_name": null,    "in_reply_to_user_id": null,    "retweet_count": 19964,    "id_str": "488354098714927104",    "favorited": false,    "user": {    "follow_request_sent": false,     "profile_use_background_image": true,     "default_profile_image": false,     "id": 2472388760,     "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",     "verified": false,     "profile_text_color": "333333",     "profile_image_url_https": "https://pbs.twimg.com/profile_images/485453875789312000/TzYd2FJt_normal.png",     "profile_sidebar_fill_color": "DDEEF6",     "entities": {     "description": {      "urls": []     }    },     "followers_count": 1460,     "profile_sidebar_border_color": "C0DEED",     "id_str": "2472388760",     "profile_background_color": "C0DEED",     "listed_count": 8,     "is_translation_enabled": false,     "utc_offset": null,     "statuses_count": 14,     "description": "",     "friends_count": 0,     "location": "",     "profile_link_color": "0084B4",     "profile_image_url": "http://pbs.twimg.com/profile_images/485453875789312000/TzYd2FJt_normal.png",     "following": false,     "geo_enabled": false,     "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",     "screen_name": "app_store_4",     "lang": "ja",     "profile_background_tile": false,     "favourites_count": 0,     "name": "\u2606\u7121\u6599\u30a2\u30d7\u30eaStore\u2606",     "notifications": false,     "url": null,     "created_at": "Thu May 01 11:57:00 +0000 2014",     "contributors_enabled": false,     "time_zone": null,     "protected": false,     "default_profile": true,     "is_translator": false   },    "geo": null,    "in_reply_to_user_id_str": null,    "possibly_sensitive": false,    "lang": "ja",    "created_at": "Sun Jul 13 16:07:44 +0000 2014",    "in_reply_to_status_id_str": null,    "place": null,    "metadata": {    "iso_language_code": "ja",     "result_type": "recent"   }  },   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 1910825041,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000595733469/144853d10cba82990a889f960a8b376a_normal.jpeg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 32,    "profile_sidebar_border_color": "C0DEED",    "id_str": "1910825041",    "profile_background_color": "C0DEED",    "listed_count": 0,    "is_translation_enabled": false,    "utc_offset": null,    "statuses_count": 60,    "description": "\u3068\u3042\u308b\u4e2d\u5b662\u5e74\n\u5353\u7403\u90e8\u6240\u5c5e\u3001\u90e8\u9577\n\u3042\u307e\u308a\u3001\u5353\u7403\u304c\u4e0a\u624b\u304f\u306a\u3044\u304c\u5353\u7403\u304c\u597d\u304d\n\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002",    "friends_count": 80,    "location": "",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/378800000595733469/144853d10cba82990a889f960a8b376a_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_banner_url": "https://pbs.twimg.com/profile_banners/1910825041/1381762891",    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "kazuya12117",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 0,    "name": "kazuya@\u5353\u7403\u57a2",    "notifications": false,    "url": null,    "created_at": "Fri Sep 27 10:51:03 +0000 2013",    "contributors_enabled": false,    "time_zone": null,    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "ja",   "created_at": "Sun Jul 13 22:44:11 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "WERE GIVING AWAY 25 FREE GOLD IPHONE 5 TO NEXT 25 WHO FOLLOW @femalebook FAV WHEN DONE! http://t.co/TcHXcQ9AL8",   "in_reply_to_status_id": null,   "id": 488453866275745793,   "favorite_count": 18,   "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [    {     "id": 581494085,      "indices": [      61,       72     ],      "id_str": "581494085",      "screen_name": "femalebook",      "name": "Okay? "    }   ],    "hashtags": [],    "urls": [],    "media": [    {     "source_status_id_str": "484332683905228800",      "expanded_url": "http://twitter.com/GiveAwaylPhone5/status/484332683905228800/photo/1",      "display_url": "pic.twitter.com/TcHXcQ9AL8",      "url": "http://t.co/TcHXcQ9AL8",      "media_url_https": "https://pbs.twimg.com/media/BriyAl0CMAMbEQv.jpg",      "source_status_id": 484332683905228800,      "id_str": "484332683162431491",      "sizes": {      "large": {       "h": 500,        "resize": "fit",        "w": 500      },       "small": {       "h": 340,        "resize": "fit",        "w": 340      },       "medium": {       "h": 500,        "resize": "fit",        "w": 500      },       "thumb": {       "h": 150,        "resize": "crop",        "w": 150      }     },      "indices": [      88,       110     ],      "type": "photo",      "id": 484332683162431491,      "media_url": "http://pbs.twimg.com/media/BriyAl0CMAMbEQv.jpg"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 10,   "id_str": "488453866275745793",   "favorited": false,   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 996217376,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/2945815948/d942078d9498821c7d4fb2eb11cc135a_normal.png",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 128059,    "profile_sidebar_border_color": "C0DEED",    "id_str": "996217376",    "profile_background_color": "C0DEED",    "listed_count": 61,    "is_translation_enabled": false,    "utc_offset": null,    "statuses_count": 14818,    "description": "#TeamIphone Everything you need to know about iphone5, jokes, emoji, giveaways",    "friends_count": 66,    "location": "",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/2945815948/d942078d9498821c7d4fb2eb11cc135a_normal.png",    "following": false,    "geo_enabled": false,    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "GiveAwaylPhone5",    "lang": "en",    "profile_background_tile": false,    "favourites_count": 14,    "name": "iphone GiveAways",    "notifications": false,    "url": null,    "created_at": "Sat Dec 08 01:31:24 +0000 2012",    "contributors_enabled": false,    "time_zone": null,    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "en",   "created_at": "Sun Jul 13 22:44:11 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "en",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "I'm now a B-List celebrity in Kim Kardashian: Hollywood. Come join me and become famous too by playing on iPhone! http://t.co/IS3gQAZMBT",   "in_reply_to_status_id": null,   "id": 488453865461665794,   "favorite_count": 0,   "source": "<a href=\"http://www.apple.com\" rel=\"nofollow\">iOS</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [],    "hashtags": [],    "urls": [    {     "url": "http://t.co/IS3gQAZMBT",      "indices": [      114,       136     ],      "expanded_url": "http://itunes.apple.com/app/id860822992",      "display_url": "itunes.apple.com/app/id860822992"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 0,   "id_str": "488453865461665794",   "favorited": false,   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 38216889,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme19/bg.gif",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/460926150110232576/MA-3w91p_normal.jpeg",    "profile_sidebar_fill_color": "F6FFD1",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 114,    "profile_sidebar_border_color": "FFF8AD",    "id_str": "38216889",    "profile_background_color": "FFF04D",    "listed_count": 0,    "is_translation_enabled": false,    "utc_offset": -18000,    "statuses_count": 343,    "description": "",    "friends_count": 909,    "location": "Joetown",    "profile_link_color": "0099CC",    "profile_image_url": "http://pbs.twimg.com/profile_images/460926150110232576/MA-3w91p_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_banner_url": "https://pbs.twimg.com/profile_banners/38216889/1401045444",    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme19/bg.gif",    "screen_name": "meghanRledden",    "lang": "en",    "profile_background_tile": false,    "favourites_count": 197,    "name": "Meg",    "notifications": false,    "url": null,    "created_at": "Wed May 06 16:30:49 +0000 2009",    "contributors_enabled": false,    "time_zone": "Central Time (US & Canada)",    "protected": false,    "default_profile": false,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "en",   "created_at": "Sun Jul 13 22:44:11 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "en",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "RT @tanjyoubi_777: \u65b0\u3057\u3044iPhone\u3084\u6700\u65b0\u30b9\u30de\u30db\u3092\u8cb7\u3046\u306e\u306a\u3089\u30b3\u30b3\u304b\u306a\u3002\u6700\u592770,000\u5186\u3092\u30ad\u30e3\u30c3\u30b7\u30e5\u30d0\u30c3\u30af\uff01  http://t.co/MrLQ7iyqdU \u3000\u3000\u3000\u3000\u3000http://t.co/5bv6mKTK6M",   "in_reply_to_status_id": null,   "id": 488453865272909824,   "favorite_count": 0,   "source": "<a href=\"http://awesomestyle.biz\" rel=\"nofollow\">spiral retweeter_okusenman4</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [    {     "id": 627588873,      "indices": [      3,       17     ],      "id_str": "627588873",      "screen_name": "tanjyoubi_777",      "name": "\u8a95\u751f\u65e5\u8a3a\u65ad"    }   ],    "hashtags": [],    "urls": [    {     "url": "http://t.co/MrLQ7iyqdU",      "indices": [      66,       88     ],      "expanded_url": "http://pict-twittter.com/link/2.html",      "display_url": "pict-twittter.com/link/2.html"    }   ],    "media": [    {     "source_status_id_str": "377090824200142848",      "expanded_url": "http://twitter.com/chapoo2012/status/377090824200142848/photo/1",      "display_url": "pic.twitter.com/5bv6mKTK6M",      "url": "http://t.co/5bv6mKTK6M",      "media_url_https": "https://pbs.twimg.com/media/BTuyG1ECQAAvzTW.gif",      "source_status_id": 377090824200142848,      "id_str": "377090824208531456",      "sizes": {      "large": {       "h": 280,        "resize": "fit",        "w": 336      },       "small": {       "h": 280,        "resize": "fit",        "w": 336      },       "medium": {       "h": 280,        "resize": "fit",        "w": 336      },       "thumb": {       "h": 150,        "resize": "crop",        "w": 150      }     },      "indices": [      94,       116     ],      "type": "photo",      "id": 377090824208531456,      "media_url": "http://pbs.twimg.com/media/BTuyG1ECQAAvzTW.gif"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 20,   "id_str": "488453865272909824",   "favorited": false,   "retweeted_status": {   "contributors": null,    "truncated": false,    "text": "\u65b0\u3057\u3044iPhone\u3084\u6700\u65b0\u30b9\u30de\u30db\u3092\u8cb7\u3046\u306e\u306a\u3089\u30b3\u30b3\u304b\u306a\u3002\u6700\u592770,000\u5186\u3092\u30ad\u30e3\u30c3\u30b7\u30e5\u30d0\u30c3\u30af\uff01  http://t.co/MrLQ7iyqdU \u3000\u3000\u3000\u3000\u3000http://t.co/5bv6mKTK6M",    "in_reply_to_status_id": null,    "id": 488254152955269120,    "favorite_count": 0,    "source": "<a href=\"http://twittbot.net/\" rel=\"nofollow\">twittbot.net</a>",    "retweeted": false,    "coordinates": null,    "entities": {    "symbols": [],     "user_mentions": [],     "hashtags": [],     "urls": [     {      "url": "http://t.co/MrLQ7iyqdU",       "indices": [       47,        69      ],       "expanded_url": "http://pict-twittter.com/link/2.html",       "display_url": "pict-twittter.com/link/2.html"     }    ],     "media": [     {      "source_status_id_str": "377090824200142848",       "expanded_url": "http://twitter.com/chapoo2012/status/377090824200142848/photo/1",       "display_url": "pic.twitter.com/5bv6mKTK6M",       "url": "http://t.co/5bv6mKTK6M",       "media_url_https": "https://pbs.twimg.com/media/BTuyG1ECQAAvzTW.gif",       "source_status_id": 377090824200142848,       "id_str": "377090824208531456",       "sizes": {       "large": {        "h": 280,         "resize": "fit",         "w": 336       },        "small": {        "h": 280,         "resize": "fit",         "w": 336       },        "medium": {        "h": 280,         "resize": "fit",         "w": 336       },        "thumb": {        "h": 150,         "resize": "crop",         "w": 150       }      },       "indices": [       75,        97      ],       "type": "photo",       "id": 377090824208531456,       "media_url": "http://pbs.twimg.com/media/BTuyG1ECQAAvzTW.gif"     }    ]   },    "in_reply_to_screen_name": null,    "in_reply_to_user_id": null,    "retweet_count": 20,    "id_str": "488254152955269120",    "favorited": false,    "user": {    "follow_request_sent": false,     "profile_use_background_image": true,     "default_profile_image": false,     "id": 627588873,     "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",     "verified": false,     "profile_text_color": "333333",     "profile_image_url_https": "https://pbs.twimg.com/profile_images/467695107513143297/c61xqIyF_normal.jpeg",     "profile_sidebar_fill_color": "DDEEF6",     "entities": {     "description": {      "urls": []     }    },     "followers_count": 2530,     "profile_sidebar_border_color": "C0DEED",     "id_str": "627588873",     "profile_background_color": "C0DEED",     "listed_count": 8,     "is_translation_enabled": false,     "utc_offset": -36000,     "statuses_count": 39085,     "description": "\u751f\u307e\u308c\u305f\u65e5\u5360\u3044\uff06\u8a3a\u65ad\u3002\u76f8\u6027\u306a\u3069\u306a\u3069\u3002",     "friends_count": 2600,     "location": "",     "profile_link_color": "0084B4",     "profile_image_url": "http://pbs.twimg.com/profile_images/467695107513143297/c61xqIyF_normal.jpeg",     "following": false,     "geo_enabled": false,     "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",     "screen_name": "tanjyoubi_777",     "lang": "ja",     "profile_background_tile": false,     "favourites_count": 0,     "name": "\u8a95\u751f\u65e5\u8a3a\u65ad",     "notifications": false,     "url": null,     "created_at": "Thu Jul 05 16:13:26 +0000 2012",     "contributors_enabled": false,     "time_zone": "Hawaii",     "protected": false,     "default_profile": true,     "is_translator": false   },    "geo": null,    "in_reply_to_user_id_str": null,    "possibly_sensitive": false,    "lang": "ja",    "created_at": "Sun Jul 13 09:30:36 +0000 2014",    "in_reply_to_status_id_str": null,    "place": null,    "metadata": {    "iso_language_code": "ja",     "result_type": "recent"   }  },   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 2493131234,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/466236667506855936/Q0Ek_zrQ_normal.jpeg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 2265,    "profile_sidebar_border_color": "C0DEED",    "id_str": "2493131234",    "profile_background_color": "C0DEED",    "listed_count": 0,    "is_translation_enabled": false,    "utc_offset": null,    "statuses_count": 8030,    "description": "",    "friends_count": 2262,    "location": "",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/466236667506855936/Q0Ek_zrQ_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "waraiga_tomaran",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 0,    "name": "\u7b11\u3044\u304c\u672c\u5f53\u306b\u6b62\u307e\u3089\u306a\u3044",    "notifications": false,    "url": null,    "created_at": "Tue May 13 15:18:50 +0000 2014",    "contributors_enabled": false,    "time_zone": null,    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "ja",   "created_at": "Sun Jul 13 22:44:11 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "\u7121\u6599\u52d5\u753b30minutes \uff5e30\u5206\u4ee5\u4e0a\u306e\u7121\u6599\u30a2\u30c0\u30eb\u30c8\u30e0\u30fc\u30d3\u30fc #\u7121\u6599\u30a8\u30ed\u52d5\u753b #FC2\u30a2\u30c0\u30eb\u30c8\u52d5\u753b #\u5b89\u5fc3 #iPhone #\u7121\u6599\u30a2\u30c0\u30eb\u30c8\u52d5\u753b http://t.co/EDsVJdYQox #AKB",   "in_reply_to_status_id": null,   "id": 488453865126105090,   "favorite_count": 0,   "source": "<a href=\"http://twittbot.net/\" rel=\"nofollow\">twittbot.net</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [],    "hashtags": [    {     "indices": [      32,       39     ],      "text": "\u7121\u6599\u30a8\u30ed\u52d5\u753b"    },     {     "indices": [      40,       50     ],      "text": "FC2\u30a2\u30c0\u30eb\u30c8\u52d5\u753b"    },     {     "indices": [      51,       54     ],      "text": "\u5b89\u5fc3"    },     {     "indices": [      55,       62     ],      "text": "iPhone"    },     {     "indices": [      63,       72     ],      "text": "\u7121\u6599\u30a2\u30c0\u30eb\u30c8\u52d5\u753b"    },     {     "indices": [      96,       100     ],      "text": "AKB"    }   ],    "urls": [    {     "url": "http://t.co/EDsVJdYQox",      "indices": [      73,       95     ],      "expanded_url": "http://ad.heypo.com/click/1078",      "display_url": "ad.heypo.com/click/1078"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 0,   "id_str": "488453865126105090",   "favorited": false,   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 202086109,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif",    "verified": false,    "profile_text_color": "666666",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/3524564031/1e8616f9ed0524f843bb446111f21757_normal.jpeg",    "profile_sidebar_fill_color": "252429",    "entities": {    "url": {     "urls": [      {       "url": "http://t.co/W25nMGh51n",        "indices": [        0,         22       ],        "expanded_url": "http://erosaitonomatome.wordpress.com/",        "display_url": "erosaitonomatome.wordpress.com"      }     ]    },     "description": {     "urls": [      {       "url": "http://t.co/W25nMGh51n",        "indices": [        77,         99       ],        "expanded_url": "http://erosaitonomatome.wordpress.com/",        "display_url": "erosaitonomatome.wordpress.com"      }     ]    }   },    "followers_count": 4557,    "profile_sidebar_border_color": "181A1E",    "id_str": "202086109",    "profile_background_color": "1A1B1F",    "listed_count": 10,    "is_translation_enabled": false,    "utc_offset": 32400,    "statuses_count": 79471,    "description": "\u30ca\u30f3\u30d1\u91ce\u90ce\u543e\u6717\u3054\u82e6\u52b4\u3067\u3059\u3002\u653b\u7565\u3059\u308c\u3070\u7d20\u4eba\u5973\u5b50\u3068100%\u30e4\u30ec\u308b\u30b5\u30a4\u30c8\u3092\u3053\u3088\u306a\u304f\u611b\u3057\u3001\u5fc5\u7136\u7684\u306b\u30c4\u30a4\u30c3\u30bf\u30fc\u3082\u3084\u3063\u3066\u307e\u3059\u3002\u51fa\u4f1a\u3048\u308b\u7cfb\u653b\u7565\u30d6\u30ed\u30b0\u30ec\u30dd\u30fc\u30c8\u3082\u968f\u6642\u66f4\u65b0\u4e2dhttp://t.co/W25nMGh51n",    "friends_count": 4536,    "location": "\u6771\u4eac\u90fd",    "profile_link_color": "2FC2EF",    "profile_image_url": "http://pbs.twimg.com/profile_images/3524564031/1e8616f9ed0524f843bb446111f21757_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif",    "screen_name": "goro596",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 9,    "name": "\u543e\u90ce\u3054\u82e6\u52b4",    "notifications": false,    "url": "http://t.co/W25nMGh51n",    "created_at": "Wed Oct 13 07:57:05 +0000 2010",    "contributors_enabled": false,    "time_zone": "Tokyo",    "protected": false,    "default_profile": false,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "ja",   "created_at": "Sun Jul 13 22:44:11 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } },  {  "contributors": null,   "truncated": false,   "text": "RT @beqyluxoges: \u3048\u3001\u3069\u3046\u3057\u3088\u3046\u3002\n\u5b09\u3057\u3059\u304e\u3066\u56fa\u307e\u3063\u3066\u308b(\u00b0_\u00b0) \n\niPhone\u21d2http://t.co/PC3KkSGWNC\n\u203b\u53f3\u4e0aSafari\u3067\u958b\u304f\n\nAndroid\u21d2http://t.co/3J37mfRLYe\n\n\u521d\u3081\u3066\u9001\u3063\u305f\u30cf\u30c3\u30d4\u30fc\u30e1\u30fc\u30eb\u266a http\u2026",   "in_reply_to_status_id": null,   "id": 488453864631197696,   "favorite_count": 0,   "source": "<a href=\"http://c23.biz/NLLQ\" rel=\"nofollow\">\u8d85\u30ab\u30f3\u30bf\u30f3\uff01\u6c17\u8efd\u306b\u3067\u304d\u308b\u8272\u5360\u3044\u3000</a>",   "retweeted": false,   "coordinates": null,   "entities": {   "symbols": [],    "user_mentions": [    {     "id": 2484718088,      "indices": [      3,       15     ],      "id_str": "2484718088",      "screen_name": "beqyluxoges",      "name": "\u304a\u3059\u3059\u3081\u30a2\u30d7\u30ea"    }   ],    "hashtags": [],    "urls": [    {     "url": "http://t.co/PC3KkSGWNC",      "indices": [      51,       73     ],      "expanded_url": "http://tinyurl.com/m5zw2k7",      "display_url": "tinyurl.com/m5zw2k7"    },     {     "url": "http://t.co/3J37mfRLYe",      "indices": [      96,       118     ],      "expanded_url": "http://tinyurl.com/q9tnkzd",      "display_url": "tinyurl.com/q9tnkzd"    }   ],    "media": [    {     "source_status_id_str": "488452844383526913",      "expanded_url": "http://twitter.com/beqyluxoges/status/488452844383526913/photo/1",      "display_url": "pic.twitter.com/cFEuwZjhqp",      "url": "http://t.co/cFEuwZjhqp",      "media_url_https": "https://pbs.twimg.com/media/BsdVRhKCEAAVpFX.png",      "source_status_id": 488452844383526913,      "id_str": "488452844039573504",      "sizes": {      "large": {       "h": 519,        "resize": "fit",        "w": 450      },       "small": {       "h": 392,        "resize": "fit",        "w": 339      },       "medium": {       "h": 519,        "resize": "fit",        "w": 450      },       "thumb": {       "h": 150,        "resize": "crop",        "w": 150      }     },      "indices": [      139,       140     ],      "type": "photo",      "id": 488452844039573504,      "media_url": "http://pbs.twimg.com/media/BsdVRhKCEAAVpFX.png"    }   ]  },   "in_reply_to_screen_name": null,   "in_reply_to_user_id": null,   "retweet_count": 468,   "id_str": "488453864631197696",   "favorited": false,   "retweeted_status": {   "contributors": null,    "truncated": false,    "text": "\u3048\u3001\u3069\u3046\u3057\u3088\u3046\u3002\n\u5b09\u3057\u3059\u304e\u3066\u56fa\u307e\u3063\u3066\u308b(\u00b0_\u00b0) \n\niPhone\u21d2http://t.co/PC3KkSGWNC\n\u203b\u53f3\u4e0aSafari\u3067\u958b\u304f\n\nAndroid\u21d2http://t.co/3J37mfRLYe\n\n\u521d\u3081\u3066\u9001\u3063\u305f\u30cf\u30c3\u30d4\u30fc\u30e1\u30fc\u30eb\u266a http://t.co/cFEuwZjhqp",    "in_reply_to_status_id": null,    "id": 488452844383526913,    "favorite_count": 3,    "source": "<a href=\"http://bit.ly/IDJHUI\" rel=\"nofollow\">\u8a71\u984c\u306e\u30cb\u30e5\u30fc\u30b9785</a>",    "retweeted": false,    "coordinates": null,    "entities": {    "symbols": [],     "user_mentions": [],     "hashtags": [],     "urls": [     {      "url": "http://t.co/PC3KkSGWNC",       "indices": [       34,        56      ],       "expanded_url": "http://tinyurl.com/m5zw2k7",       "display_url": "tinyurl.com/m5zw2k7"     },      {      "url": "http://t.co/3J37mfRLYe",       "indices": [       79,        101      ],       "expanded_url": "http://tinyurl.com/q9tnkzd",       "display_url": "tinyurl.com/q9tnkzd"     }    ],     "media": [     {      "expanded_url": "http://twitter.com/beqyluxoges/status/488452844383526913/photo/1",       "display_url": "pic.twitter.com/cFEuwZjhqp",       "url": "http://t.co/cFEuwZjhqp",       "media_url_https": "https://pbs.twimg.com/media/BsdVRhKCEAAVpFX.png",       "id_str": "488452844039573504",       "sizes": {       "large": {        "h": 519,         "resize": "fit",         "w": 450       },        "small": {        "h": 392,         "resize": "fit",         "w": 339       },        "medium": {        "h": 519,         "resize": "fit",         "w": 450       },        "thumb": {        "h": 150,         "resize": "crop",         "w": 150       }      },       "indices": [       118,        140      ],       "type": "photo",       "id": 488452844039573504,       "media_url": "http://pbs.twimg.com/media/BsdVRhKCEAAVpFX.png"     }    ]   },    "in_reply_to_screen_name": null,    "in_reply_to_user_id": null,    "retweet_count": 468,    "id_str": "488452844383526913",    "favorited": false,    "user": {    "follow_request_sent": false,     "profile_use_background_image": true,     "default_profile_image": false,     "id": 2484718088,     "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",     "verified": false,     "profile_text_color": "333333",     "profile_image_url_https": "https://pbs.twimg.com/profile_images/468627401958645761/PEKdiYWl_normal.png",     "profile_sidebar_fill_color": "DDEEF6",     "entities": {     "description": {      "urls": []     }    },     "followers_count": 89,     "profile_sidebar_border_color": "C0DEED",     "id_str": "2484718088",     "profile_background_color": "C0DEED",     "listed_count": 2,     "is_translation_enabled": false,     "utc_offset": 32400,     "statuses_count": 1,     "description": "",     "friends_count": 5,     "location": "",     "profile_link_color": "0084B4",     "profile_image_url": "http://pbs.twimg.com/profile_images/468627401958645761/PEKdiYWl_normal.png",     "following": false,     "geo_enabled": false,     "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",     "screen_name": "beqyluxoges",     "lang": "ja",     "profile_background_tile": false,     "favourites_count": 0,     "name": "\u304a\u3059\u3059\u3081\u30a2\u30d7\u30ea",     "notifications": false,     "url": null,     "created_at": "Fri May 09 00:16:30 +0000 2014",     "contributors_enabled": false,     "time_zone": "Irkutsk",     "protected": false,     "default_profile": true,     "is_translator": false   },    "geo": null,    "in_reply_to_user_id_str": null,    "possibly_sensitive": false,    "lang": "ja",    "created_at": "Sun Jul 13 22:40:07 +0000 2014",    "in_reply_to_status_id_str": null,    "place": null,    "metadata": {    "iso_language_code": "ja",     "result_type": "recent"   }  },   "user": {   "follow_request_sent": false,    "profile_use_background_image": true,    "default_profile_image": false,    "id": 2474782273,    "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png",    "verified": false,    "profile_text_color": "333333",    "profile_image_url_https": "https://pbs.twimg.com/profile_images/487838984119140352/r3GOFWFB_normal.jpeg",    "profile_sidebar_fill_color": "DDEEF6",    "entities": {    "description": {     "urls": []    }   },    "followers_count": 295,    "profile_sidebar_border_color": "C0DEED",    "id_str": "2474782273",    "profile_background_color": "C0DEED",    "listed_count": 2,    "is_translation_enabled": false,    "utc_offset": null,    "statuses_count": 866,    "description": "\u77f3\u548c\u4e2d3-6!\u7d75\u66f8\u304f\u306e\u304c\u597d\u304d\u30a2\u30cb\u30e1\u3001VOCALOID\u3001\u6b4c\u3044\u624b\u3055\u3093\u3001EXILE\u3001\u305d\u306a\u30dd\u30b1\u3068\u304b\u8272\u3005\u597d\u304d!!\u8150\u5973\u5b50\u3067\u3059\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\uff01",    "friends_count": 569,    "location": "",    "profile_link_color": "0084B4",    "profile_image_url": "http://pbs.twimg.com/profile_images/487838984119140352/r3GOFWFB_normal.jpeg",    "following": false,    "geo_enabled": false,    "profile_banner_url": "https://pbs.twimg.com/profile_banners/2474782273/1401616992",    "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png",    "screen_name": "SonarDai",    "lang": "ja",    "profile_background_tile": false,    "favourites_count": 1689,    "name": "\u8056\u83dc\u97f3\u266c( '\u03c9'o[\u305b\u306a\u306e\u3093]o \u00ae",    "notifications": false,    "url": null,    "created_at": "Sat May 03 01:35:11 +0000 2014",    "contributors_enabled": false,    "time_zone": null,    "protected": false,    "default_profile": true,    "is_translator": false  },   "geo": null,   "in_reply_to_user_id_str": null,   "possibly_sensitive": false,   "lang": "ja",   "created_at": "Sun Jul 13 22:44:11 +0000 2014",   "in_reply_to_status_id_str": null,   "place": null,   "metadata": {   "iso_language_code": "ja",    "result_type": "recent"  } }]


0 0
原创粉丝点击